mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-31 01:15:57 -04:00
13 lines
561 B
Python
13 lines
561 B
Python
import sys
|
|
|
|
def setup(core, actor, buff):
|
|
core.skillModService.addSkillMod(actor, 'combat_strikethrough_value', 4)
|
|
core.skillModService.addSkillMod(actor, 'expertise_critical_niche_all', 29)
|
|
core.skillModService.addSkillMod(actor, 'expertise_strikethrough_chance', 4)
|
|
return
|
|
|
|
def removeBuff(core, actor, buff):
|
|
core.skillModService.deductSkillMod(actor, 'combat_strikethrough_value', 4)
|
|
core.skillModService.deductSkillMod(actor, 'expertise_critical_niche_all', 29)
|
|
core.skillModService.deductSkillMod(actor, 'expertise_strikethrough_chance', 4)
|
|
return |