diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-19 12:21:51 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-19 12:21:51 -0300 |
commit | 13825ad2626677cd5c4b53b75dfe933de679a02c (patch) | |
tree | ecf34fe936fa0adb549ea2ae88ee999360632bdb /npc/functions | |
parent | fc4bbf7fdf3056c56e62e72278891376a63458e0 (diff) | |
download | serverdata-13825ad2626677cd5c4b53b75dfe933de679a02c.tar.gz serverdata-13825ad2626677cd5c4b53b75dfe933de679a02c.tar.bz2 serverdata-13825ad2626677cd5c4b53b75dfe933de679a02c.tar.xz serverdata-13825ad2626677cd5c4b53b75dfe933de679a02c.zip |
Application tax ×2 on town offices. Treasure Chest rework involving blueprints
Diffstat (limited to 'npc/functions')
-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 ae29f6793..9c695da9e 100644 --- a/npc/functions/treasure.txt +++ b/npc/functions/treasure.txt @@ -37,11 +37,11 @@ function script TreasureBox { if (.@t % 149 == 0 || .@r < .@ur_rate) .@loot=any(AtroposMixture, GoldenApple, DivineApple, MercBoxA, MoveSpeedPotion, Shemagh, EverburnPowder, IridiumOre, PlatinumOre); else if (.@t % 50 == 0 || .@r < 100) - .@loot=any(SmokeGrenade, SnakeEgg, LachesisBrew, ArrowAmmoBox, GoldPieces, SilverGift, TerraniteOre, LeadOre, TinOre, SilverOre, GoldOre, TitaniumOre, FluoPowder, AlchemyBlueprintB, AncientBlueprint); + .@loot=any(SmokeGrenade, SnakeEgg, LachesisBrew, ArrowAmmoBox, GoldPieces, SilverGift, TerraniteOre, LeadOre, TinOre, SilverOre, GoldOre, TitaniumOre, FluoPowder, AlchemyBlueprintC, AncientBlueprint); else if (.@r < 1000 || .@t == 0) - .@loot=any(MoubooSteak, ClothoLiquor, Coal, RedPlushWine, HastePotion, CoinBag, StrengthPotion, Dagger, BronzeGift, IronOre, CopperOre, AlchemyBlueprintA); + .@loot=any(MoubooSteak, ClothoLiquor, Coal, RedPlushWine, HastePotion, CoinBag, StrengthPotion, Dagger, BronzeGift, IronOre, CopperOre, AlchemyBlueprintB); else if (.@r < 5000) - .@loot=any(Croconut, Potatoz, MoubooSteak, ClothoLiquor, Coal, SmallMushroom, HastePotion, StrengthPotion, WoodenLog, LeatherPatch, Beer); + .@loot=any(Croconut, Potatoz, MoubooSteak, ClothoLiquor, Coal, SmallMushroom, HastePotion, StrengthPotion, WoodenLog, LeatherPatch, Beer, EquipmentBlueprintA, AlchemyBlueprintA); else .@loot=any(FatesPotion, ChocolateBar, Plushroom, Chagashroom, RawLog, LeatherPatch, BugLeg, ScorpionStinger, SmallKnife, StrangeCoin); |