diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-04-26 22:35:25 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-04-26 22:35:25 -0300 |
commit | 5a32bbb714bf40f4dc06bb1839dd8b658f194acd (patch) | |
tree | c5be5269f737364059c967fb8c186065bf402dfb /npc/functions | |
parent | ebf2cb41e9ec4b60bacc988b827a8b074a88c55f (diff) | |
download | serverdata-5a32bbb714bf40f4dc06bb1839dd8b658f194acd.tar.gz serverdata-5a32bbb714bf40f4dc06bb1839dd8b658f194acd.tar.bz2 serverdata-5a32bbb714bf40f4dc06bb1839dd8b658f194acd.tar.xz serverdata-5a32bbb714bf40f4dc06bb1839dd8b658f194acd.zip |
Treasure - Make Strange Coin more frequent, add Beer
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/treasure.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/treasure.txt b/npc/functions/treasure.txt index 4955e0087..16c3d3502 100644 --- a/npc/functions/treasure.txt +++ b/npc/functions/treasure.txt @@ -41,9 +41,9 @@ function script TreasureBox { else if (.@r < 1000 || .@t == 0) .@loot=any(MoubooSteak, ClothoLiquor, Coal, SmallMushroom, HastePotion, StrengthPotion, Dagger, StrangeCoin, IronOre, CopperOre); else if (.@r < 4000) - .@loot=any(Croconut, Potatoz, MoubooSteak, ClothoLiquor, Coal, SmallMushroom, HastePotion, StrengthPotion, StrangeCoin); + .@loot=any(Croconut, Potatoz, MoubooSteak, ClothoLiquor, Coal, SmallMushroom, HastePotion, StrengthPotion, Beer); else - .@loot=any(FatesPotion, ChocolateBar, Plushroom, Chagashroom, RawLog, LeatherPatch, BugLeg, ScorpionStinger, SmallKnife); + .@loot=any(FatesPotion, ChocolateBar, Plushroom, Chagashroom, RawLog, LeatherPatch, BugLeg, ScorpionStinger, SmallKnife, StrangeCoin); inventoryplace .@loot, 1; |