mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-27 17:57:22 -04:00
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.
11 lines
360 B
Python
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 |