Files
NGECore2/scripts/skillMods/slope_move.py
T
Doogla 92fad898f5 Buffs Take 4
Going back to including the speed modifier in the buff so it doesn't
make you the flash when leveling.
2013-11-07 11:25:34 -08:00

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