summaryrefslogtreecommitdiff
path: root/wiki
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-01-27 15:37:29 -0300
committerJesusaves <cpntb1@ymail.com>2021-01-27 15:37:29 -0300
commit35140b243839a27c8ad93f309852ae234dd53262 (patch)
treefc343ce7347be95d4151267bb3d918ead1955f35 /wiki
parent94398cf8b6022ef563b67a2aadf369df9d2c6590 (diff)
downloadtools-35140b243839a27c8ad93f309852ae234dd53262.tar.gz
tools-35140b243839a27c8ad93f309852ae234dd53262.tar.bz2
tools-35140b243839a27c8ad93f309852ae234dd53262.tar.xz
tools-35140b243839a27c8ad93f309852ae234dd53262.zip
New formula for mobs with level > 100
- ATK will grow only in 5% of the excessive levels - HP will grow 2x faster of the excessive levels - EXP will be unaltered
Diffstat (limited to 'wiki')
-rwxr-xr-xwiki/redesign.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/wiki/redesign.py b/wiki/redesign.py
index 42a262a..8c79201 100755
--- a/wiki/redesign.py
+++ b/wiki/redesign.py
@@ -630,6 +630,12 @@ def mb_stgen(mb):
hxp*=4.7
"""
+ # Over100 Special Formula
+ OVER100=0
+ if lv > 100:
+ OVER100=lv-100
+ lv=100+OVER100*1.05
+
# Fórmula da HPTable: 400+(x*50)
# MASTERED
lat=(lv*40+lv**1.2+lv*(st/100))
@@ -662,6 +668,10 @@ def mb_stgen(mb):
hat*=0.89
+ # Over100 Special Formula
+ if OVER100:
+ lv=100+OVER100*2
+
# HP: Each 10 levels give you 100 extra weapon damage
# I expect from 6 to 14 hits to kill
# You deliver in average two hits per second
@@ -744,6 +754,10 @@ def mb_stgen(mb):
# Level 90: total 47806 mobs individual 3635 xp (1.650)
# Level 100: total 66308 mobs individual 4976 xp (1.650)
+ # Over100 Special Formula
+ if OVER100:
+ lv=100+OVER100
+
try:
mxp=exp[lv]
hxp=exp[lv]