summaryrefslogtreecommitdiff
path: root/npc/items/books.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-07-16 10:44:59 -0300
committerJesusaves <cpntb1@ymail.com>2018-07-16 10:44:59 -0300
commit9b83708a6af6e54f8ac6a25786f37d572f5176e3 (patch)
tree24e7f31f192a03f52ab5db3c1e4b0aa518fdffc2 /npc/items/books.txt
parent01a5aea68556e8f720cec37668510d458ac869a8 (diff)
downloadserverdata-9b83708a6af6e54f8ac6a25786f37d572f5176e3.tar.gz
serverdata-9b83708a6af6e54f8ac6a25786f37d572f5176e3.tar.bz2
serverdata-9b83708a6af6e54f8ac6a25786f37d572f5176e3.tar.xz
serverdata-9b83708a6af6e54f8ac6a25786f37d572f5176e3.zip
[skip ci] this will be a wiser mana experience handler
Diffstat (limited to 'npc/items/books.txt')
-rw-r--r--npc/items/books.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/items/books.txt b/npc/items/books.txt
index e3726766e..f1ff08dc3 100644
--- a/npc/items/books.txt
+++ b/npc/items/books.txt
@@ -194,13 +194,13 @@ OnInit:
mesn l("Current Magic Control");
.@val=MAGIC_EXP+rand(-MAGIC_LVL*5, MAGIC_LVL*5);
.@base=(MAGIC_LVL**3);
- if (.@val > .@base+3500)
+ if (.@val > .@base*5)
mesc l("You are perfectly in control of your magic."), 3;
- else if (.@val > .@base+2000)
+ else if (.@val > .@base*4)
mesc l("You are mostly in control of your magic."), 2;
- else if (.@val > .@base+1000)
+ else if (.@val > .@base*3)
mesc l("You are somewhat in control of your magic."), 4;
- else if (.@val > .@base+200)
+ else if (.@val > .@base*2)
mesc l("Your magic is more powerful than you, but you can control."), 7;
else if (.@val > .@base)
mesc l("You still are overwhelmed by your magic."), 6;