From 23c55eee6f134a47197c83582b70776c86511cea Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sat, 4 Jun 2022 01:05:53 -0300 Subject: Increase super rare on tresure boxes from 1% to 2%. Increase uncommons on treasure boxes from 35% to 36%. Nerf commons on treasure boxes from 50% to 48%. --- npc/functions/treasure.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'npc/functions') diff --git a/npc/functions/treasure.txt b/npc/functions/treasure.txt index 6202950b2..4972ad418 100644 --- a/npc/functions/treasure.txt +++ b/npc/functions/treasure.txt @@ -34,16 +34,16 @@ function script TreasureBox { // Select treasure list // You're warranted an ultra rare (0.1%) every 149 open chests - // You're warranted a super rare (1%) every 50 open chests - // There's also rares (14%), uncommons (35%) and commons (50%) + // You're warranted a super rare (2%) every 50 open chests + // There's also rares (14%), uncommons (36%) and commons (48%) .@ur_rate=min(10, (TREASURE_OPEN/10)); if (.@t % 149 == 0 || .@r < .@ur_rate) .@loot=any(ScrollMagnusHealC, SaviorBlueprint, GoldenApple, DivineApple, MercBoxE, ScrollSDragon, Shemagh, EverburnPowder, IridiumOre, PlatinumOre); - else if (.@t % 50 == 0 || .@r < 100) + else if (.@t % 50 == 0 || .@r < 200) .@loot=any(MercBoxC, ScrollMagnusHealB, SnakeEgg, LachesisBrew, ArrowAmmoBox, GoldPieces, SilverGift, MoveSpeedPotion, TerraniteOre, LeadOre, TinOre, SilverOre, GoldOre, TitaniumOre, FluoPowder, EquipmentBlueprintC, AlchemyBlueprintC, AlchemyBlueprintD, AncientBlueprint, YerbaMate, JasmineTea); - else if (.@r < 1500 || .@t == 0) + else if (.@r < 1600 || .@t == 0) .@loot=any(MercBoxB, MoubooSteak, SmokeGrenade, ClothoLiquor, Coal, RedPlushWine, HastePotion, CoinBag, StrengthPotion, Dagger, BronzeGift, IronOre, CopperOre, BlueDye, EquipmentBlueprintB, AlchemyBlueprintB, AlchemyBlueprintC, OolongTea); - else if (.@r < 5000) + else if (.@r < 5200) .@loot=any(MercBoxA, Croconut, Potatoz, MoubooSteak, ClothoLiquor, Coal, SmallMushroom, HastePotion, StrengthPotion, WoodenLog, LeatherPatch, Beer, EquipmentBlueprintA, EquipmentBlueprintB, AlchemyBlueprintA, SpearmintTea, TreasureMap); else .@loot=any(FatesPotion, ChocolateBar, Plushroom, Chagashroom, RawLog, LeatherPatch, BugLeg, ScorpionStinger, SmallKnife, StrangeCoin, ChamomileTea, EquipmentBlueprintA); -- cgit v1.2.3-70-g09d2