summaryrefslogtreecommitdiff
path: root/npc/005-1
diff options
context:
space:
mode:
authorjesusalva <cpntb1@ymail.com>2018-02-09 00:44:40 -0200
committerjesusalva <cpntb1@ymail.com>2018-02-09 00:44:40 -0200
commitd7693d69457ccb4d235d2c22aa52a149253297e8 (patch)
tree20c3ec18a855de9754a64dbd0141df7a55f09571 /npc/005-1
parent826347d6d6a4553769f272c64b6fa37174d2e7d5 (diff)
downloadserverdata-d7693d69457ccb4d235d2c22aa52a149253297e8.tar.gz
serverdata-d7693d69457ccb4d235d2c22aa52a149253297e8.tar.bz2
serverdata-d7693d69457ccb4d235d2c22aa52a149253297e8.tar.xz
serverdata-d7693d69457ccb4d235d2c22aa52a149253297e8.zip
Include Liana explaining real monsters only attack bigger towns.
There is a PS about the magically-protected cave.
Diffstat (limited to 'npc/005-1')
-rw-r--r--npc/005-1/_import.txt1
-rw-r--r--npc/005-1/liana.txt50
2 files changed, 51 insertions, 0 deletions
diff --git a/npc/005-1/_import.txt b/npc/005-1/_import.txt
index 155081ff5..7d25f9a41 100644
--- a/npc/005-1/_import.txt
+++ b/npc/005-1/_import.txt
@@ -4,5 +4,6 @@
"npc/005-1/_warps.txt",
"npc/005-1/ayasha.txt",
"npc/005-1/maya.txt",
+"npc/005-1/liana.txt",
"npc/005-1/warpcandorbattle.txt",
"npc/005-1/zegas.txt",
diff --git a/npc/005-1/liana.txt b/npc/005-1/liana.txt
new file mode 100644
index 000000000..fc06cf41b
--- /dev/null
+++ b/npc/005-1/liana.txt
@@ -0,0 +1,50 @@
+// TMW2 Script
+// Author: Jesusalva
+// Author: TMW-Org. Script Writers
+// PS. Liana could (should) explain too the small cave north of there. It can be
+// a place to run, or maybe monsters there are natural and protect them from the
+// Mana Monsters, etc.
+
+005-1,47,86,0 script Liana NPC_ELVEN_FEMALE,{
+ mesn;
+ //mesq l("Hurnscald is a large city. I'm sure glad I live in Candor because I know where everything's at.");
+ mesq l("Monsters do not aim small towns like Candor. This city also comes with the plus that I know where everything's at.");
+ if (QL_BEGIN == 10) goto L_Hasan;
+ close;
+
+L_Hasan:
+ mes "[Liana]";
+ mesq l("Are you enjoying yourself in Candor? Do you have any questions?");
+ menu
+ l("A guy named Hasan is bullying people."),L_Next,
+ l("No, thanks."),L_Close;
+
+L_Next:
+ mesq l("Ah, Hasan. He's causing trouble again?");
+ next;
+ mes l("She shakes her head.");
+ next;
+ mesq l("This guy has been a plague ever since he could walk. He's always causing trouble.");
+ next;
+ mesq l("And his father... Well, one day his father thought he should teach Hasan a lesson.");
+ next;
+ mesq l("He took him into the desert and then left him there!");
+ next;
+ mes l("Hasan was only seven years old!");
+ next;
+ mesq l("I never understood how someone could do something like that to a child, even if it's a rascal like Hasan.");
+ next;
+ mesq l("Anyway, Hasan tried to find his way back home, but stumbled into a nest of scorpions!");
+ next;
+ mes l("She shakes her head.");
+ mesq l("If Lieutenant Dausen hadn't have come along that moment, Hasan would have died that day.");
+ next;
+ mesq l("However, the scorpions poison caused a bad fever and once Hasan had recovered from that, he was even more malicious than before.");
+ next;
+ mes l("She sighs.");
+ QL_BEGIN = 11;
+ goto L_Close;
+
+L_Close:
+ close;
+}