diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-19 19:02:46 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-19 19:02:46 -0300 |
commit | 4548a7ad47cd78de0c65333be72d832454e40870 (patch) | |
tree | 9f675a6940e5d67aa68b842c9e98072808d5bbec /npc/003-0 | |
parent | 490b3ef02d6420c78f19f5525443bce393252b3e (diff) | |
download | serverdata-4548a7ad47cd78de0c65333be72d832454e40870.tar.gz serverdata-4548a7ad47cd78de0c65333be72d832454e40870.tar.bz2 serverdata-4548a7ad47cd78de0c65333be72d832454e40870.tar.xz serverdata-4548a7ad47cd78de0c65333be72d832454e40870.zip |
Trickmaster - all skills are configured now
Diffstat (limited to 'npc/003-0')
-rw-r--r-- | npc/003-0/trickmaster.txt | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/npc/003-0/trickmaster.txt b/npc/003-0/trickmaster.txt index b9f61ae60..0c4058066 100644 --- a/npc/003-0/trickmaster.txt +++ b/npc/003-0/trickmaster.txt @@ -16,6 +16,11 @@ menuint "freecast", SA_FREECAST, "backslide", TF_BACKSLIDING, + "firewall", MG_FIREWALL, + "fullthrottle", ALL_FULL_THROTTLE, + "darkillusion", GC_DARKILLUSION, + "trickdead", NV_TRICKDEAD, + "firewalk", SO_FIREWALK, "Cancel", 0; mes ""; setskin ""; @@ -29,6 +34,26 @@ if (!mlearn(TF_BACKSLIDING, 1, 1, Lockpicks, 1)) mesc l("You do not meet all requisites for this skill."), 1; break; + case MG_FIREWALL: + if (!mlearn(MG_FIREWALL, 10, 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, 1, 2, Lockpicks, 1)) + mesc l("You do not meet all requisites for this skill."), 1; + break; + case NV_TRICKDEAD: + if (!mlearn(NV_TRICKDEAD, 1, 2, Lockpicks, 1)) + mesc l("You do not meet all requisites for this skill."), 1; + break; + case SO_FIREWALK: + if (!mlearn(SO_FIREWALK, 2, 2, Lockpicks, 1)) + mesc l("You do not meet all requisites for this skill."), 1; + break; default: if (@menuret) Exception("ERROR skill not implemented", RB_DEFAULT|RB_SPEECH); |