summaryrefslogtreecommitdiff
path: root/npc/001-2-6/books.txt
blob: ad3f7ca380f11148b4636a33382e7e3c1e775ab9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// 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") + "\"";

    if (openbook ())
    {
        mes "";
        mes col("Master Piou sat on a tree,", 9);
        mes col("Holding a cheese in his beak.", 9);
        mes col("Master Fluffy was attracted by the odour,", 9);
        mes col("And tried to attract him thus.", 9);
        next;
        mes col("\"Mister Piou, good day to you.", 9);
        mes col("You are a handsome and good looking bird!", 9);
        mes col("In truth, if your song is as beautiful as your plumage,", 9);
        mes col("You are the Phoenix of this forest.\"", 9);
        next;
        mes col("Hearing these words the Piou felt great joy,", 9);
        mes col("And to demonstrate his beautiful voice,", 9);
        mes col("He opened his mouth wide and let drop his prey.", 9);
        mes col("The Fluffy seized it and said:", 9);
        next;
        mes col("\"My good Sir,", 9);
        mes col("Know that every flatterer,", 9);
        mes col("Lives at the expense of those who take him seriously:", 9);
        mes col("This is a lesson that is worth a cheese no doubt.\"", 9);
        next;
        mes col("The Piou, embarrassed and confused,", 9);
        mes col("Swore, though somewhat later, that he would never be ", 9);
        mes col("tricked thus again.", 9);
        next;
        mes col("-- " + l("Aesop"), 9);
    }

    close;

OnInit:
    .sex = G_OTHER;
    .distance = 1;
    end;
}

001-2-6,48,41,0	script	#001-2-6-Book2	NPC_NO_SPRITE,{

    @book_name$ = "\"" + l("Poem about Poems") + "\"";

    if (openbook ())
    {
        mes "";
        mes col("Poem is making the words dance", 9);
        mes col("Words become music and glance", 9);
        mes col("Over lovers under a starry night", 9);
        mes col("Whose eyes listen under Moonlight", 9);
        next;
        mes col("No matter the grammar", 9);
        mes col("If words beat in rhythm", 9);
        mes col("Find an order with them", 9);
        mes col("As on anvil strikes the hammer", 9);
        next;
        mes col("No matter the spelling", 9);
        mes col("Just say something sparkling", 9);
        mes col("If not, how could CrazyKatiektch", 9);
        mes col("Say her love to glamourous Gliktch?", 9);
        next;
        mes col("True be or not true be", 9);
        mes col("That's not the question", 9);
        mes col("And rhyming is not too", 9);
        mes col("If you don't like to", 9);
        mes col("Share your mind is your mission", 9);
        mes col("Whatever inside can be", 9);
        next;
        mes col("Don't be shy, you are nice", 9);
        mes col("From your mind, break the ice", 9);
        mes col("Whatever your idea", 9);
        mes col("It's the good one and, ahem!", 9);
        mes col("That makes everybody", 9);
        mes col("Able to write a poem", 9);
        next;
        mes col("-- " + l("Nard"), 9);
    }

    close;

OnInit:
    .sex = G_OTHER;
    .distance = 1;
    end;
}

001-2-6,43,39,0	script	#001-2-6-Book3	NPC_NO_SPRITE,{

    @book_name$ = "\"" + l("Chorus of the Woods") + "\"";

    if (openbook ())
    {
        mes "";
        mes col("Hush now and hear the chorus of the woods", 9);
        mes col("Bent trees whistling with the beat of the drum", 9);
        mes col("With no choir master nor voice to be sung", 9);
        mes col("The music of the trees floats through the breeze", 9);
        mes col("Sleep well my angel but don't follow along", 9);
        mes col("Because the voices of death sing a sweet song", 9);
        next;
        mes col("-- " + l("Princess Slayer"), 9);
    }

    close;

OnInit:
    .sex = G_OTHER;
    .distance = 1;
    end;
}