mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-31 01:15:57 -04:00
13 lines
429 B
Python
13 lines
429 B
Python
import sys
|
|
|
|
def setup(core, actor, buff):
|
|
actor.addSkillMod('expertise_innate_reduction_all_player', 6 * buff.getStacks())
|
|
actor.addSkillMod('expertise_innate_reduction_all_mob', 600 * buff.getStacks())
|
|
return
|
|
|
|
def removeBuff(core, actor, buff):
|
|
actor.deductSkillMod('expertise_innate_reduction_all_mob', 600 * buff.getStacks())
|
|
actor.deductSkillMod('expertise_innate_reduction_all_player', 6 * buff.getStacks())
|
|
return
|
|
|