mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
Fixed Jedi Stance Fixed BH Sprint Added BH Shields (not fully working yet) Fixed an error on Commando Pinpoint Shielding Tree
12 lines
279 B
Python
12 lines
279 B
Python
import sys
|
|
|
|
def setup(core, actor, buff):
|
|
return
|
|
|
|
def add(core, actor, buff):
|
|
core.skillModService.addSkillMod(actor, 'combat_divide_damage_taken', 1)
|
|
return
|
|
|
|
def remove(core, actor, buff):
|
|
core.skillModService.deductSkillMod(actor, 'combat_divide_damage_taken', 1)
|
|
return |