diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-02-18 22:28:47 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-02-18 22:28:47 -0300 |
commit | 4ab001372861571799b3a5ccc67d2589af317cf2 (patch) | |
tree | 59f34dbbbf30b40bf3c5874ce7bb636e226544a9 | |
parent | 3f222d50f71180ce17c717ebeb4ff240d2359072 (diff) | |
download | serverdata-4ab001372861571799b3a5ccc67d2589af317cf2.tar.gz serverdata-4ab001372861571799b3a5ccc67d2589af317cf2.tar.bz2 serverdata-4ab001372861571799b3a5ccc67d2589af317cf2.tar.xz serverdata-4ab001372861571799b3a5ccc67d2589af317cf2.zip |
Sell arrows and pile of ash at Yuko. Shop should now be fully supplied.
-rw-r--r-- | npc/025-1/yuko.txt | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/npc/025-1/yuko.txt b/npc/025-1/yuko.txt index 81deb2be9..0fa7449ec 100644 --- a/npc/025-1/yuko.txt +++ b/npc/025-1/yuko.txt @@ -28,9 +28,13 @@ OnInit: .distance = 4; tradertype(NST_MARKET); - sellitem HomunResetPotion, -1, 5; + sellitem HomunResetPotion, -1, 5; sellitem PurificationPotion, -1, 20; - sellitem AtroposMixture, -1, 50; + sellitem AtroposMixture, -1, 50; + sellitem ThornAmmoBox, -1, 5; + sellitem PoisonAmmoBox, -1, 10; + sellitem CursedAmmoBox, -1, 15; + sellitem PileOfAsh, 800, 25; end; OnClock1149: @@ -38,6 +42,10 @@ OnClock2359: restoreshopitem HomunResetPotion, 5; restoreshopitem PurificationPotion, 20; restoreshopitem AtroposMixture, 50; + restoreshopitem ThornAmmoBox, 5; + restoreshopitem PoisonAmmoBox, 10; + restoreshopitem CursedAmmoBox, 15; + restoreshopitem PileOfAsh, 800, 25; end; } |