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.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/npc/functions/treasure.txt b/npc/functions/treasure.txt
index 80bc75bc9..303c9dba6 100644
--- a/npc/functions/treasure.txt
+++ b/npc/functions/treasure.txt
@@ -90,6 +90,12 @@ function script TreasureBox {
.@count=rand(1, 10);
else if (.@loot == ScrollSCave)
.@count=rand(2, 5);
+ else if (.@loot == Beer)
+ .@count=rand(2, 4);
+ else if (.@loot == WoodenLog)
+ .@count=rand(1, 3);
+ else if (.@loot == SmallMushroom)
+ .@count=rand(5, 8);
else if (.@loot == IcedBottle) {
.@count=rand(2, 3);
if (season() == SUMMER)
@@ -101,7 +107,7 @@ function script TreasureBox {
if (.@loot == Coal || .@loot == EmptyBottle)
.@count=rand(1, 3);
else if (.@loot == Chagashroom || .@loot == Plushroom)
- .@count=rand(5, 10);
+ .@count=rand(10, 20);
else if (.@loot == RawLog || .@loot == EmptyBox)
.@count=rand(2, 4);
else if (.@loot == LeatherPatch)