summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorMicksha <ms-shaman@gmx.de>2019-04-11 21:13:02 +0000
committerJesusaves <cpntb1@ymail.com>2019-04-11 21:13:02 +0000
commitde8afd9a48f4b6180e30de885d980fb2cf8c7538 (patch)
treecd7b6f9547d0df55b9d45474ddfdbc46fb4bdaca /npc
parent300fe4c16953b34cb8343bfa6098d7ff44678d47 (diff)
downloadserverdata-de8afd9a48f4b6180e30de885d980fb2cf8c7538.tar.gz
serverdata-de8afd9a48f4b6180e30de885d980fb2cf8c7538.tar.bz2
serverdata-de8afd9a48f4b6180e30de885d980fb2cf8c7538.tar.xz
serverdata-de8afd9a48f4b6180e30de885d980fb2cf8c7538.zip
Add Simon, Wyaras Apprentice, and his Potion shop along with updating (not fixing, really) his potions
Diffstat (limited to 'npc')
-rw-r--r--npc/008-2-7/shop.txt36
-rw-r--r--npc/008-2-7/simon.txt39
2 files changed, 75 insertions, 0 deletions
diff --git a/npc/008-2-7/shop.txt b/npc/008-2-7/shop.txt
new file mode 100644
index 00000000..30989eb3
--- /dev/null
+++ b/npc/008-2-7/shop.txt
@@ -0,0 +1,36 @@
+// Evol scripts.
+// Authors:
+// 4144
+// Micksha
+// Reid
+// toams
+// Description:
+// Simons Potion Shop.
+
+008-2-7,30,26,0 trader #Invisible008-2-7 NPC_HIDDEN,{
+
+OnInit:
+ tradertype(NST_MARKET);
+
+ sellitem SmallHealing, -1, 10;
+ sellitem MediumHealing, -1, 5;
+ sellitem SmallMana, -1, 10;
+ sellitem MediumMana, -1, 5;
+ sellitem ConcPotion, -1, 3;
+ sellitem IronPotion, -1, 3;
+
+ .sex = G_OTHER;
+ .distance = 2;
+ end;
+
+OnClock0000:
+OnClock0800:
+OnClock1600:
+ restoreshopitem SmallHealing, 10;
+ restoreshopitem MediumHealing, 5;
+ restoreshopitem SmallMana, 10;
+ restoreshopitem MediumMana, 5;
+ restoreshopitem ConcPotion, 3;
+ restoreshopitem IronPotion, 3;
+ end;
+}
diff --git a/npc/008-2-7/simon.txt b/npc/008-2-7/simon.txt
new file mode 100644
index 00000000..1b4ae071
--- /dev/null
+++ b/npc/008-2-7/simon.txt
@@ -0,0 +1,39 @@
+// Evol scripts.
+// Author:
+// Micksha
+// Description:
+// Simon, Wyaras Apprentice.
+// THIS IS A PLACEHOLDER!
+
+008-2-7,30,26,0 script Simon NPC_SIMON,{
+ speech
+ l("Hi, I am Simon."),
+ l("I am Wyaras apprentice, helping her with selling her potions."),
+ l("I would prefer becoming a real Sorcerer one time. *sighs*");
+
+ switch (select(l("Potions? That sounds useful. What do you have?"),
+ l("Thats your problem, really."),
+ l("Becoming a Sorcerer? I want that too!")))
+ {
+ case 1:
+ closeclientdialog;
+ shop "#Invisible008-2-7";
+ close;
+ case 2:
+ speech S_FIRST_BLANK_LINE,
+ l("Leave me alone.");
+ close;
+ case 3:
+ speech S_FIRST_BLANK_LINE,
+ l("It needs so much training, but Wyara only leaves me here, standing and selling something instead of teaching me.");
+ close;
+ }
+
+
+ close;
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 2;
+ end;
+}