summaryrefslogtreecommitdiff
path: root/npc/008-1/shop.txt
blob: 28ec24a3d8221582b86c44a392cf327b590b4432 (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
// Evol scripts.
// Authors:
//    4144
//    Micksha
//    Reid
//    toams
// Description:
//    Blossom flower shop.

008-1,201,136,0	trader	#Invisible008-1	NPC_HIDDEN,{

OnInit:
    tradertype(NST_MARKET);

    sellitem ARedRose, -1, 50;
    sellitem AWhiteRose, -1, 50;
    sellitem AYellowRose, -1, 50;
    sellitem ABlueRose, -1, 20;
    sellitem ARedTulip, -1, 50;
    sellitem AWhiteTulip, -1, 50;
    sellitem AYellowTulip, -1, 50;

    .sex = GENDER_FEMALE;
    .distance = 10;
    end;

OnClock0000:
    restoreshopitem ARedRose, 10;
    restoreshopitem AWhiteRose, 10;
    restoreshopitem AYellowRose, 10;
    restoreshopitem ABlueRose, 5;
    restoreshopitem ARedTulip, 10;
    restoreshopitem AWhiteTulip, 10;
    restoreshopitem AYellowTulip, 10;
OnClock0800:
    restoreshopitem ARedRose, 10;
    restoreshopitem AWhiteRose, 10;
    restoreshopitem AYellowRose, 10;
    restoreshopitem ABlueRose, 5;
    restoreshopitem ARedTulip, 10;
    restoreshopitem AWhiteTulip, 10;
    restoreshopitem AYellowTulip, 10;
OnClock1600:
    restoreshopitem ARedRose, 10;
    restoreshopitem AWhiteRose, 10;
    restoreshopitem AYellowRose, 10;
    restoreshopitem ABlueRose, 5;
    restoreshopitem ARedTulip, 10;
    restoreshopitem AWhiteTulip, 10;
    restoreshopitem AYellowTulip, 10;
}