diff options
author | wushin <pasekei@gmail.com> | 2016-03-09 21:10:45 -0600 |
---|---|---|
committer | mekolat <mekolat@users.noreply.github.com> | 2016-03-30 11:22:53 -0400 |
commit | aee89bdbe04ad0aed06622052244bf6b7d3c1d23 (patch) | |
tree | ce0b368cd6c6e2a92f9e0e8baaf7af0ab6f63a3d /world/map/npc/017-4/waric.txt | |
parent | 778cd71d3933ac6172b09654fdf2b4b317d18398 (diff) | |
download | serverdata-aee89bdbe04ad0aed06622052244bf6b7d3c1d23.tar.gz serverdata-aee89bdbe04ad0aed06622052244bf6b7d3c1d23.tar.bz2 serverdata-aee89bdbe04ad0aed06622052244bf6b7d3c1d23.tar.xz serverdata-aee89bdbe04ad0aed06622052244bf6b7d3c1d23.zip |
Fix invocations
Diffstat (limited to 'world/map/npc/017-4/waric.txt')
-rw-r--r-- | world/map/npc/017-4/waric.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/world/map/npc/017-4/waric.txt b/world/map/npc/017-4/waric.txt index 11f836b6..92674a00 100644 --- a/world/map/npc/017-4/waric.txt +++ b/world/map/npc/017-4/waric.txt @@ -234,7 +234,7 @@ L_Mushroom: mes "\"Now that you are a student of mine, I will teach you some spells.\""; next; mes "\"We will start with an easy one. I will teach you how to summon a wicked mushroom.\""; - mes "\"The spell consumes a Small Mushroom and a Dark Crystal. Shove the Dark Crystal into the Small Mushroom and yell " + ("summon-wickedmushroom") +".\""; + mes "\"The spell consumes a Small Mushroom and a Dark Crystal. Shove the Dark Crystal into the Small Mushroom and yell " + get(.invocation$, "summon-wickedmushroom") +".\""; next; mes "\"A wicked mushroom will appear to fight for you.\""; set OrumQuest, 37; @@ -254,7 +254,7 @@ L_Next4: next; mes "\"You have to use two roots for this spell. First you have to take one root and break off all the root hair. Shape it into a stick, if you will. Then put it on top of the other root and form an arrow-like structure.\""; next; - mes "\"Once this is done you have to throw it in the air and scream " + ("toxic-dart") + " and the two roots will turn into toxic darts, a projectile you can throw.\""; + mes "\"Once this is done you have to throw it in the air and scream " + get(.invocation$, "toxic-dart") + " and the two roots will turn into toxic darts, a projectile you can throw.\""; next; mes "\"If you want to learn more, come back later.\""; set OrumQuest, 38; @@ -312,7 +312,7 @@ L_SnakesSpell: L_Next7: mes "[Waric]"; - mes "\"I said " + ("summon-snakes") + ".\""; + mes "\"I said " + get(.invocation$, "summon-snakes") + ".\""; mes "\"Have fun with those spells and use them to cause hate, anger and death.\""; set OrumQuest, 41; goto L_Close; @@ -341,9 +341,9 @@ L_MoreMagic: L_Next8: mes "[Waric]"; mes "\"Yes, of course.\""; - mes "\"To summon the snakes use " + ("summon-snakes") + ".\""; - mes "\"Say " + ("toxic-dart") + " to make your roots into toxic darts.\""; - mes "\"And the first spell, to summon wicked mushrooms, is " + ("summon-wickedmushroom") + ".\""; + mes "\"To summon the snakes use " + get(.invocation$, "summon-snakes") + ".\""; + mes "\"Say " + get(.invocation$, "toxic-dart") + " to make your roots into toxic darts.\""; + mes "\"And the first spell, to summon wicked mushrooms, is " + get(.invocation$, "summon-wickedmushroom") + ".\""; next; mes "\"Now leave. Spread chaos with the spells I have taught you!\""; goto L_Close; |