summaryrefslogtreecommitdiff
path: root/npc/014-2
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-04-28 10:23:08 -0300
committerJesusaves <cpntb1@ymail.com>2022-04-28 10:23:08 -0300
commit694626591f8c2ed6484ef2c911fc78a6ef7117a0 (patch)
tree8355c4fab58894721fe6ee4637e21c16c5c24b7d /npc/014-2
parent18144bb937fde1ab54c2790811faf9d5afe93ac1 (diff)
downloadserverdata-694626591f8c2ed6484ef2c911fc78a6ef7117a0.tar.gz
serverdata-694626591f8c2ed6484ef2c911fc78a6ef7117a0.tar.bz2
serverdata-694626591f8c2ed6484ef2c911fc78a6ef7117a0.tar.xz
serverdata-694626591f8c2ed6484ef2c911fc78a6ef7117a0.zip
Gemini Inn unlocked
Diffstat (limited to 'npc/014-2')
-rw-r--r--npc/014-2/_import.txt1
-rw-r--r--npc/014-2/_warps.txt1
-rw-r--r--npc/014-2/trap.txt52
3 files changed, 54 insertions, 0 deletions
diff --git a/npc/014-2/_import.txt b/npc/014-2/_import.txt
index 4cadbd274..1ee7fb0b6 100644
--- a/npc/014-2/_import.txt
+++ b/npc/014-2/_import.txt
@@ -5,3 +5,4 @@
"npc/014-2/carla.txt",
"npc/014-2/guards.txt",
"npc/014-2/mouboo.txt",
+"npc/014-2/trap.txt",
diff --git a/npc/014-2/_warps.txt b/npc/014-2/_warps.txt
index 0a2817bd9..c159673d0 100644
--- a/npc/014-2/_warps.txt
+++ b/npc/014-2/_warps.txt
@@ -2,4 +2,5 @@
// Map 014-2: Woodlands Southeast warps
014-2,179,21,0 warp #014-2_179_21 3,0,012-1,78,101
014-2,232,20,0 warp #014-2_232_20 2,0,012-1,132,100
+014-2,183,76,0 warp #014-2_183_76 0,0,014-2-2,34,34
014-2,49,24,0 warp #014-2_49_24 1,0,014-3,130,134
diff --git a/npc/014-2/trap.txt b/npc/014-2/trap.txt
new file mode 100644
index 000000000..924943dbd
--- /dev/null
+++ b/npc/014-2/trap.txt
@@ -0,0 +1,52 @@
+// TMW2 scripts.
+// Authors:
+// Jesusalva
+// Description:
+// Gemini Sisters Quest - Traps
+
+014-2,230,58,0 script #GeminiTrap1 NPC_HIDDEN,0,0,{
+OnTouch:
+ if (getq(General_Narrator) < 16) {
+ mesc l("WARNING:"), 1;
+ mes l("You are not welcome on this island.");
+ mes "";
+ mes l("No mercy will be shown, turn back now!");
+ mes "";
+ mes l("-- Valia G.");
+ close;
+ }
+ end;
+}
+
+014-2,230,60,0 script #GeminiTrap2 NPC_HIDDEN,0,0,{
+OnTouch:
+ if (getq(General_Narrator) < 16) {
+ slide 230, 56;
+ dispbottom l("You are pushed back with extreme force!");
+ percentheal -15, 0;
+ }
+ end;
+}
+
+014-2,228,64,0 script #GeminiTrap3 NPC_HIDDEN,0,0,{
+OnTouch:
+ if (getq(General_Narrator) < 16) {
+ slide 230, 56;
+ dispbottom l("You are pushed back with absolute force!");
+ percentheal -85, 0;
+ }
+ end;
+}
+
+// Should never trigger
+014-2,221,69,0 script #GeminiTrap4 NPC_HIDDEN,1,1,{
+OnTouch:
+ if (getq(General_Narrator) < 16) {
+ warp "Save", 0, 0;
+ dispbottom l("You don't feel so well... And then, you're dead.");
+ die();
+ end;
+ }
+ end;
+}
+