Files
NGECore2/scripts/buffs/set_bonus_hero_2.py
T
Idart efcb75f645 Added heroism set and buffs, fixed robe_jedi_dark
Added rest of heroism set and associated buffs, robe_jedi_dark now
properly deduct its effect, added buffs for heroism set bonuses.

Still needs an check for piece count

Credit for code Wefi.
2013-09-20 07:11:57 +03:00

11 lines
360 B
Python

import sys
def setup(core, actor, buff):
core.skillModService.addSkillMod(actor, 'stamina_modified', 90)
core.skillModService.addSkillMod(actor, 'agility_modified', 90)
return
def removeBuff(core, actor, buff):
core.skillModService.deductSkillMod(actor, 'stamina_modified', 90)
core.skillModService.deductSkillMod(actor, 'agility_modified', 90)
return