mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-04 05:16:21 -04:00
Moved the speed modifier of force run to its correct skill mod script instead of being in the buff itself
12 lines
315 B
Python
12 lines
315 B
Python
import sys
|
|
|
|
def add(core, actor, name, base):
|
|
actor.addSkillMod(name, base)
|
|
actor.setSpeedMultiplierBase(2.5 + (2.5 * (actor.getSkillModBase('expertise_movement_buff_fs_force_run')) / 100))
|
|
return
|
|
|
|
def deduct(core, actor, name, base):
|
|
actor.deductSkillMod(name, base)
|
|
actor.setSpeedMultiplierBase(1)
|
|
return
|
|
|