diff options
-rwxr-xr-x | wiki/redesign.py | 14 |
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] |