Files
NGECore2/scripts/buffs/of_buff_def_5.py
T

13 lines
523 B
Python

import sys
def setup(core, actor, buff):
core.skillModService.addSkillMod(actor, 'expertise_dodge', 3)
core.skillModService.addSkillMod(actor, 'constitution_modified', 25)
core.skillModService.addSkillMod(actor, 'combat_critical_hit_reduction', 6)
return
def removeBuff(core, actor, buff):
core.skillModService.deductSkillMod(actor, 'expertise_dodge', 3)
core.skillModService.deductSkillMod(actor, 'constitution_modified', 25)
core.skillModService.deductSkillMod(actor, 'combat_critical_hit_reduction', 6)
return