summaryrefslogtreecommitdiff
path: root/npc/009-2/shops.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/009-2/shops.txt')
-rw-r--r--npc/009-2/shops.txt75
1 files changed, 75 insertions, 0 deletions
diff --git a/npc/009-2/shops.txt b/npc/009-2/shops.txt
new file mode 100644
index 00000000..5269ab9b
--- /dev/null
+++ b/npc/009-2/shops.txt
@@ -0,0 +1,75 @@
+// The Mana World Script
+// (C) Jesusalva, 2021
+// Licensed under GPLv2 or later
+
+009-2,65,49,0 script Barkeeper NPC112,{
+ shop .name$;
+ goodbye;
+ close;
+
+OnInit:
+ tradertype(NST_ZENY);
+ sellitem Beer;
+ sellitem Cake;
+ sellitem Steak;
+ .distance = 5;
+ end;
+}
+
+009-2,97,24,0 script Donald NPC120,{
+ shop .name$;
+ goodbye;
+ close;
+
+OnInit:
+ tradertype(NST_ZENY);
+ sellitem SlingBullet;
+ sellitem Arrow, 2;
+ sellitem IronArrow;
+ sellitem Bow;
+ sellitem ShortBow, 4000;
+ .distance = 5;
+ end;
+}
+
+009-2,123,22,0 script Potions#_M NPC400,{
+ shop .name$;
+ goodbye;
+ close;
+
+OnInit:
+ tradertype(NST_ZENY);
+ sellitem CactusDrink;
+ sellitem CactusPotion;
+ sellitem IronPotion;
+ sellitem ConcentrationPotion;
+ sellitem SlowPoisonPotion;
+ .distance = 5;
+ end;
+}
+
+009-2,32,99,0 script General Store#hurnscald NPC112,{
+ shop .name$;
+ goodbye;
+ close;
+
+OnInit:
+ tradertype(NST_ZENY);
+ sellitem Milk;
+ sellitem BottleOfWater;
+ sellitem CottonShirt;
+ sellitem CottonShorts;
+ sellitem Boots;
+ sellitem SerfHat;
+ sellitem CottonHeadband;
+ sellitem CottonGloves;
+ .distance = 5;
+ end;
+}
+
+009-2,50,48,0 script Receptionist#inn NPC108,{
+ @npcname$ = "Receptionist";
+ @Cost = 100;
+ callfunc "Inn";
+ end;
+}