summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
Diffstat (limited to 'npc')
-rw-r--r--npc/003-0/trickmaster.txt18
1 files changed, 9 insertions, 9 deletions
diff --git a/npc/003-0/trickmaster.txt b/npc/003-0/trickmaster.txt
index da0c5dd3b..7bf14f51e 100644
--- a/npc/003-0/trickmaster.txt
+++ b/npc/003-0/trickmaster.txt
@@ -34,10 +34,6 @@
if (!mlearn(TMW2_MANABOMB, 1, 1, SulfurPowder, 1))
mesc l("You do not meet all requisites for this skill."), 1;
break;
- case SA_FREECAST:
- if (!mlearn(SA_FREECAST, 1, 1, Lockpicks, 1))
- mesc l("You do not meet all requisites for this skill."), 1;
- break;
case TF_BACKSLIDING:
if (!mlearn(TF_BACKSLIDING, 1, 1, Lockpicks, 1))
mesc l("You do not meet all requisites for this skill."), 1;
@@ -50,11 +46,15 @@
if (!mlearn(AC_VULTURE, 1, 1, Lockpicks, 1))
mesc l("You do not meet all requisites for this skill."), 1;
break;
+
+ case SA_FREECAST:
+ if (!mlearn(SA_FREECAST, 1, 1, Lockpicks, 1))
+ mesc l("You do not meet all requisites for this skill."), 1;
+ break;
case ALL_FULL_THROTTLE:
if (!mlearn(ALL_FULL_THROTTLE, 1, 1, Lockpicks, 1))
mesc l("You do not meet all requisites for this skill."), 1;
break;
-
case GC_DARKILLUSION:
if (!mlearn(GC_DARKILLUSION, 3, 2, Lockpicks, 1))
mesc l("You do not meet all requisites for this skill."), 1;
@@ -89,9 +89,6 @@ function basicMagic {
mes l(".:: Mana Bomb ::.");
mesc l("Converts all your mana in damage. Damages all enemies in same tile.");
mes "";
- mes l(".:: Free Cast ::.");
- mesc l("Allows to attack right after casting.");
- mes "";
mes l(".:: Backsliding ::.");
mesc l("Instantly jumps 5 tiles backwards.");
mes "";
@@ -103,7 +100,6 @@ function basicMagic {
mes "";
menuint
"Mana Bomb", TMW2_MANABOMB,
- "Free Cast", SA_FREECAST,
"Backslidng", TF_BACKSLIDING,
"Nature Wall", MG_FIREWALL,
"Archers Eye", AC_VULTURE,
@@ -113,6 +109,9 @@ function basicMagic {
function standardMagic {
if (!MAGIC_LVL) goto L_NoMagic;
+ mes l(".:: Free Cast ::.");
+ mesc l("Allows to attack right after casting.");
+ mes "";
mes l(".:: Full Throttle ::.");
mesc l("An emergency skill which temporaly raises all your stats.");
mes "";
@@ -123,6 +122,7 @@ function standardMagic {
mesc l("Plop dead in the ground. Enemies won't attack you this way.");
mes "";
menuint
+ "Free Cast", SA_FREECAST,
"Full Throttle", ALL_FULL_THROTTLE,
"Sudden Attack", GC_DARKILLUSION,
"Trick Dead", NV_TRICKDEAD,