summaryrefslogtreecommitdiff
path: root/npc/011-1/shops.txt
blob: 754b3782c2176621c926d6c622cf474b630b1b76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// The Mana World Script
// (C) Jesusalva, 2021
// Licensed under GPLv2 or later

011-1,80,33,0	script	Fruit Store	NPC400,{
    shop .name$;
    goodbye;
    close;

OnInit:
    tradertype(NST_ZENY);
    sellitem GreenApple;
    sellitem RedApple;
    sellitem Orange;
    sellitem Tomato;
    .distance = 5;
    end;
}