mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-30 00:15:57 -04:00
11 lines
364 B
Python
11 lines
364 B
Python
import sys
|
|
|
|
def setup(core, actor, buff):
|
|
core.skillModService.addSkillMod(actor, 'expertise_dodge', 1)
|
|
core.skillModService.addSkillMod(actor, 'constitution_modified', 5)
|
|
return
|
|
|
|
def removeBuff(core, actor, buff):
|
|
core.skillModService.deductSkillMod(actor, 'expertise_dodge', 1)
|
|
core.skillModService.deductSkillMod(actor, 'constitution_modified', 5)
|
|
return |