summaryrefslogtreecommitdiff
path: root/npc/014-2/trap.txt
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/trap.txt
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/trap.txt')
-rw-r--r--npc/014-2/trap.txt52
1 files changed, 52 insertions, 0 deletions
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;
+}
+