Files
NGECore2/scripts/skillMods/actionPercent.py
T
2014-04-25 23:25:01 +01:00

12 lines
437 B
Python

import sys
# Temporarily disabled until the skillmod calculation system is refactored
def add(core, actor, skillMod, divisor):
#actor.setMaxAction(actor.getMaxAction() + int((float(actor.getMaxAction()) * (float(skillMod.getBase()) / float(100)))))
return
def deduct(core, actor, skillMod, divisor):
#actor.setMaxAction(actor.getMaxAction() - int((float(actor.getMaxAction()) * (float(skillMod.getBase()) / float(100)))))
return