summaryrefslogtreecommitdiff
path: root/npc/001-1/north_shops.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/001-1/north_shops.txt')
-rw-r--r--npc/001-1/north_shops.txt43
1 files changed, 43 insertions, 0 deletions
diff --git a/npc/001-1/north_shops.txt b/npc/001-1/north_shops.txt
new file mode 100644
index 00000000..36d7df47
--- /dev/null
+++ b/npc/001-1/north_shops.txt
@@ -0,0 +1,43 @@
+// The Mana World Script
+// (C) Jesusalva, 2021
+// Licensed under GPLv2 or later
+
+001-1,106,105,0 script Neko NPC101,{
+ shop .name$;
+ goodbye;
+ close;
+
+OnInit:
+ tradertype(NST_ZENY);
+ sellitem TonoriDelight;
+ sellitem CactusDrink;
+ sellitem CactusPotion;
+ sellitem RoastedMaggot;
+ sellitem Beer;
+ sellitem ChickenLeg;
+ .distance = 5;
+ end;
+}
+
+001-1,111,108,0 script Inar NPC108,{
+ shop .name$;
+ goodbye;
+ close;
+
+OnInit:
+ tradertype(NST_ZENY);
+ sellitem CottonShirt;
+ sellitem SerfHat;
+ sellitem CottonShorts;
+ sellitem CottonBoots;
+ sellitem DesertShirt;
+ sellitem CottonHeadband;
+ sellitem DesertHat;
+ .distance = 5;
+ end;
+}
+
+001-1,48,79,0 script Well NPC400,{
+ callfunc "WaterBottle";
+ end;
+}