From bef86fc890bfbb4d45d0b581d4f8e67c79be069a Mon Sep 17 00:00:00 2001 From: Reid Date: Wed, 7 Oct 2015 00:07:25 +0200 Subject: Add Aesop's "The Piou and The Fluffy" fable into the library. --- npc/001-2-6/_import.txt | 1 + npc/001-2-6/books.txt | 53 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 npc/001-2-6/books.txt (limited to 'npc') 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; +} + -- cgit v1.2.3-70-g09d2