summaryrefslogtreecommitdiff
path: root/npc/020-2-10
diff options
context:
space:
mode:
Diffstat (limited to 'npc/020-2-10')
-rw-r--r--npc/020-2-10/_import.txt4
-rw-r--r--npc/020-2-10/_warps.txt4
-rw-r--r--npc/020-2-10/hetchel.txt33
3 files changed, 41 insertions, 0 deletions
diff --git a/npc/020-2-10/_import.txt b/npc/020-2-10/_import.txt
new file mode 100644
index 00000000..0f59e421
--- /dev/null
+++ b/npc/020-2-10/_import.txt
@@ -0,0 +1,4 @@
+// Map 020-2-10: Tailor
+// This file is generated automatically. All manually added changes will be removed when running the Converter.
+"npc/020-2-10/_warps.txt",
+"npc/020-2-10/hetchel.txt",
diff --git a/npc/020-2-10/_warps.txt b/npc/020-2-10/_warps.txt
new file mode 100644
index 00000000..099f754a
--- /dev/null
+++ b/npc/020-2-10/_warps.txt
@@ -0,0 +1,4 @@
+// This file is generated automatically. All manually added changes will be removed when running the Converter.
+// Map 020-2-10: Tailor warps
+020-2-10,45,33,0 warp #020-2-10_45_33 0,0,020-1,264,153
+020-2-10,34,33,0 warp #020-2-10_34_33 0,0,020-1,259,153
diff --git a/npc/020-2-10/hetchel.txt b/npc/020-2-10/hetchel.txt
new file mode 100644
index 00000000..faed2b99
--- /dev/null
+++ b/npc/020-2-10/hetchel.txt
@@ -0,0 +1,33 @@
+// Evol scripts.
+// Author:
+// Micksha
+// Description:
+// Hetchel, the silk weaver / tailor in Tulimshar.
+// THIS IS A PLACEHOLDER!
+
+020-2-10,45,27,0 script Hetchel NPC_HETCHEL,{
+ setq2 TonoriQuest_Kylian, getq2(TonoriQuest_Kylian) | KYLIAN_HETCHEL;
+ speech
+ l("Hi there. I am Hetchel, I weave fine textiles."),
+ l("My best client is Lora Tay, at Dimond's."),
+ l("So if you want, you can talk to her instead."),
+ l("Tailoring is in decline and I have nothing to sell nor teach."),
+ l("Unless you want to try doing it yourself?");
+ next;
+ do
+ {
+ mes "";
+ .@s = SmithSystem(CRAFT_TAILORING);
+ if (.@s)
+ mesc l("Success!"), 3;
+ else
+ mesc l("That didn't work!"), 1;
+ next;
+ mesc l("Do you want to continue?");
+ } while (askyesno() != ASK_YES);
+ close;
+
+OnInit:
+ .distance = 4;
+ end;
+}