diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-04-26 22:41:34 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-04-26 22:41:34 -0300 |
commit | 42e72fcd983ffc65a17678825f4edbf21d8cb714 (patch) | |
tree | 5816b05e9fd7fee2aef06f2b463f34ecf5689366 /npc/functions/treasure.txt | |
parent | 56cd3b2a2d343d4b6512416688f97ae02621ab93 (diff) | |
download | serverdata-42e72fcd983ffc65a17678825f4edbf21d8cb714.tar.gz serverdata-42e72fcd983ffc65a17678825f4edbf21d8cb714.tar.bz2 serverdata-42e72fcd983ffc65a17678825f4edbf21d8cb714.tar.xz serverdata-42e72fcd983ffc65a17678825f4edbf21d8cb714.zip |
Move Speed Potion gets in Random Treasure, making the Gift Boxes fall rarity.
Diffstat (limited to 'npc/functions/treasure.txt')
-rw-r--r-- | npc/functions/treasure.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/functions/treasure.txt b/npc/functions/treasure.txt index d5d7b4120..234286794 100644 --- a/npc/functions/treasure.txt +++ b/npc/functions/treasure.txt @@ -35,11 +35,11 @@ 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, SilverGift, Shemagh, EverburnPowder, IridiumOre, PlatinumOre); + .@loot=any(AtroposMixture, GoldenApple, DivineApple, MercBoxA, MoveSpeedPotion, Shemagh, EverburnPowder, IridiumOre, PlatinumOre); else if (.@t % 50 == 0 || .@r < 100) - .@loot=any(Grenade, SnakeEgg, LachesisBrew, ArrowAmmoBox, CoinBag, BronzeGift, TerraniteOre, LeadOre, TinOre, SilverOre, GoldOre, TitaniumOre, FluoPowder); + .@loot=any(Grenade, SnakeEgg, LachesisBrew, ArrowAmmoBox, CoinBag, SilverGift, TerraniteOre, LeadOre, TinOre, SilverOre, GoldOre, TitaniumOre, FluoPowder); else if (.@r < 1000 || .@t == 0) - .@loot=any(MoubooSteak, ClothoLiquor, Coal, RedPlushWine, HastePotion, StrengthPotion, Dagger, StrangeCoin, IronOre, CopperOre); + .@loot=any(MoubooSteak, ClothoLiquor, Coal, RedPlushWine, HastePotion, StrengthPotion, Dagger, BronzeGift, IronOre, CopperOre); else if (.@r < 4000) .@loot=any(Croconut, Potatoz, MoubooSteak, ClothoLiquor, Coal, SmallMushroom, HastePotion, StrengthPotion, Beer); else |