summaryrefslogtreecommitdiff
path: root/npc/020-2-28/pauline.txt
blob: 72b479599dd7943d1bcd37bdd137fde0fa45aba5 (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
// Evol scripts.
// Author:
//    Micksha
// Description:
//    Pauline, the War Mage.
// THIS IS A PLACEHOLDER!

020-2-28,36,20,0	script	Pauline	NPC_PAULINE,{
    speech
        l("Hi!"),
        l("Should I tell you the secret of a good fight?"),
        l("CONFRONT AND DESTROY!! (Don't tell your parents I said that.");
    select
        l("You're weird, I have to go sorry."),
        l("I can't do that, I keep getting killed.");
    mes "";
    if (@menu == 1)
        close;
    mesn;
    mesq l("Oh no! Well, I never said to confront alone. Did you try going with friends?");
    next;
    if (askyesno() == ASK_NO) {
        mesn;
        mesq l("Then you should do that. It is always more fun with friends.");
        close;
    }
    mesn;
    mesq l("Ah... Then maybe you should summon a monster to your aid, or hire a mercenary.");
    next;
    mesn;
    mesq l("Hold tight. Hire a mercenary? That was not in the script. Please call Jesusalva ASAP.");
    close;

OnInit:
    .distance = 4;
    end;
}