mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-31 01:15:57 -04:00
Added expertise_dodge skillmod Added combat_critical_hit_reduction skillmod Moved commands to combat commands (seen by client) Added Officer Insipred action 5PC configuration to CommandService.
11 lines
294 B
Python
11 lines
294 B
Python
import sys
|
|
|
|
def add(core, actor, skillMod, value):
|
|
core.skillModService.addSkillMod(actor, 'display_only_dodge', 100 * skillMod.getBase())
|
|
return
|
|
|
|
def deduct(core, actor, skillMod, value):
|
|
core.skillModService.deductSkillMod(actor, 'display_only_dodge', 100 * skillMod.getBase())
|
|
return
|
|
|
|
|