summaryrefslogtreecommitdiff
path: root/npc/020-1/bodyguard.txt
blob: 4b60c5b6d59c9e92678efc739f5489187716a2e0 (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
// Evol scripts.
// Author:
//    Micksha
// Description:
//    Bodyguard protecting Micksha's chilling place in oasis.

020-1,292,245,0	script	Bodyguard	NPC_RAIJIN_FEMALE_LEGION_ARTIS,{
    speech
        l("Hey, you!"),
        l("Do not dare sitting on this bench. This is Micksha's place to relax. You better are gone when he arrives."),
        l("He has to listen to much drama, so he wants to rest here, alone, in silence. Got it?");
    next;
    select
        l("Got it."),
        l("And what if I sit?"),
        l("Who's Micksha?"),
        l("What's the story of this place, anyway?");
    mes "";
    mesn;
    switch (@menu) {
    case 2:
        mesq l("Well, if he sees you, a giant foot will descend from the heavens upon you... Or so I've heard.");
        next;
        mesn;
        mesc l("*shivers*");
        mesq l("I would be afraid if I were you!");
        next;
        mesn;
        break;
    case 3:
        mesq l("A popular designer and inventor. A lot of buildings follow their architectonic drawings.");
        next;
        mesn;
        mesq l("You would be amazed at how much engineers and politicians oppose to his architecture, though!");
        next;
        mesn;
        break;
    case 4:
        mesq l("Once upon a long time, a local nobleman crushed a gold ingot in this lake. Instead of dust, it became water and then, this pond came to be.");
        next;
        mesn;
        mesq l("It is only a myth, don't expect it to make a lot of sense.");
        next;
        mesn;
        break;
    }
    mesq l("Now, get moving.");
    close;

OnInit:
    .bodytype = BODYTYPE_2;
    .distance = 4;
    end;
}