summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--db/constants.conf4
-rw-r--r--npc/014-5/_import.txt1
-rw-r--r--npc/014-5/sign.txt19
3 files changed, 23 insertions, 1 deletions
diff --git a/db/constants.conf b/db/constants.conf
index a57ffd438..06958a6c3 100644
--- a/db/constants.conf
+++ b/db/constants.conf
@@ -3971,12 +3971,14 @@ constants_db: {
NPC_BARD_TRUMP: 213
NPC_CRUSADER: 221
NPC_BARD_DRUMS: 227
+ NPC_LOF_DOCTOR: 228
+ NPC_SWORDS_SIGN: 229
+ NPC_SWORDS_SIGN2: 230
NPC_TOMBOY: 231
NPC_LOF_NOBLEMAN: 235
NPC_SHEILA: 236
NPC_DIMOND: 240
NPC_BARD_HARPS: 241
- NPC_LOF_DOCTOR: 228
// TMW-BR Non Animated NPCs
NPC_SHOPPAKEP: 301
diff --git a/npc/014-5/_import.txt b/npc/014-5/_import.txt
index ad9e4eaee..b404f71e4 100644
--- a/npc/014-5/_import.txt
+++ b/npc/014-5/_import.txt
@@ -2,3 +2,4 @@
// This file is generated automatically. All manually added changes will be removed when running the Converter.
"npc/014-5/_mobs.txt",
"npc/014-5/_warps.txt",
+"npc/014-5/sign.txt",
diff --git a/npc/014-5/sign.txt b/npc/014-5/sign.txt
new file mode 100644
index 000000000..422cd3d80
--- /dev/null
+++ b/npc/014-5/sign.txt
@@ -0,0 +1,19 @@
+// TMW2 Script.
+// Author:
+// Jesusalva
+// Description:
+// Random Sign nobody bothers reading.
+
+014-5,179,29,0 script Sign#014517929 NPC_SWORDS_SIGN,{
+ mesc l("Welcome to the Greenlands, the place cursed by the Monster King to be ice forever, and now known as Icelands.");
+ next;
+ mesc l("It's advised to come ready for the cold, the hungry beasts, and other dangers snow may bring.");
+ next;
+ mesc l("WARNING: Path temporaly closed due strong snowstorm."), 3;
+ close;
+
+OnInit:
+ .sex = G_OTHER;
+ .distance = 3;
+ end;
+}