mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -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.
10 lines
334 B
Python
10 lines
334 B
Python
import sys
|
|
|
|
def add(core, actor, skillMod, value):
|
|
core.skillModService.addSkillMod(actor, 'display_only_expertise_critical_hit_reduction', skillMod.getBase())
|
|
return
|
|
|
|
def deduct(core, actor, skillMod, value):
|
|
core.skillModService.deductSkillMod(actor, 'display_only_expertise_critical_hit_reduction', skillMod.getBase())
|
|
return
|
|
|