summaryrefslogtreecommitdiff
path: root/world/map/npc/024-2
diff options
context:
space:
mode:
Diffstat (limited to 'world/map/npc/024-2')
-rw-r--r--world/map/npc/024-2/_import.txt8
-rw-r--r--world/map/npc/024-2/_mobs.txt8
-rw-r--r--world/map/npc/024-2/_warps.txt5
-rw-r--r--world/map/npc/024-2/barrier.txt10
-rw-r--r--world/map/npc/024-2/tyer.txt7
-rw-r--r--world/map/npc/024-2/tyer_trigger.txt23
6 files changed, 61 insertions, 0 deletions
diff --git a/world/map/npc/024-2/_import.txt b/world/map/npc/024-2/_import.txt
new file mode 100644
index 00000000..2a03af32
--- /dev/null
+++ b/world/map/npc/024-2/_import.txt
@@ -0,0 +1,8 @@
+// Map 024-2: Tulimshar Magic School
+// This file is generated automatically. All manually changes will be removed when running the Converter.
+map: 024-2.gat
+npc: npc/024-2/_mobs.txt
+npc: npc/024-2/_warps.txt
+npc: npc/024-2/barrier.txt
+npc: npc/024-2/tyer.txt
+npc: npc/024-2/tyer_trigger.txt
diff --git a/world/map/npc/024-2/_mobs.txt b/world/map/npc/024-2/_mobs.txt
new file mode 100644
index 00000000..7074e7a7
--- /dev/null
+++ b/world/map/npc/024-2/_mobs.txt
@@ -0,0 +1,8 @@
+// This file is generated automatically. All manually changes will be removed when running the Converter.
+// Tulimshar Magic School mobs
+
+
+
+024-2.gat,0,0,0 script Mob024-2 -1,{
+ end;
+}
diff --git a/world/map/npc/024-2/_warps.txt b/world/map/npc/024-2/_warps.txt
new file mode 100644
index 00000000..e7b9d28f
--- /dev/null
+++ b/world/map/npc/024-2/_warps.txt
@@ -0,0 +1,5 @@
+// This file is generated automatically. All manually changes will be removed when running the Converter.
+// Tulimshar Magic School warps
+
+024-2.gat,26,27 warp toOutside 0,-1,024-1.gat,79,49
+024-2.gat,42,28 warp toOutside -1,-1,024-1.gat,86,49
diff --git a/world/map/npc/024-2/barrier.txt b/world/map/npc/024-2/barrier.txt
new file mode 100644
index 00000000..ede39644
--- /dev/null
+++ b/world/map/npc/024-2/barrier.txt
@@ -0,0 +1,10 @@
+// A barrier in the magic school to keep less experienced players out of the canyon
+
+024-2.gat,31,24,0 script #MagicSchoolBarrier1#M 0,1,1,{
+ if (BaseLevel < 40) goto L_PushBack;
+ close;
+
+L_PushBack:
+ warp "024-2.gat", 34, 24;
+ close;
+}
diff --git a/world/map/npc/024-2/tyer.txt b/world/map/npc/024-2/tyer.txt
new file mode 100644
index 00000000..f6b78331
--- /dev/null
+++ b/world/map/npc/024-2/tyer.txt
@@ -0,0 +1,7 @@
+// A man in the magic school
+
+024-2.gat,36,21,0 script Tyer 157,{
+ mes "[Tyer]";
+ mes "\"Hello.\"";
+ close;
+}
diff --git a/world/map/npc/024-2/tyer_trigger.txt b/world/map/npc/024-2/tyer_trigger.txt
new file mode 100644
index 00000000..ee588365
--- /dev/null
+++ b/world/map/npc/024-2/tyer_trigger.txt
@@ -0,0 +1,23 @@
+// A man in the magic school
+
+024-2.gat,33,24,0 script #Tyer_Trigger 0,1,1,{
+ if (BaseLevel >= 40) end;
+
+ mes "[Tyer]";
+ mes "\"You're still too young to go in there.\"";
+ next;
+
+ menu
+ "What do you mean I'm too young to go in there?", L_Explain,
+ "Ah, right.", -;
+ close;
+
+L_Explain:
+ mes "[Tyer]";
+ mes "\"The canyon is a dangerous place, so only more experienced people are allowed there.\"";
+ next;
+
+ mes "[Tyer]";
+ mes "\"That barrier was made to keep those that are too young out.\"";
+ close;
+}