diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-24 12:39:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-24 12:39:36 -0300 |
commit | 37b644bdadd5248080417819b97781210a7cb27e (patch) | |
tree | b36a872a9fc43e0ed52957afcdb3a1823d9da6d9 | |
parent | 7523803a5c6e5741435d32d4928b137d53618c6f (diff) | |
download | sdk-37b644bdadd5248080417819b97781210a7cb27e.tar.gz sdk-37b644bdadd5248080417819b97781210a7cb27e.tar.bz2 sdk-37b644bdadd5248080417819b97781210a7cb27e.tar.xz sdk-37b644bdadd5248080417819b97781210a7cb27e.zip |
Ele_Neutral is now a thing
-rw-r--r-- | ueditor.rpy | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ueditor.rpy b/ueditor.rpy index 183e022..45ff1f4 100644 --- a/ueditor.rpy +++ b/ueditor.rpy @@ -211,7 +211,9 @@ init python: return "ERROR (%d)" % job def ParseEle(ele): - if ele == 1: + if ele == 0: + return "Neutral" + elif ele == 1: return "Fire" elif ele == 2: return "Water" @@ -301,7 +303,7 @@ init python: elif job == 4: STR=400;HP=400; # Archer (balanced) elif job == 5: - STR=600;HP=200; # Gunner + STR=600;HP=200; # Gunner (unused) elif job == 6: STR = 0;HP = 0; # Special # Apply rarity modified |