mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-05 06:17:19 -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.
11 lines
239 B
Python
11 lines
239 B
Python
import sys
|
|
|
|
def setup(core, actor, buff):
|
|
core.skillModService.addSkillMod(actor, 'expertise_saber_block', 1)
|
|
|
|
return
|
|
|
|
def removeBuff(core, actor, buff):
|
|
core.skillModService.deductSkillMod(actor, 'expertise_saber_block', 1)
|
|
return
|
|
|