Files
NGECore2/scripts/buffs/of_inspiration_2.py
T

11 lines
366 B
Python

import sys
def setup(core, actor, buff):
core.skillModService.addSkillMod(actor, 'expertise_action_all', 5)
core.skillModService.addSkillMod(actor, 'healing_action', 1111)
return
def removeBuff(core, actor, buff):
core.skillModService.deductSkillMod(actor, 'expertise_action_all', 5)
core.skillModService.deductSkillMod(actor, 'healing_action', 1111)
return