mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-04 05:16:21 -04:00
11 lines
366 B
Python
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', 1532)
|
|
return
|
|
|
|
def removeBuff(core, actor, buff):
|
|
core.skillModService.deductSkillMod(actor, 'expertise_action_all', 5)
|
|
core.skillModService.deductSkillMod(actor, 'healing_action', 1532)
|
|
return |