diff options
author | Reid <reidyaro@gmail.com> | 2015-10-07 00:07:25 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2015-10-07 00:08:03 +0200 |
commit | bef86fc890bfbb4d45d0b581d4f8e67c79be069a (patch) | |
tree | e26a9855f7b8d8dc9417a949ae041d06d9b7adfd /npc/001-2-6/books.txt | |
parent | b6bdf656aa6ed2ebbf855a03ec03eabd24179b08 (diff) | |
download | serverdata-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/books.txt')
-rw-r--r-- | npc/001-2-6/books.txt | 53 |
1 files changed, 53 insertions, 0 deletions
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; +} + |