mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-02 03:15:52 -04:00
added force run with particle effects, saber intercept, saber block, added particle effects for stance and focus, moved the marker for Dee'ja Peak to its correct location on the map.
12 lines
302 B
Python
12 lines
302 B
Python
import sys
|
|
|
|
def setup(core, actor, buff):
|
|
actor.playEffectObject('appearance/pt_sokan_focus.prt', 'fs_buff_ca_1')
|
|
core.skillModService.addSkillMod(actor, 'expertise_stance', 1)
|
|
|
|
return
|
|
|
|
def removeBuff(core, actor, buff):
|
|
core.skillModService.deductSkillMod(actor, 'expertise_stance', 1)
|
|
return
|
|
|