diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-06-25 06:05:39 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-06-25 06:05:39 -0300 |
commit | 168601c7727279e7d29540aae09e71875998afdd (patch) | |
tree | 6e351e765a09b31538cd82a307b8ebd412587ce7 /npc | |
parent | 004fc50b9c492577502929ad7315d0d3fc9aa0b9 (diff) | |
download | serverdata-168601c7727279e7d29540aae09e71875998afdd.tar.gz serverdata-168601c7727279e7d29540aae09e71875998afdd.tar.bz2 serverdata-168601c7727279e7d29540aae09e71875998afdd.tar.xz serverdata-168601c7727279e7d29540aae09e71875998afdd.zip |
Declare TMW2_MANABOMB
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/hub.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index 4f510bc28..8b778254a 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -306,6 +306,15 @@ function script HUB_SkillInvoke { break; //////////////////////////////// // Magic v3 + // The basic offensive skill from Trickmaster + case TMW2_MANABOMB: + // This skill takes 100% mana for a 1:1 ratio damage + // And is a trick. Each level improves ratio in 1 + // Has no cooldown, so it is powerful with pots + // And is a good starter offensive skill + areaharm(@skillTarget, 0, Sp*@skillLv, HARM_MAGI, Ele_Ghost); + Sp=0; + break; case TMW2_NILFHEIM: // Nilfheim cast on self? .@PW=80+(10*@skillLv); @@ -319,15 +328,6 @@ function script HUB_SkillInvoke { areasc2(getmap(), @skillTargetX, @skillTargetY, 2, 10000, SC_BLOODING, BL_MOB|BL_PC); break; /* - // The basic offensive skill from Trickmaster - case TMW2_MANABOMB: - // This skill takes 100% mana for a 1:1 ratio damage - // And is a trick. Each level improves ratio in 1 - // Has no cooldown, so it is powerful with pots - // And is a good starter offensive skill - areaharm(@skillTarget, 0, Sp*@skillLv, HARM_MAGI, Ele_Ghost); - Sp=0; - break; // TODO: Ultimate Skills (T5/0) |