diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-01-26 15:15:23 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-01-26 15:15:23 -0200 |
commit | 2837174f65d7ab1a749d3ac3ac9d4f8fd88fe4cc (patch) | |
tree | c130aeab661cd0be1dbd997e5e71f474a7714b88 | |
parent | 676c1219f5c48e29c8149912344e08530c8c56a8 (diff) | |
download | serverdata-2837174f65d7ab1a749d3ac3ac9d4f8fd88fe4cc.tar.gz serverdata-2837174f65d7ab1a749d3ac3ac9d4f8fd88fe4cc.tar.bz2 serverdata-2837174f65d7ab1a749d3ac3ac9d4f8fd88fe4cc.tar.xz serverdata-2837174f65d7ab1a749d3ac3ac9d4f8fd88fe4cc.zip |
Chests can be kinda hard to see, uhm? Anyway, minor adjustments to chest treasure
-rw-r--r-- | npc/007-1/treasure.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/007-1/treasure.txt b/npc/007-1/treasure.txt index ef615c5d4..0f8397651 100644 --- a/npc/007-1/treasure.txt +++ b/npc/007-1/treasure.txt @@ -51,9 +51,9 @@ OnInit: // You're warranted a super rare (1%) every 50 open chests // There's also rares (10%), uncommons (40%) and commons (60%) if (.@t % 99 == 0 || .@r < 10) - .@loot=any(AtroposMixture, GoldenApple, DivineApple, MercBoxA, PirateShorts, SilverGift, Shemagh, FluoPowder, IridiumOre, PlatinumOre); + .@loot=any(AtroposMixture, GoldenApple, DivineApple, MercBoxA, SilverGift, Shemagh, EverburnPowder, IridiumOre, PlatinumOre); else if (.@t % 50 == 0 || .@r < 100) - .@loot=any(Grenade, SnakeEgg, LachesisBrew, ArrowAmmoBox, Coal, CoinBag, BronzeGift, TerraniteOre, LeadOre, TinOre, SilverOre, GoldOre, TitaniumOre, EverburnPowder); + .@loot=any(Grenade, SnakeEgg, LachesisBrew, ArrowAmmoBox, CoinBag, BronzeGift, TerraniteOre, LeadOre, TinOre, SilverOre, GoldOre, TitaniumOre, FluoPowder); else if (.@r < 1000) .@loot=any(MoubooSteak, ClothoLiquor, Coal, SmallMushroom, HastePotion, StrengthPotion, Dagger, StrangeCoin, IronOre, CopperOre); else if (.@r < 4000) |