Files
NGECore2/scripts/skillMods/healing_health.py
T
Bronco69 0a2e4d26d5 SkillMod "healing health" added
skillMod working now. same as "healing action"
now Officer "Last Stand" works perfect and grants health + action on
death of officer => not for group yet
2014-06-04 02:44:11 +02:00

9 lines
168 B
Python

import sys
def add(core, actor, skillMod, value):
actor.setHealth(actor.getHealth() + skillMod.getBase())
return
def deduct(core, actor, skillMod, value):
return