diff options
Diffstat (limited to 'npc/functions')
-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) |