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

12 lines
323 B
Python

import sys
def add(core, actor, skillMod, value):
actor.setMaxHealth(actor.getMaxHealth() + base * 8)
actor.setMaxAction(actor.getMaxAction() + base * 2)
return
def deduct(core, actor, skillMod, value):
actor.setMaxHealth(actor.getMaxHealth() - base * 8)
actor.setMaxAction(actor.getMaxAction() - base * 2)
return