mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-30 00:15:57 -04:00
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
9 lines
168 B
Python
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
|
|
|