Files
NGECore2/scripts/skillMods/combat_critical_hit_reduction.py
T
Zing 50eb8308cc Cleanup of Officer commands/buffs pt 1
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.
2014-09-28 17:41:02 -07:00

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