diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-04-07 19:17:15 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-04-07 19:17:15 -0300 |
commit | dfbe7b2056a15f270c335ee846c5083486c67492 (patch) | |
tree | 55be5d5f0f7a137e51bcfc76743576b72e46652d /npc/009-1 | |
parent | c261cb60446de9b3d1d8efdeadc75aeb91aef561 (diff) | |
download | serverdata-dfbe7b2056a15f270c335ee846c5083486c67492.tar.gz serverdata-dfbe7b2056a15f270c335ee846c5083486c67492.tar.bz2 serverdata-dfbe7b2056a15f270c335ee846c5083486c67492.tar.xz serverdata-dfbe7b2056a15f270c335ee846c5083486c67492.zip |
With repricing complete, SharpKnife can be bought at Halinarzo
Diffstat (limited to 'npc/009-1')
-rw-r--r-- | npc/009-1/dangrostra.txt | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/npc/009-1/dangrostra.txt b/npc/009-1/dangrostra.txt index f7350f548..eb200c46b 100644 --- a/npc/009-1/dangrostra.txt +++ b/npc/009-1/dangrostra.txt @@ -36,12 +36,15 @@ OnInit: .distance = 5; tradertype(NST_MARKET); - sellitem Knife, -1, 1; - sellitem Arrow, -1, 100; - sellitem IronArrow, -1, 30; + // Bows (rare) sellitem WoodenBow, -1, 1; sellitem ShortBow, -1, 1; + // Misc (uncommon) + sellitem SharpKnife, -1, 1; sellitem EmptyBottle, -1, 1; // You can buy some empty bottles here, but they're scarse + // Arrows (common) + sellitem Arrow, -1, 100; + sellitem IronArrow, -1, 30; end; @@ -51,10 +54,10 @@ OnClock1200: restoreshopitem WoodenBow, -1, 1; OnClock0400: OnClock1600: - restoreshopitem Knife, -1, 1; + restoreshopitem SharpKnife, -1, 1; restoreshopitem EmptyBottle, -1, 1; OnClock0800: -OnClock2100: +OnClock2000: restoreshopitem Arrow, -1, 100; restoreshopitem IronArrow, -1, 30; |