mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-31 01:15:57 -04:00
15 lines
639 B
Python
15 lines
639 B
Python
import sys
|
|
|
|
def setup(core, actor, buff):
|
|
core.skillModService.addSkillMod(actor, 'healing_health', 3500)
|
|
core.skillModService.addSkillMod(actor, 'healing_action', 6000)
|
|
core.skillModService.addSkillMod(actor, 'expertise_damage_all', 10)
|
|
core.skillModService.addSkillMod(actor, 'expertise_action_all', 10)
|
|
return
|
|
|
|
def removeBuff(core, actor, buff):
|
|
core.skillModService.deductSkillMod(actor, 'healing_health', 125)
|
|
core.skillModService.deductSkillMod(actor, 'healing_action', 50)
|
|
core.skillModService.deductSkillMod(actor, 'expertise_damage_all', 50)
|
|
core.skillModService.deductSkillMod(actor, 'expertise_action_all', 50)
|
|
return |