diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-01-27 19:58:57 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-01-27 19:58:57 -0300 |
commit | d391148465b5323c614ae704d2fdab0333608803 (patch) | |
tree | 0eb647a3bae612cc4b4efc58de6f9f22dc83d63b /npc/017-1 | |
parent | 3e065b88bd2575ff9e8a0fd05939c7de62fabe38 (diff) | |
download | serverdata-d391148465b5323c614ae704d2fdab0333608803.tar.gz serverdata-d391148465b5323c614ae704d2fdab0333608803.tar.bz2 serverdata-d391148465b5323c614ae704d2fdab0333608803.tar.xz serverdata-d391148465b5323c614ae704d2fdab0333608803.zip |
Allow Bar Jobs to very rarely sell Jasmine Tea as well.
Yerba Mate's rarity shall be preserved.
Diffstat (limited to 'npc/017-1')
-rw-r--r-- | npc/017-1/shops.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/017-1/shops.txt b/npc/017-1/shops.txt index 6feed7e13..16f99b65c 100644 --- a/npc/017-1/shops.txt +++ b/npc/017-1/shops.txt @@ -28,7 +28,7 @@ OnInit: sellitem ArrowAmmoBox, -1, 5; sellitem Bullet, -1, 2000; if (!rand2(4)) - sellitem OolongTea, 350, rand2(1,3); + sellitem OolongTea, getiteminfo(OolongTea, ITEMINFO_BUYPRICE)*15/10, rand2(1,3); end; OnClock1250: @@ -39,7 +39,7 @@ OnClock0112: restoreshopitem ArrowAmmoBox, -1, 5; restoreshopitem Bullet, -1, 2000; if (!rand2(4)) - restoreshopitem OolongTea, 350, rand2(1,3); + restoreshopitem OolongTea, getiteminfo(OolongTea, ITEMINFO_BUYPRICE)*15/10, rand2(1,3); end; } |