mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -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.
10 lines
167 B
Python
10 lines
167 B
Python
import sys
|
|
|
|
def add(core, actor, name, base):
|
|
actor.addSkillMod(name, base)
|
|
return
|
|
|
|
def deduct(core, actor, name, base):
|
|
actor.deductSkillMod(name, base)
|
|
return
|
|
|