summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-07-18 03:22:04 -0300
committerJesusaves <cpntb1@ymail.com>2018-07-18 03:22:04 -0300
commitf5c3f196fa233229d135d3d6fafd6896fb569b19 (patch)
treecf719f8c77e8c89597653ccf62f03e9b9d431b5d /npc
parent504fa5c8aff7649fbdd02c1b0a8d364d7b40cac2 (diff)
downloadserverdata-f5c3f196fa233229d135d3d6fafd6896fb569b19.tar.gz
serverdata-f5c3f196fa233229d135d3d6fafd6896fb569b19.tar.bz2
serverdata-f5c3f196fa233229d135d3d6fafd6896fb569b19.tar.xz
serverdata-f5c3f196fa233229d135d3d6fafd6896fb569b19.zip
Sage extra skill grants more mana exp (because their skills sucks :p)
Diffstat (limited to 'npc')
-rw-r--r--npc/003-0/mages.txt2
-rw-r--r--npc/config/magic.txt3
2 files changed, 3 insertions, 2 deletions
diff --git a/npc/003-0/mages.txt b/npc/003-0/mages.txt
index 118f6b035..edf07464a 100644
--- a/npc/003-0/mages.txt
+++ b/npc/003-0/mages.txt
@@ -11,7 +11,7 @@
// SA_LIGHTNINGLOADER (bestow wind element on weapon for 2m, 70% cth)
// SA_SEISMICWEAPON (bestow earth element on weapon for 2m, 70% cth)
// SA_DRAGONOLOGY (+4% ATK, +2% MATK, +1 INT and +4% resist against DRAGONS)
-// Maybe MAGIC_EXP gain rate up?
+// TMW2_SAGE (grants up to 1.5 extra mana exp point/level)
// Priest
// Broken //AL_PNEUMA (BLOCKS ranged (4+ tiles) physical attacks on a 3x3 area. No bows :D)
diff --git a/npc/config/magic.txt b/npc/config/magic.txt
index 95f9eb1b8..f7b22d47c 100644
--- a/npc/config/magic.txt
+++ b/npc/config/magic.txt
@@ -19,10 +19,11 @@
function script GetManaExp {
.@sk=getarg(0);
.@pt=getarg(1);
+ .@bonus=rand(0,getskilllv(TMW2_SAGE)*3/2);
if (LAST_SKILL == .@sk)
end;
LAST_SKILL=.@sk;
- MAGIC_EXP=MAGIC_EXP+.@pt;
+ MAGIC_EXP=MAGIC_EXP+.@pt+.@bonus;
end;
}