summaryrefslogtreecommitdiff
path: root/npc/020-2/shops.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/020-2/shops.txt')
-rw-r--r--npc/020-2/shops.txt57
1 files changed, 57 insertions, 0 deletions
diff --git a/npc/020-2/shops.txt b/npc/020-2/shops.txt
new file mode 100644
index 00000000..b7dc3ec7
--- /dev/null
+++ b/npc/020-2/shops.txt
@@ -0,0 +1,57 @@
+
+020-2,85,28,0 script Taylor NPC137,{
+ mes "[Taylor]";
+ mes "\"While it can be dangerous up here in Kaizei, I take comfort that Nivalis is not surrounded by the Yeti like Thermin is. What a weird town.\"";
+ next;
+ mes "\"Around Christmas time, this place gets crazy, but most of the time Nivalis serves as a hub for adventurers and tourists that come to Kaizei.\"";
+ next;
+ mes "\"There caves around here can prove to be dangerous, be careful around here and bring friends if you should go into them..otherwise, it might spell your end.\"";
+ next;
+ mes "\"Well, pleasant journeys and I hope I haven't been too much of a bother. Good chatting with you.\"";
+ close;
+}
+020-2,35,65,0 script Bracco NPC135,{
+ shop .name$;
+ goodbye;
+ close;
+
+OnInit:
+ tradertype(NST_ZENY);
+ sellitem IronArrow;
+ sellitem ShortBow;
+ sellitem Dagger;
+ sellitem LeatherShield;
+ .distance = 5;
+ end;
+}
+
+020-2,85,24,0 script Mede NPC103,{
+ shop .name$;
+ goodbye;
+ close;
+
+OnInit:
+ tradertype(NST_ZENY);
+ sellitem CactusDrink;
+ sellitem CactusPotion;
+ sellitem IronPotion;
+ sellitem ConcentrationPotion;
+ sellitem SmallManaElixir, 120;
+ sellitem MediumManaElixir, 240;
+ sellitem LargeManaElixir, 480;
+ .distance = 5;
+ end;
+}
+
+020-2,137,23,0 script Kane NPC120,{
+ @npcname$ = "Kane the Inn Keeper";
+ @Cost = 100;
+
+ mes "[" + @npcname$ + "]";
+ mes "\"Welcome stranger!\"";
+ mes "\"What? You've already seen an INN like mine?\"";
+ mes "\"That's impossible!\"";
+ next;
+ callfunc "Inn";
+ close;
+}