diff options
author | HoraK-FDF <horak-fdf@web.de> | 2023-04-28 23:54:04 +0200 |
---|---|---|
committer | HoraK-FDF <horak-fdf@web.de> | 2023-04-28 23:54:04 +0200 |
commit | 7a475f52546c14acf4b4896d1627a936575d9e9a (patch) | |
tree | 99986f4f05da9f35247fb54a5a2c1b453f6856ce | |
parent | 1238bd7eec2194e56102c40ba3893d4cb332c700 (diff) | |
download | tools-7a475f52546c14acf4b4896d1627a936575d9e9a.tar.gz tools-7a475f52546c14acf4b4896d1627a936575d9e9a.tar.bz2 tools-7a475f52546c14acf4b4896d1627a936575d9e9a.tar.xz tools-7a475f52546c14acf4b4896d1627a936575d9e9a.zip |
evolved_py status adds
-rwxr-xr-x | evolved.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -403,6 +403,8 @@ def stis(x): x=re.sub(r'callfunc\("SC_Bonus", (-?[0-9]+), SC_ATTHASTE_POTION1, (-?[0-9]+).*',r'sc_start sc_raiseattackspeed0, \1, \2;',x) x=re.sub(r'callfunc\("SC_Bonus", (-?[0-9]+), SC_SLOWPOISON, (-?[0-9]+).*',r'sc_start sc_slowpoison, \1, \2;',x) # uses 180k in tmwa files but gets multiplied by 1000 in source if low evolved value is taken x=re.sub(r'callfunc\("SC_Bonus", (-?[0-9]+), SC_BLOODING, (-?[0-9]+).*',r'sc_start sc_poison, \1, \2;',x) + x=re.sub(r'callfunc\("SC_Bonus", (-?[0-9]+), SC_POISON, (-?[0-9]+).*',r'sc_start sc_poison, \1, \2;',x) + x=re.sub(r'callfunc\("SC_Bonus", (-?[0-9]+), SC_PHYS_SHIELD, (-?[0-9]+).*',r'sc_start SC_PHYS_SHIELD, \1, \2;',x) x=re.sub(r' +',' ',x) return x.replace('\n', '').replace("\t","").strip() |