diff options
author | Stefan Beller <stefanbeller@googlemail.com> | 2010-12-27 15:03:55 +0100 |
---|---|---|
committer | Stefan Beller <stefanbeller@googlemail.com> | 2011-01-02 21:21:18 +0100 |
commit | 1e928158cca01692172158805c949b19843ba41e (patch) | |
tree | 4a5bfeeda8c10dc95e36dfbba6f9544a10b8d97a /npc/009-2_Hurnscald | |
parent | 3d667cc6eb0add656ad44ed7309f8530d239e260 (diff) | |
download | serverdata-1e928158cca01692172158805c949b19843ba41e.tar.gz serverdata-1e928158cca01692172158805c949b19843ba41e.tar.bz2 serverdata-1e928158cca01692172158805c949b19843ba41e.tar.xz serverdata-1e928158cca01692172158805c949b19843ba41e.zip |
Wyara also knows the astral soul skill, but you don't expect her to teach you?
No, she really can't. She isn't a good mage, is she?
Diffstat (limited to 'npc/009-2_Hurnscald')
-rw-r--r-- | npc/009-2_Hurnscald/wyara.txt | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/npc/009-2_Hurnscald/wyara.txt b/npc/009-2_Hurnscald/wyara.txt index 256c036c..fc80798c 100644 --- a/npc/009-2_Hurnscald/wyara.txt +++ b/npc/009-2_Hurnscald/wyara.txt @@ -30,7 +30,7 @@ goto L_Magic_purify_once; if (@Q_status == @STATUS_PURIFY_TWICE) goto L_Magic_purify_done; - + mes "[Wyara the witch]"; if (!Sex) mes "\"Greetings, fair traveller! What can I do for you?\""; @@ -71,6 +71,7 @@ L_Question: if (@c == @QQ_AULDSBEL) goto L_Q_auldsbel; if (@c == @QQ_IMP) goto L_Q_imp; if (@c == @QQ_OLDWIZ) goto L_Q_old_wizard; + if (@c == @QQ_ASTRALSOUL)goto L_Q_astralsoul; mes "[Wyara the Witch]"; mes "\"I fear that I can't help you with that.\""; @@ -78,6 +79,15 @@ L_Question: goto L_Main; +L_Q_astralsoul: + mes "[Wyara the Witch]"; + mes "\"The astral soul skill? Yes, I have heard about that. It can be taught by old and wise mages usually.\""; + next; + mes "\"You need lots of practise until you can handle the ability, and even more practises until you have the powers to teach it to someone else.\""; + next; + goto L_Main; + + L_Q_old_wizard: mes "[Wyara the Witch]"; mes "\"I don't know his name, but I do know that he has been living in the mountains since I first came here. He is a master of many schools of magic, I believe.\""; @@ -340,7 +350,7 @@ L_Magic_purify_explained: goto L_Magic_purify_lacking; if (countitem("MaggotSlime") < 20) goto L_Magic_purify_lacking; - + delitem "MauveHerb", 20; delitem "MaggotSlime", 20; getitem "PurificationPotion", 1; @@ -390,7 +400,7 @@ L_Magic_purify_once: goto L_Magic_purify_lacking; if (countitem("MaggotSlime") < 20) goto L_Magic_purify_lacking; - + delitem "MauveHerb", 20; delitem "MaggotSlime", 20; getitem "PurificationPotion", 1; |