summaryrefslogtreecommitdiff
path: root/npc/001-2-0/shop.txt
blob: eccc812c4c6a139291009a3ae0aa5471ba2124d1 (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
// Evol scripts.
// Authors:
//    4144
//    Reid
// Description:
//    Light armor shop.

001-2-0,37,29,0	trader	Store#001-2-0	NPC_NO_SPRITE,{
// The ArtisTankTop should be store at x: 39 or 40, y: 31.
// 38,35 is server's location of where client displays a black torso gear on display. (using @where for server).
// 35,27 is some shelves and a cabinet at 4 tiles from where player select it.
// 39,27 is where to put store that sells only fabric. (the cloth shelf).
OnInit:
    tradertype(NST_MARKET);

    sellitem ArtisTankTop, -1, 50;
    sellitem VneckJumper, -1, 30;
    sellitem BrownTrousers, -1, 30;
    sellitem BrimmedHat, -1, 35;

    .distance = 2;
    end;

OnClock0000:
    restoreshopitem ArtisTankTop, 30;
    restoreshopitem VneckJumper, 12;
    restoreshopitem BrownTrousers, 15;
    restoreshopitem BrimmedHat, 10;
OnClock1200:
    restoreshopitem ArtisTankTop, 25;
    restoreshopitem VneckJumper, 10;
    restoreshopitem BrownTrousers, 10;
    restoreshopitem BrimmedHat, 20;
}