mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-31 01:15:57 -04:00
15 lines
644 B
Python
15 lines
644 B
Python
import sys
|
|
|
|
def setup(core, actor, buff):
|
|
core.skillModService.addSkillMod(actor, 'expertise_glancing_blow_all', 2)
|
|
core.skillModService.addSkillMod(actor, 'movement_resist_snare', 15)
|
|
core.skillModService.addSkillMod(actor, 'movement_resist_root', 2)
|
|
core.skillModService.addSkillMod(actor, 'movement', 5)
|
|
return
|
|
|
|
def removeBuff(core, actor, buff):
|
|
core.skillModService.deductSkillMod(actor, 'movement', 5)
|
|
core.skillModService.deductSkillMod(actor, 'expertise_glancing_blow_all', 2)
|
|
core.skillModService.deductSkillMod(actor, 'movement_resist_snare', 15)
|
|
core.skillModService.deductSkillMod(actor, 'movement_resist_root', 2)
|
|
return |