summaryrefslogtreecommitdiff
path: root/world/map/npc/001-1/children.txt
blob: 91aa2e1facac7abd35e017126d398e0b8e8a1865 (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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
// Aisha and Nina

001-1.gat,95,29,0|script|Aisha|108,{
    set @TEMP,rand(9);
    if(@TEMP == 0) goto L_1;
    if(@TEMP == 1) goto L_1;
    if(@TEMP == 2) goto L_2;
    if(@TEMP == 3) goto L_3;
    if(@TEMP == 4) goto L_4;
    if(@TEMP == 5) goto L_5;
    if(@TEMP == 6) goto L_6;
    if(@TEMP == 7) goto L_7;
    if(@TEMP == 8) goto L_8;

L_1:
    mes "[Aisha]";
    mes "\"Maggots are soo slimey!\"";
    goto L_Close;

L_2:
    mes "[Aisha]";
    mes "\"Want to play ball with me?\"";
    goto L_Close;

L_3:
    mes "[Aisha]";
    mes "\"There are so many monsters; I hate scorpions!\"";
    goto L_Close;

L_4:
    mes "[Aisha]";
    mes "\"When I grow up, I want to be strong enough to kill a scorpion!\"";
    goto L_Close;

L_5:
    mes "[Aisha]";
    mes "\"Mommy told me that you can sell the things that monsters drop.\"";
    goto L_Close;

L_6:
    mes "[Aisha]";
    mes "\"Have you tried to eat a roasted maggot?  They are sooo yummy!  And you feel much healthier afterwards, too!\"";
    goto L_Close;

L_7:
    mes "[Aisha]";
    mes "\"I want to be a Doctor when I grow up!\"";
    goto L_Close;

L_8:
    mes "[Aisha]";
    mes "\"That volcano was sooo scary!  The earth was shaking and everything was breaking down... but now they have rebuilt everything.\"";
    goto L_Close;

L_Close:
    set @TEMP, 0;
    close;
}

001-1.gat,39,67,0|script|Nina|103,{
    mes "[Nina]";
    set @TEMP,rand(10);
    if(@TEMP == 0) goto L_1;
    if(@TEMP == 1) goto L_1;
    if(@TEMP == 2) goto L_2;
    if(@TEMP == 3) goto L_3;
    if(@TEMP == 4) goto L_4;
    if(@TEMP == 5) goto L_5;
    if(@TEMP == 6) goto L_6;
    if(@TEMP == 7) goto L_7;
    if(@TEMP == 8) goto L_8;
    goto L_9;

L_1:
    mes "\"If I learned anything from school, Grenxen founded Tulimshar.\"";
    goto L_Close;

L_2:
    mes "\"When I was picking rocks from the field, I saw a red scorpion.\"";
    goto L_Close;

L_3:
    mes "\"Its polite to state your name before talking to anyone.\"";
    goto L_Close;

L_4:
    mes "\"I have a Scorpion Doll!\"";
    goto L_Close;

L_5:
    mes "\"I always take some spare Cactus Juice with me on the field.  They are heavy, though.\"";
    goto L_Close;

L_6:
    mes "\"When you are feeling bad, eating something can usually help you heal faster.\"";
    goto L_Close;

L_7:
    mes "\"Grenxen is the Demon that founded Tulimshar.\"";
    goto L_Close;

L_8:
    mes "\"That volcano eruption was scary; much of Tulimshar was destroyed.  But the mayor had everything rebuilt quickly.\"";
    goto L_Close;

L_9:
    mes "\"I know a very bad word.  But I must not say it, because monsters will come and get me if I do!\"";
    next;
    menu
        "A bad word?", L_tell,
        "Oh, you better keep it for yourself then.", -;
    goto L_Close;

L_tell:
    mes "[Nina]";
    mes "\"Yes, I heard my mother say it once.  And she made me promise her to never say it.  Never.\"";
    next;
    menu
        "If I promise to never tell anyone, can you tell me the word?", L_keepword,
        "I understand, you do not need to tell me...", L_giveword,
        "Goodbye!", -;
    goto L_Close;

L_keepword:
    mes "[Nina]";
    mes "\"No.\"";
    goto L_Close;

L_giveword:
    mes "[Nina]";
    mes "Nina looks around as she hushes you to silence.  After a few seconds, she whispers to you.";
    mes "\"I like you!  So I will tell you the bad word.  But you can't tell anyone else about it!  The bad word is '" + getspellinvocation("aggravate") + "'.\"";
    next;

    mes "[Nina]";
    mes "Terrified, she looks around once more.";
    mes "\"But you mustn't tell anyone!\"";
    goto L_Close;

L_Close:
    set @TEMP, 0;
    close;
}