diff options
-rw-r--r-- | npc/magic/mpregen.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/magic/mpregen.txt b/npc/magic/mpregen.txt index 95d035028..8627078cb 100644 --- a/npc/magic/mpregen.txt +++ b/npc/magic/mpregen.txt @@ -11,8 +11,8 @@ function script SK_mpregen { // How much MP is that worth? // Well, 400HP:120MP so base formula is 4:1 // Let's have a 50% penalty, so, 6:1 - .@lv=getskilllv(TMW2_MPREGEN); - .@ratio=max(40, 60-.@lv); + .@lv=getskilllv(TMW2_MPREGEN) * 2; + .@ratio=max(60, 80-.@lv); .@mpheal=.@basehp*.@ratio/100; heal -.@basehp, .@mpheal; // Temporarily block healing and regeneration skills |