mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
17 lines
472 B
Python
17 lines
472 B
Python
import sys
|
|
|
|
def setup(core, actor, buff):
|
|
if actor.getSkillMod('expertise_aura_maintain'):
|
|
buff.setDuration(-1)
|
|
|
|
return
|
|
|
|
def add(core, actor, buff):
|
|
core.skillModService.addSkillMod(actor, 'expertise_dodge', 1)
|
|
core.skillModService.addSkillMod(actor, 'constitution_modified', 5)
|
|
return
|
|
|
|
def remove(core, actor, buff):
|
|
core.skillModService.deductSkillMod(actor, 'expertise_dodge', 1)
|
|
core.skillModService.deductSkillMod(actor, 'constitution_modified', 5)
|
|
return |