mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-04 05:16:21 -04:00
12 lines
403 B
Python
12 lines
403 B
Python
import sys
|
|
|
|
def setup(core, actor, buff):
|
|
if actor.getSkillMod('expertise_buff_duration_line_me_enhance'):
|
|
buff.setDuration(buff.getDuration()+(actor.getSkillModBase('expertise_buff_duration_line_me_enhance')))
|
|
core.skillModService.addSkillMod(actor, 'strength_modified', 15)
|
|
return
|
|
|
|
def removeBuff(core, actor, buff):
|
|
core.skillModService.deductSkillMod(actor, 'strength_modified', 15)
|
|
return
|
|
|