summaryrefslogtreecommitdiff
path: root/world/map/npc/030-1/time-traveler.txt
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2019-04-08 19:22:39 -0400
committergumi <git@gumi.ca>2019-04-08 19:22:39 -0400
commitd154c66009b0b1fde5e4f57139ba8cb7689774e0 (patch)
tree122242c72ddd4b31d69a44f68af538102660c027 /world/map/npc/030-1/time-traveler.txt
parent6b9477145428ef2aa9bd1b146ab43e9f365fa70d (diff)
downloadserverdata-d154c66009b0b1fde5e4f57139ba8cb7689774e0.tar.gz
serverdata-d154c66009b0b1fde5e4f57139ba8cb7689774e0.tar.bz2
serverdata-d154c66009b0b1fde5e4f57139ba8cb7689774e0.tar.xz
serverdata-d154c66009b0b1fde5e4f57139ba8cb7689774e0.zip
release v2019.04.09v2019.4.9
Diffstat (limited to 'world/map/npc/030-1/time-traveler.txt')
-rw-r--r--world/map/npc/030-1/time-traveler.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/world/map/npc/030-1/time-traveler.txt b/world/map/npc/030-1/time-traveler.txt
new file mode 100644
index 00000000..a79b812d
--- /dev/null
+++ b/world/map/npc/030-1/time-traveler.txt
@@ -0,0 +1,34 @@
+// time traveler that warps from old nivalis to new nivalis
+
+019-1,102,100,0|script|Time Traveler#19|184
+{
+ mes "Would you like to time travel?";
+ menu
+ "Yes!", L_Warp;
+
+L_Warp:
+ mes "Hang tight!";
+ close2;
+ warp "030-1", 61, 29;
+ close;
+}
+
+030-1,64,33,0|script|Time Traveler#30|184
+{
+ mes "Welcome back!";
+ menu
+ "What is this place?", L_What,
+ "How do I leave?", L_Leave;
+
+L_What:
+ mes "This place used to be part of Kaizei a few years back.";
+ mes "Unfortunately, a great landslide occured and it got completely engulfed by the sea.";
+ next;
+ mes "Santa's workshop used to be located here, but after the incident they had to move further inland.";
+ mes "Fortunately, they managed to salvage most of the equipment and nobody was injured.";
+ close;
+
+L_Leave:
+ mes "Walk North from here to exit the time dilation bubble.";
+ close;
+}