summaryrefslogtreecommitdiff
path: root/npc/020-2-15
diff options
context:
space:
mode:
Diffstat (limited to 'npc/020-2-15')
-rw-r--r--npc/020-2-15/_import.txt7
-rw-r--r--npc/020-2-15/_warps.txt3
-rw-r--r--npc/020-2-15/eleanore.txt16
-rw-r--r--npc/020-2-15/kadiya.txt21
-rw-r--r--npc/020-2-15/memoriam.txt19
-rw-r--r--npc/020-2-15/yumi.txt54
6 files changed, 0 insertions, 120 deletions
diff --git a/npc/020-2-15/_import.txt b/npc/020-2-15/_import.txt
deleted file mode 100644
index fba37df5..00000000
--- a/npc/020-2-15/_import.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-// Map 020-2-15: Tulimshar Clinic
-// This file is generated automatically. All manually added changes will be removed when running the Converter.
-"npc/020-2-15/_warps.txt",
-"npc/020-2-15/eleanore.txt",
-"npc/020-2-15/kadiya.txt",
-"npc/020-2-15/memoriam.txt",
-"npc/020-2-15/yumi.txt",
diff --git a/npc/020-2-15/_warps.txt b/npc/020-2-15/_warps.txt
deleted file mode 100644
index 7e260483..00000000
--- a/npc/020-2-15/_warps.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-// This file is generated automatically. All manually added changes will be removed when running the Converter.
-// Map 020-2-15: Tulimshar Clinic warps
-020-2-15,45,33,0 warp #020-2-15_45_33 0,0,020-1,267,182
diff --git a/npc/020-2-15/eleanore.txt b/npc/020-2-15/eleanore.txt
deleted file mode 100644
index f650d96e..00000000
--- a/npc/020-2-15/eleanore.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-// The Mana World Script
-// Author:
-// Jesusalva
-// Description:
-// Elenaore the Healer (aka. Elanore)
-// THIS IS A PLACEHOLDER!
-
-020-2-15,43,27,0 script Eleanore NPC_REBECCA,{
- mesn;
- mesq l("Please do not disturb the patients.");
- close;
-
-OnInit:
- .distance = 4;
- end;
-}
diff --git a/npc/020-2-15/kadiya.txt b/npc/020-2-15/kadiya.txt
deleted file mode 100644
index 3b25d619..00000000
--- a/npc/020-2-15/kadiya.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-// The Mana World Script
-// Author:
-// Jesusalva
-// Description:
-// Kadiya, Omar's sick daughter
-// THIS IS A PLACEHOLDER!
-
-020-2-15,39,26,0 script Kadiya NPC_TANISHA,{
- mesn;
- mesc l("*cough cough*");
- mesq l("Hello there.");
- next;
- mesn;
- mesc l("*cough cough*");
- mesq l("Have you seen my father Omar? I bet Micksha took him to drink.");
- close;
-
-OnInit:
- .distance = 4;
- end;
-}
diff --git a/npc/020-2-15/memoriam.txt b/npc/020-2-15/memoriam.txt
deleted file mode 100644
index 041c659a..00000000
--- a/npc/020-2-15/memoriam.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-// The Mana World Script
-// Author:
-// Jesusalva
-// Description:
-// Irene Memorial
-
-020-2-15,41,25,0 script Memoriam NPC_PAPER_NOTE,{
- mes ".:: In Memoriam ::.";
- mes "";
- mes "~ Irene Christina ~";
- mes l("The song in this clinic is dedicated to Irene.");
- next;
- mes l("She had seen only twenty hours of this world when she died in her father's arms.");
- close;
-
-OnInit:
- .distance = 3;
- end;
-}
diff --git a/npc/020-2-15/yumi.txt b/npc/020-2-15/yumi.txt
deleted file mode 100644
index 5a5e7f0d..00000000
--- a/npc/020-2-15/yumi.txt
+++ /dev/null
@@ -1,54 +0,0 @@
-// TMW2 Script
-// Author: Jesusalva
-// Description:
-// Joaquim's wife.
-// TODO sprite on the bed
-
-020-2-15,33,26,0 script Yumi NPC_EOMIE,{
- .@q=getq(TonoriQuest_Joaquim);
- if (.@q > 3) goto L_PostAid;
- if (.@q == 3) goto L_DoIt;
- if (BaseLevel > 36) goto L_PreAid;
-
- mesn;
- mesq l("Hello. Take care with the Snakes, they're highly poisonous!");
- close;
-
-L_PreAid:
- mesn;
- mesq l("Please... Speak low... I am dying........");
- next;
- mesn;
- mesq l("The nurse... Eleanore is... Doing all she can... To help me, though.");
- close;
-
-L_PostAid:
- mesn;
- mesq l("Ah, I am lively again. I wish I could just raise from this bed and do some exercise, but Eleanore refuses to let me go.");
- // There could be another quest stage her
- close;
-
-L_DoIt:
- if (countitem(ElixirOfLife) < 1)
- goto L_PreAid;
-
- inventoryplace ElixirOfLife, 1;
- delitem ElixirOfLife, 1;
- quest_xp(.maxLevel, 1000);
- setq TonoriQuest_Joaquim, 4;
- mesc l("*gulp* *gulp* *gulp*");
- next;
- mesn;
- mesq l("AAAAAAAHHHHH, Thanks, I am lively again!");
- next;
- mesn;
- mesq l("In fact, I am cured! Hooray!!");
- close;
-
-OnInit:
- .minLevel = 36;
- .maxLevel = 66;
-
- .distance = 5;
- end;
-}