summaryrefslogtreecommitdiff
path: root/npc/008-2-7/wyara.txt
blob: 7bac6efc04eaf12f90c051b97c713d431034faf8 (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
// The Mana World scripts.
// Author:
//    Micksha
// Description:
//    Wyara the witch.
// TODO: Buy or make plushroom potions

008-2-7,27,28,0	script	Wyara	NPC_DARK_DRUID,{
    speech
        l("What? Is there someone?"),
        l("Please, leave me alone. I have to pixel- erm, brew potions."),
        l("I will sell some when you return a bit later."),
        l("Unless you are interested in a status reset?");
    next;
    select
        l("I'm fine, thanks."),
        l("I actually could use a status reset!");
    mes "";
    switch (@menu) {
        case 2:
            ConfirmStatusReset();
            break;
    }
    close;

OnInit:
    .distance = 4;
    end;
}