summaryrefslogtreecommitdiff
path: root/npc/001-2-6
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2015-10-07 00:07:25 +0200
committerReid <reidyaro@gmail.com>2015-10-07 00:08:03 +0200
commitbef86fc890bfbb4d45d0b581d4f8e67c79be069a (patch)
treee26a9855f7b8d8dc9417a949ae041d06d9b7adfd /npc/001-2-6
parentb6bdf656aa6ed2ebbf855a03ec03eabd24179b08 (diff)
downloadserverdata-bef86fc890bfbb4d45d0b581d4f8e67c79be069a.tar.gz
serverdata-bef86fc890bfbb4d45d0b581d4f8e67c79be069a.tar.bz2
serverdata-bef86fc890bfbb4d45d0b581d4f8e67c79be069a.tar.xz
serverdata-bef86fc890bfbb4d45d0b581d4f8e67c79be069a.zip
Add Aesop's "The Piou and The Fluffy" fable into the library.
Diffstat (limited to 'npc/001-2-6')
-rw-r--r--npc/001-2-6/_import.txt1
-rw-r--r--npc/001-2-6/books.txt53
2 files changed, 54 insertions, 0 deletions
diff --git a/npc/001-2-6/_import.txt b/npc/001-2-6/_import.txt
index 314e022f..8659bad5 100644
--- a/npc/001-2-6/_import.txt
+++ b/npc/001-2-6/_import.txt
@@ -1,4 +1,5 @@
// Map 001-2-6: Artis's library second level
npc: npc/001-2-6/mapflags.txt
npc: npc/001-2-6/_warps.txt
+npc: npc/001-2-6/books.txt
npc: npc/001-2-6/dolfina.txt
diff --git a/npc/001-2-6/books.txt b/npc/001-2-6/books.txt
new file mode 100644
index 00000000..db33705b
--- /dev/null
+++ b/npc/001-2-6/books.txt
@@ -0,0 +1,53 @@
+// Evol scripts.
+// Authors:
+// Reid
+// Description:
+// Aemil
+
+001-2-6,39,41,0 script #001-2-6-Book1 NPC_NO_SPRITE,{
+
+ .@book_name$ = "\"" + l("The Piou and The Fluffy") + "\"";
+
+ narrator 4,
+ l("You see a dust covered book on the shelf..."),
+ l("The name of the book is @@.", .@book_name$),
+ l("Do you want to read it?");
+
+ switch (select ("Yes.", "No."))
+ {
+ case 1:
+ goto L_Read;
+ case 2:
+ close;
+ }
+
+L_Read:
+ narrator 1,
+ l("Master Piou sat on a tree,"),
+ l("Holding a cheese in his beak."),
+ l("Master Fluffy was attracted by the odour,"),
+ l("And tried to attract him thus."),
+ l("\"Mister Piou, good day to you."),
+ l("You are a handsome and good looking bird!"),
+ l("In truth, if your song is as beautiful as your plumage,"),
+ l("You are the Phoenix of this forest.\""),
+ l("Hearing these words the Piou felt great joy,"),
+ l("And to demonstrate his beautiful voice,"),
+ l("He opened his mouth wide and let drop his prey."),
+ l("The Fluffy seized it and said: \"My good Sir,"),
+ l("Know that every flatterer,"),
+ l("Lives at the expense of those who take him seriously:"),
+ l("This is a lesson that is worth a cheese no doubt.\""),
+ l("The Piou, embarrassed and confused,"),
+ l("Swore, though somewhat later, that he would never be "),
+ l("tricked thus again."),
+ l("-- Aesop");
+
+ close;
+
+OnInit:
+ .sex = G_OTHER;
+ .distance = 1;
+ end;
+}
+