summaryrefslogtreecommitdiff
path: root/npc/030-1
diff options
context:
space:
mode:
Diffstat (limited to 'npc/030-1')
-rw-r--r--npc/030-1/_import.txt1
-rw-r--r--npc/030-1/time-traveler.txt34
2 files changed, 35 insertions, 0 deletions
diff --git a/npc/030-1/_import.txt b/npc/030-1/_import.txt
index 6abb9f07..55eb23dc 100644
--- a/npc/030-1/_import.txt
+++ b/npc/030-1/_import.txt
@@ -2,3 +2,4 @@
// This file is generated automatically. All manually added changes will be removed when running the Converter.
"npc/030-1/_mobs.txt",
"npc/030-1/_warps.txt",
+"npc/030-1/time-traveler.txt",
diff --git a/npc/030-1/time-traveler.txt b/npc/030-1/time-traveler.txt
new file mode 100644
index 00000000..93a20cb3
--- /dev/null
+++ b/npc/030-1/time-traveler.txt
@@ -0,0 +1,34 @@
+
+019-1,102,100,0 script Time Traveler#19 NPC184,{
+ mes l("Would you like to time travel?");
+ menu
+ l("Yes!"), L_Warp,
+ l("No"), -;
+ closeclientdialog;
+ close;
+
+L_Warp:
+ mes l("Hang tight!");
+ close2;
+ warp "030-1", 61, 29;
+ close;
+}
+
+030-1,64,33,0 script Time Traveler#30 NPC184,{
+ mes l("Welcome back!");
+ menu
+ l("What is this place?"), L_What,
+ l("How do I leave?"), L_Leave;
+
+L_What:
+ mes l("This place used to be part of Kaizei a few years back.");
+ mes l("Unfortunately, a great landslide occured and it got completely engulfed by the sea.");
+ next;
+ mes l("Santa's workshop used to be located here, but after the incident they had to move further inland.");
+ mes l("Fortunately, they managed to salvage most of the equipment and nobody was injured.");
+ close;
+
+L_Leave:
+ mes l("Walk North from here to exit the time dilation bubble.");
+ close;
+}