diff options
-rw-r--r-- | ueditor.rpy | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ueditor.rpy b/ueditor.rpy index e66171d..183e022 100644 --- a/ueditor.rpy +++ b/ueditor.rpy @@ -198,13 +198,15 @@ init python: if job == 1: return "Swordsman" elif job == 2: - return "Assassin" + return "Unused" elif job == 3: return "Mage" elif job == 4: return "Archer" elif job == 5: return "Gunner" + elif job == 6: + return "Special" else: return "ERROR (%d)" % job @@ -300,6 +302,8 @@ init python: STR=400;HP=400; # Archer (balanced) elif job == 5: STR=600;HP=200; # Gunner + elif job == 6: + STR = 0;HP = 0; # Special # Apply rarity modified STR*=(rar+1)/2.0 HP*=(rar+1)/2.0 |