summaryrefslogtreecommitdiff
path: root/npc/012-2-5
diff options
context:
space:
mode:
authorMicksha <ms-shaman@gmx.de>2020-04-09 07:44:46 +0000
committerMicksha <ms-shaman@gmx.de>2020-04-09 07:44:46 +0000
commit1136be2fb8138c7bb10f60aff0b5005892a15754 (patch)
tree8b01b9d28a151afe0aa6e5531a596eb98e3f440d /npc/012-2-5
parent0e353fea5c8f81496ec733ee05e6fee5d78c70da (diff)
downloadserverdata-1136be2fb8138c7bb10f60aff0b5005892a15754.tar.gz
serverdata-1136be2fb8138c7bb10f60aff0b5005892a15754.tar.bz2
serverdata-1136be2fb8138c7bb10f60aff0b5005892a15754.tar.xz
serverdata-1136be2fb8138c7bb10f60aff0b5005892a15754.zip
initial commit for Candor: outdoor map, indoor maps, placeholder NPCs (many placeholder scripts still missing, existing ones corrupt)
Diffstat (limited to 'npc/012-2-5')
-rw-r--r--npc/012-2-5/_import.txt5
-rw-r--r--npc/012-2-5/_warps.txt3
-rw-r--r--npc/012-2-5/rosen.txt21
-rw-r--r--npc/012-2-5/toichi.txt21
4 files changed, 50 insertions, 0 deletions
diff --git a/npc/012-2-5/_import.txt b/npc/012-2-5/_import.txt
new file mode 100644
index 00000000..1a36bb4d
--- /dev/null
+++ b/npc/012-2-5/_import.txt
@@ -0,0 +1,5 @@
+// Map 012-2-5: Candor Smith
+// This file is generated automatically. All manually added changes will be removed when running the Converter.
+"npc/012-2-5/_warps.txt",
+"npc/012-2-5/rosen.txt",
+"npc/012-2-5/toichi.txt",
diff --git a/npc/012-2-5/_warps.txt b/npc/012-2-5/_warps.txt
new file mode 100644
index 00000000..d5a52d94
--- /dev/null
+++ b/npc/012-2-5/_warps.txt
@@ -0,0 +1,3 @@
+// This file is generated automatically. All manually added changes will be removed when running the Converter.
+// Map 012-2-5: Candor Smith warps
+012-2-5,29,44,0 warp #012-2-5_29_44 0,0,012-1,65,106
diff --git a/npc/012-2-5/rosen.txt b/npc/012-2-5/rosen.txt
new file mode 100644
index 00000000..3fa332c9
--- /dev/null
+++ b/npc/012-2-5/rosen.txt
@@ -0,0 +1,21 @@
+// Evol scripts.
+// Author:
+// Micksha
+// Description:
+// Rosen, the salesman in Candor smith.
+// THIS IS A PLACEHOLDER!
+
+012-2-5,31,34,0 script Rosen NPC_ROSEN,{
+ speech
+ l("Welcome."),
+ l("I am Rosen, I am selling the best weapons and armor you can get on this island."),
+ l("If only Toichi would work harder, I could even offer you something. But meh. Like things are, you must try to return at a later point."),
+ l("Toichi, go to work! Stop drinking beer!");
+
+ close;
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 2;
+ end;
+}
diff --git a/npc/012-2-5/toichi.txt b/npc/012-2-5/toichi.txt
new file mode 100644
index 00000000..255c140a
--- /dev/null
+++ b/npc/012-2-5/toichi.txt
@@ -0,0 +1,21 @@
+// Evol scripts.
+// Author:
+// Micksha
+// Description:
+// Toichi, the smith in Candor island.
+// THIS IS A PLACEHOLDER!
+
+012-2-5,40,35,0 script Toichi NPC_TOICHI,{
+ speech
+ l("Hi there."),
+ l("My name is Toichi, and it seems I am the only one working on this lazy island.");
+ next;
+ l("So I kindly request you not to listen to that stupid Rosen, saying 'Toichi is lazy'.");
+ next;
+ l("At least I am doing something!");
+ close;
+OnInit:
+ .sex = G_MALE;
+ .distance = 2;
+ end;
+}