mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-15 00:07:39 -04:00
12 lines
430 B
Python
12 lines
430 B
Python
import sys
|
|
|
|
# Temporarily disabled until the skillmod calculation system is refactored
|
|
|
|
def add(core, actor, skillMod, divisor):
|
|
#actor.setMaxHealth(actor.getMaxHealth() + int((float(actor.getMaxHealth()) * (float(skillMod.getBase()) / float(100)))))
|
|
return
|
|
|
|
def deduct(core, actor, skillMod, divisor):
|
|
#actor.setMaxHealth(actor.getMaxHealth() - int((actor.getMaxHealth() * (float(skillMod.getBase()) / float(100)))))
|
|
return
|
|
|