summaryrefslogtreecommitdiff
path: root/npc/029-2
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-04-10 11:45:37 -0300
committerJesusaves <cpntb1@ymail.com>2021-04-10 11:45:37 -0300
commit7679e5994642ef019d850b92ee74e564fefd2e57 (patch)
tree8b97ec3c2581908837ea039979fe6f6b3181c17f /npc/029-2
parentf810899c0006e86f46c3e0122ea5b9ec5ea7dfd8 (diff)
downloadserverdata-7679e5994642ef019d850b92ee74e564fefd2e57.tar.gz
serverdata-7679e5994642ef019d850b92ee74e564fefd2e57.tar.bz2
serverdata-7679e5994642ef019d850b92ee74e564fefd2e57.tar.xz
serverdata-7679e5994642ef019d850b92ee74e564fefd2e57.zip
Cleanup all shops. This makes CI passable! (At least in a real environment)
Diffstat (limited to 'npc/029-2')
-rw-r--r--npc/029-2/morgan.txt15
-rw-r--r--npc/029-2/two_arms.txt33
2 files changed, 45 insertions, 3 deletions
diff --git a/npc/029-2/morgan.txt b/npc/029-2/morgan.txt
index 5c12dfc3..bd45df7e 100644
--- a/npc/029-2/morgan.txt
+++ b/npc/029-2/morgan.txt
@@ -110,4 +110,17 @@ L_close:
close;
}
-029-2,113,59,0 shop Zitoni NPC103,501:25,502:35,825:50,826:100
+029-2,113,59,0 script Zitoni NPC103,{
+ shop .name$;
+ goodbye;
+ close;
+
+OnInit:
+ tradertype(NST_ZENY);
+ sellitem CactusDrink;
+ sellitem CactusPotion;
+ sellitem TinyManaElixir, 50;
+ sellitem SmallManaElixir, 100;
+ .distance = 5;
+ end;
+}
diff --git a/npc/029-2/two_arms.txt b/npc/029-2/two_arms.txt
index 48dec1cb..f01cf644 100644
--- a/npc/029-2/two_arms.txt
+++ b/npc/029-2/two_arms.txt
@@ -1,3 +1,32 @@
-029-2,99,25,0 shop Rosen NPC311,903:50,904:0,530:8000,1199:2,529:2
-029-2,112,24,0 shop Toichi NPC377,1201:25,522:50,521:500,523:1000,603:1000
+029-2,99,25,0 script Rosen NPC311,{
+ shop .name$;
+ goodbye;
+ close;
+
+OnInit:
+ tradertype(NST_ZENY);
+ sellitem SlingShot;
+ sellitem SlingBullet;
+ sellitem ShortBow;
+ sellitem Arrow, 2;
+ sellitem IronArrow;
+ .distance = 5;
+ end;
+}
+
+029-2,112,24,0 script Toichi NPC377,{
+ shop .name$;
+ goodbye;
+ close;
+
+OnInit:
+ tradertype(NST_ZENY);
+ sellitem Knife;
+ sellitem SharpKnife;
+ sellitem Dagger;
+ sellitem LeatherShirt;
+ sellitem LeatherShield;
+ .distance = 5;
+ end;
+}