diff options
author | Reid <reidyaro@gmail.com> | 2016-01-17 05:45:34 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2016-01-17 05:45:34 +0100 |
commit | 7da893a74dc9979e8884f9512a08aa67bb36352c (patch) | |
tree | b5128fb6005626f24aed701bc598259914b0f3ae | |
parent | 5ab0ca6d135d4a35cb8789930dc3473690618c6d (diff) | |
download | serverdata-7da893a74dc9979e8884f9512a08aa67bb36352c.tar.gz serverdata-7da893a74dc9979e8884f9512a08aa67bb36352c.tar.bz2 serverdata-7da893a74dc9979e8884f9512a08aa67bb36352c.tar.xz serverdata-7da893a74dc9979e8884f9512a08aa67bb36352c.zip |
Add Sea Store.
-rw-r--r-- | npc/001-1/shop.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/npc/001-1/shop.txt b/npc/001-1/shop.txt index ad0a8508..632e22dc 100644 --- a/npc/001-1/shop.txt +++ b/npc/001-1/shop.txt @@ -107,3 +107,32 @@ OnClock0800: OnClock1600: restoreshopitem Aquada, 20; } + +001-1,72,126,0 trader Store#SeaStore001-1 NPC_NO_SPRITE,{ + +OnInit: + tradertype(NST_MARKET); + + sellitem Aquada, -1, 10; + sellitem UrchinMeat, -1, 20; + sellitem SmallTentacles, -1, 30; + sellitem Tentacles, -1, 15; + + .sex = G_OTHER; + .distance = 4; + end; + +OnClock0000: + restoreshopitem Aquada, 3; + restoreshopitem UrchinMeat, 12; + restoreshopitem SmallTentacles, 4; +OnClock0800: + restoreshopitem Aquada, 6; + restoreshopitem UrchinMeat, 8; + restoreshopitem Tentacles, 8; + restoreshopitem SmallTentacles, 2; +OnClock1600: + restoreshopitem Aquada, 5; + restoreshopitem UrchinMeat, 10; + restoreshopitem SmallTentacles, 7; +} |