summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-01-25 21:17:41 -0300
committerJesusaves <cpntb1@ymail.com>2020-01-25 21:17:41 -0300
commit8384df202d9767eac4cc7029b95fd44148878bb9 (patch)
tree5ce8a5f050675d4fbc7110c27835c49834c1fc55
parent5ff7fce260e520b201b3c6559fc2a1994a8ff7af (diff)
downloadserverdata-8384df202d9767eac4cc7029b95fd44148878bb9.tar.gz
serverdata-8384df202d9767eac4cc7029b95fd44148878bb9.tar.bz2
serverdata-8384df202d9767eac4cc7029b95fd44148878bb9.tar.xz
serverdata-8384df202d9767eac4cc7029b95fd44148878bb9.zip
Tea on a Treasure Box
-rw-r--r--npc/functions/treasure.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/functions/treasure.txt b/npc/functions/treasure.txt
index 19f139e4a..46434eaad 100644
--- a/npc/functions/treasure.txt
+++ b/npc/functions/treasure.txt
@@ -35,15 +35,15 @@ function script TreasureBox {
// There's also rares (9%), uncommons (30%) and commons (60%)
.@ur_rate=min(10, (TREASURE_OPEN/10));
if (.@t % 149 == 0 || .@r < .@ur_rate)
- .@loot=any(AtroposMixture, GoldenApple, DivineApple, MercBoxA, MoveSpeedPotion, Shemagh, EverburnPowder, IridiumOre, PlatinumOre);
+ .@loot=any(AtroposMixture, GoldenApple, DivineApple, MercBoxA, MoveSpeedPotion, Shemagh, EverburnPowder, IridiumOre, PlatinumOre, YerbaMate);
else if (.@t % 50 == 0 || .@r < 100)
- .@loot=any(SmokeGrenade, SnakeEgg, LachesisBrew, ArrowAmmoBox, GoldPieces, SilverGift, TerraniteOre, LeadOre, TinOre, SilverOre, GoldOre, TitaniumOre, FluoPowder, AlchemyBlueprintC, AncientBlueprint);
+ .@loot=any(SmokeGrenade, SnakeEgg, LachesisBrew, ArrowAmmoBox, GoldPieces, SilverGift, TerraniteOre, LeadOre, TinOre, SilverOre, GoldOre, TitaniumOre, FluoPowder, AlchemyBlueprintC, AncientBlueprint, JasmineTea);
else if (.@r < 1000 || .@t == 0)
- .@loot=any(MoubooSteak, ClothoLiquor, Coal, RedPlushWine, HastePotion, CoinBag, StrengthPotion, Dagger, BronzeGift, IronOre, CopperOre, BlueDye, AlchemyBlueprintB);
+ .@loot=any(MoubooSteak, ClothoLiquor, Coal, RedPlushWine, HastePotion, CoinBag, StrengthPotion, Dagger, BronzeGift, IronOre, CopperOre, BlueDye, AlchemyBlueprintB, OolongTea);
else if (.@r < 5000)
- .@loot=any(Croconut, Potatoz, MoubooSteak, ClothoLiquor, Coal, SmallMushroom, HastePotion, StrengthPotion, WoodenLog, LeatherPatch, Beer, EquipmentBlueprintA, AlchemyBlueprintA);
+ .@loot=any(Croconut, Potatoz, MoubooSteak, ClothoLiquor, Coal, SmallMushroom, HastePotion, StrengthPotion, WoodenLog, LeatherPatch, Beer, EquipmentBlueprintA, AlchemyBlueprintA, SpearmintTea);
else
- .@loot=any(FatesPotion, ChocolateBar, Plushroom, Chagashroom, RawLog, LeatherPatch, BugLeg, ScorpionStinger, SmallKnife, StrangeCoin);
+ .@loot=any(FatesPotion, ChocolateBar, Plushroom, Chagashroom, RawLog, LeatherPatch, BugLeg, ScorpionStinger, SmallKnife, StrangeCoin, ChamomileTea);
inventoryplace .@loot, 1;