summaryrefslogtreecommitdiff
path: root/npc/functions/treasure.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/treasure.txt')
-rw-r--r--npc/functions/treasure.txt11
1 files changed, 8 insertions, 3 deletions
diff --git a/npc/functions/treasure.txt b/npc/functions/treasure.txt
index dcf47a269..de2a9cdc6 100644
--- a/npc/functions/treasure.txt
+++ b/npc/functions/treasure.txt
@@ -55,7 +55,7 @@ function script TreasureBox {
// super rare
} else if (.@t % 50 == 0 || .@r < 200) {
.@money=rand(500, 750);
- .@loot=any(MercBoxC, ScrollMagnusHealB, SnakeEgg, LachesisBrew, ArrowAmmoBox, GoldPieces, SilverGift, TerraniteOre, LeadOre, TinOre, SilverOre, GoldOre, TitaniumOre, FluoPowder, Lockpicks, EquipmentBlueprintC, AlchemyBlueprintC, AlchemyBlueprintD, AncientBlueprint, YerbaMate, JasmineTea, DeathPotion, SacredLifePotion, SacredManaPotion, BrokenWarpCrystal, PurificationPotion, GoldenApple);
+ .@loot=any(MercBoxC, ScrollMagnusHealB, SnakeEgg, LachesisBrew, ArrowAmmoBox, GoldPieces, SilverGift, TerraniteOre, LeadOre, TinOre, SilverOre, GoldOre, TitaniumOre, FluoPowder, Lockpicks, EquipmentBlueprintC, AlchemyBlueprintC, AlchemyBlueprintD, AncientBlueprint, YerbaMate, JasmineTea, DeathPotion, SacredLifePotion, SacredManaPotion, BrokenWarpCrystal, PurificationPotion, GoldenApple);
if (.@loot == SnakeEgg)
.@count=rand(2, 6);
else if (.@loot == Lockpicks)
@@ -74,6 +74,8 @@ function script TreasureBox {
.@count=rand(2, 5);
else if (.@loot == CopperOre)
.@count=rand(1, 3);
+ else if (.@loot == ClothoLiquor)
+ .@count=rand(2, 5);
// uncommon
} else if (.@r < 5200) {
.@money=rand(20, 80);
@@ -86,11 +88,14 @@ function script TreasureBox {
.@count=rand(3, 4);
else if (.@loot == StrangeCoin)
.@count=rand(1, 10);
- else if (.@loot == IcedBottle)
+ else if (.@loot == IcedBottle) {
.@count=rand(2, 3);
+ if (season() == SUMMER)
+ dispbottom l("Just the right thing to cool down right now!");
+ }
// common
} else {
- .@loot=any(FatesPotion, PiberriesInfusion, EmptyBottle, ChocolateBar, Chagashroom, Plushroom, SmallMushroom, MaggotSlime, RawLog, LeatherPatch, Coal, EmptyBox, ChamomileTea, EquipmentBlueprintA);
+ .@loot=any(FatesPotion, PiberriesInfusion, EmptyBottle, ChocolateBar, Chagashroom, Plushroom, SmallMushroom, MaggotSlime, RawLog, LeatherPatch, Coal, EmptyBox, ChamomileTea, EquipmentBlueprintA, ScrollSCave);
if (.@loot == Coal || .@loot == EmptyBottle)
.@count=rand(1, 3);
else if (.@loot == Chagashroom || .@loot == Plushroom)