summaryrefslogtreecommitdiff
path: root/npc/003-4
diff options
context:
space:
mode:
Diffstat (limited to 'npc/003-4')
-rw-r--r--npc/003-4/_import.txt1
-rw-r--r--npc/003-4/time-traveler.txt33
2 files changed, 34 insertions, 0 deletions
diff --git a/npc/003-4/_import.txt b/npc/003-4/_import.txt
index 19764510..8be96979 100644
--- a/npc/003-4/_import.txt
+++ b/npc/003-4/_import.txt
@@ -3,3 +3,4 @@
"npc/003-4/_mobs.txt",
"npc/003-4/_warps.txt",
"npc/003-4/ashley.txt",
+"npc/003-4/time-traveler.txt",
diff --git a/npc/003-4/time-traveler.txt b/npc/003-4/time-traveler.txt
new file mode 100644
index 00000000..2398deaf
--- /dev/null
+++ b/npc/003-4/time-traveler.txt
@@ -0,0 +1,33 @@
+
+002-1,30,67,0 script Time Traveler#21 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 "003-4", 171, 76;
+ close;
+}
+
+003-4,165,73,0 script Time Traveler#34 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 Tonori a few years back.");
+ mes l("Unfortunately, it almost vanished completely due to illegal dredging of the coast.");
+ next;
+ mes l("The culprits were never caught.");
+ close;
+
+L_Leave:
+ mes l("Walk East from here to escape the time dilation bubble.");
+ close;
+}