summaryrefslogtreecommitdiff
path: root/npc/025-1/yuko.txt
blob: 0fa7449ec6c24bc7976c442acd5b652ae933b37c (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
// TMW2 Script
// Author:
//    Jesusalva
// Yuko Cuf is YuckFou

025-1,143,59,0	script	Yuko	NPC_PLAYER,{
    mesn;
    mesq l("Cuf! Cuf!"); // --TRANSLATORS: NOT A TYPO
    next;
    mesn;
    mesq l("Can I help you somehow today?");
    next;
    closeclientdialog;
    shop .name$;
    goodbye;
    close;

OnInit:
    .@npcId = getnpcid(.name$);
    setunitdata(.@npcId, UDT_HEADTOP, FancyHat);
    setunitdata(.@npcId, UDT_HEADMIDDLE, SailorShirt);
    setunitdata(.@npcId, UDT_HEADBOTTOM, BromenalPants);
    setunitdata(.@npcId, UDT_WEAPON, LousyMoccasins); // Boots
    setunitdata(.@npcId, UDT_HAIRSTYLE, 7);
    setunitdata(.@npcId, UDT_HAIRCOLOR, 17);

    .sex = G_MALE;
    .distance = 4;

    tradertype(NST_MARKET);
    sellitem HomunResetPotion,   -1,  5;
    sellitem PurificationPotion, -1, 20;
    sellitem AtroposMixture,     -1, 50;
    sellitem ThornAmmoBox,       -1,  5;
    sellitem PoisonAmmoBox,      -1, 10;
    sellitem CursedAmmoBox,      -1, 15;
    sellitem PileOfAsh,         800, 25;
    end;

OnClock1149:
OnClock2359:
    restoreshopitem HomunResetPotion, 5;
    restoreshopitem PurificationPotion, 20;
    restoreshopitem AtroposMixture, 50;
    restoreshopitem ThornAmmoBox,   5;
    restoreshopitem PoisonAmmoBox, 10;
    restoreshopitem CursedAmmoBox, 15;
    restoreshopitem PileOfAsh, 800, 25;
    end;
}