summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNetSysFire <59517351+NetSysFire@users.noreply.github.com>2023-03-02 23:28:11 +0100
committerNetSysFire <59517351+NetSysFire@users.noreply.github.com>2023-03-02 23:28:11 +0100
commit462ebd016c331e20d7180ebcccd33f86ff2dd6ba (patch)
tree6ffc580717e2e48bef30a32214e2b5fb1fdd0b0c
parente76181ad7b54bc7b27e08507ee5b7816f3e4a127 (diff)
downloadserverdata-462ebd016c331e20d7180ebcccd33f86ff2dd6ba.tar.gz
serverdata-462ebd016c331e20d7180ebcccd33f86ff2dd6ba.tar.bz2
serverdata-462ebd016c331e20d7180ebcccd33f86ff2dd6ba.tar.xz
serverdata-462ebd016c331e20d7180ebcccd33f86ff2dd6ba.zip
be a bit more generous with the amounts
-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)