Files
NGECore2/scripts/skillMods/slope_move.py
T
Doogla 2410853e96 Buffs Take 3
Moved the speed modifier of force run to its correct skill mod script
instead of being in the buff itself
2013-11-07 10:47:43 -08:00

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