Added focus, and added stance's stance mod.

This commit is contained in:
Wefi
2013-09-15 14:41:26 -05:00
parent 9ce6600a1f
commit 0acbebd6c0
7 changed files with 692 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import sys
def add(core, actor, name, base):
actor.addSkillMod(name, base)
return
def deduct(core, actor, name, base):
actor.deductSkillMod(name, base)
return