summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2015-10-07 08:48:38 +0200
committerReid <reidyaro@gmail.com>2015-10-07 08:48:38 +0200
commit77b5559372875ef7f7ff7c505c2c1b5aee2eef50 (patch)
tree31f29d3de45407c04a8c95cb303ad56128fb401d
parent7ca0a7b2e39b49a5b5d3e34723520179b73bbe6d (diff)
downloadserverdata-77b5559372875ef7f7ff7c505c2c1b5aee2eef50.tar.gz
serverdata-77b5559372875ef7f7ff7c505c2c1b5aee2eef50.tar.bz2
serverdata-77b5559372875ef7f7ff7c505c2c1b5aee2eef50.tar.xz
serverdata-77b5559372875ef7f7ff7c505c2c1b5aee2eef50.zip
Add "Chorus of the Woods" by Princess Slayer.
-rw-r--r--npc/001-2-6/books.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/npc/001-2-6/books.txt b/npc/001-2-6/books.txt
index 230a3a62..11da0781 100644
--- a/npc/001-2-6/books.txt
+++ b/npc/001-2-6/books.txt
@@ -108,3 +108,37 @@ OnInit:
end;
}
+001-2-6,43,39,0 script #001-2-6-Book3 NPC_NO_SPRITE,{
+
+ .@book_name$ = "\"" + l("Chorus of the Woods") + "\"";
+
+ 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("Hush now and hear the chorus of the woods"),
+ l("Bent trees whistling with the beat of the drum"),
+ l("With no choir master nor voice to be sung"),
+ l("The music of the trees floats through the breeze"),
+ l("Sleep well my angel but don't follow along"),
+ l("Because the voices of death sing a sweet song"),
+ l("-- Princess Slayer");
+
+ close;
+
+OnInit:
+ .sex = G_OTHER;
+ .distance = 1;
+ end;
+}