summaryrefslogtreecommitdiff
path: root/npc/items/emptybox.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-06-21 19:25:13 -0300
committerJesusaves <cpntb1@ymail.com>2019-06-21 19:25:13 -0300
commitdf6b5fdb6b555f91dbd37d883480b7e86de5505c (patch)
treeaf8f3475d0d7888ecab8778bdbdc226ebcfd855f /npc/items/emptybox.txt
parent4e08d5e099cec08819505dbe21c0455bdc1e730c (diff)
downloadserverdata-df6b5fdb6b555f91dbd37d883480b7e86de5505c.tar.gz
serverdata-df6b5fdb6b555f91dbd37d883480b7e86de5505c.tar.bz2
serverdata-df6b5fdb6b555f91dbd37d883480b7e86de5505c.tar.xz
serverdata-df6b5fdb6b555f91dbd37d883480b7e86de5505c.zip
Make Croconut Box weight half and require half croconuts.
Diffstat (limited to 'npc/items/emptybox.txt')
-rw-r--r--npc/items/emptybox.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/items/emptybox.txt b/npc/items/emptybox.txt
index aceb9b094..dec30a2d4 100644
--- a/npc/items/emptybox.txt
+++ b/npc/items/emptybox.txt
@@ -11,7 +11,7 @@ OnUse:
mesn;
mesc l("You can fill this box with the following:");
mesc l("- @@ @@", 7, getitemlink(GrassCarp));
- mesc l("- @@ @@", 17, getitemlink(Croconut));
+ mesc l("- @@ @@", 8, getitemlink(Croconut));
mesc l("- @@ @@", 20, getitemlink(CommonCarp));
mesc l("- @@ @@", 87, getitemlink(Plushroom));
mes "";
@@ -19,7 +19,7 @@ OnUse:
select
l("Don't fill"),
rif(countitem(GrassCarp) >= 7, l("7 Grass Carp")),
- rif(countitem(Croconut) >= 17, l("17 Croconut")),
+ rif(countitem(Croconut) >= 8, l("8 Croconut")),
rif(countitem(CommonCarp) >= 20, l("20 Common Carp")),
rif(countitem(Plushroom) >= 87, l("87 Plushroom"));
mes "";
@@ -29,7 +29,7 @@ OnUse:
getitem FishBox, 1;
break;
case 3:
- delitem Croconut, 17;
+ delitem Croconut, 8;
getitem CroconutBox, 1;
break;
case 4: