diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 569ac38e277..de511f9fc89 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -161,6 +161,7 @@ var/global/list/datum/stack_recipe/wood_recipes = list ( \ */ var/global/list/datum/stack_recipe/cardboard_recipes = list ( \ new/datum/stack_recipe("box", /obj/item/weapon/storage/box), \ + new/datum/stack_recipe("large box", /obj/item/weapon/storage/box/large, 4), \ new/datum/stack_recipe("light tubes", /obj/item/weapon/storage/box/lights/tubes), \ new/datum/stack_recipe("light bulbs", /obj/item/weapon/storage/box/lights/bulbs), \ new/datum/stack_recipe("mouse traps", /obj/item/weapon/storage/box/mousetraps), \ diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm index ec3a9dc0775..6c8511b16d5 100644 --- a/code/game/objects/items/weapons/storage/boxes.dm +++ b/code/game/objects/items/weapons/storage/boxes.dm @@ -26,6 +26,17 @@ item_state = "syringe_kit" foldable = /obj/item/stack/sheet/cardboard //BubbleWrap +/obj/item/weapon/storage/box/large + name = "large box" + desc = "You could build a fort with this." + icon_state = "largebox" + item_state = "largebox" + w_class = 42 // Big, bulky. + foldable = /obj/item/stack/sheet/cardboard //BubbleWrap + storage_slots = 21 + max_combined_w_class = 42 // 21*2 + + /obj/item/weapon/storage/box/surveillance/ name = "\improper DromedaryCo packet" desc = "A packet of six imported DromedaryCo cancer sticks. A label on the packaging reads, \"Wouldn't a slow death make a change?\"" diff --git a/icons/obj/storage.dmi b/icons/obj/storage.dmi index f50952514db..c8976776796 100644 Binary files a/icons/obj/storage.dmi and b/icons/obj/storage.dmi differ