Files
NGECore2/scripts/buffs/of_buff_def_7.py
T

13 lines
523 B
Python

import sys
def setup(core, actor, buff):
core.skillModService.addSkillMod(actor, 'expertise_dodge', 4)
core.skillModService.addSkillMod(actor, 'constitution_modified', 50)
core.skillModService.addSkillMod(actor, 'combat_critical_hit_reduction', 8)
return
def removeBuff(core, actor, buff):
core.skillModService.deductSkillMod(actor, 'expertise_dodge', 4)
core.skillModService.deductSkillMod(actor, 'constitution_modified', 50)
core.skillModService.deductSkillMod(actor, 'combat_critical_hit_reduction', 8)
return