diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 72ef66331b05..9a50840866fc 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -516,6 +516,7 @@ GLOBAL_LIST_INIT(cardboard_recipes, list ( \ new /datum/stack_recipe("donut box", /obj/item/storage/box/fancy/donut_box), \ new /datum/stack_recipe("egg box", /obj/item/storage/box/fancy/egg_box), \ new /datum/stack_recipe("monkey cube box", /obj/item/storage/box/monkeycubes), \ + new /datum/stack_recipe("nugget box", /obj/item/storage/box/fancy/nugget_box), \ null, \ new /datum/stack_recipe("bean bag ammo box", /obj/item/storage/box/beanbag), \ diff --git a/code/game/objects/items/storage/fancy.dm b/code/game/objects/items/storage/fancy.dm index 9b30509988df..129e4a26aba8 100644 --- a/code/game/objects/items/storage/fancy.dm +++ b/code/game/objects/items/storage/fancy.dm @@ -461,4 +461,26 @@ /obj/item/storage/box/fancy/heart_box/PopulateContents() for(var/i in 1 to 8) - new /obj/item/reagent_containers/food/snacks/tinychocolate(src) \ No newline at end of file + new /obj/item/reagent_containers/food/snacks/tinychocolate(src) + +////////////// +//NUGGET BOX// +////////////// +/obj/item/storage/box/fancy/nugget_box + name = "nugget box" + desc = "A cardboard box used for holding chicken nuggies." + icon = 'icons/obj/food/containers.dmi' + item_state = "nuggetbox" + icon_state = "nuggetbox" + icon_type = "nugget" + spawn_type = /obj/item/reagent_containers/food/snacks/nugget + +/obj/item/storage/box/fancy/nugget_box/Initialize(mapload) + . = ..() + var/datum/component/storage/STR = GetComponent(/datum/component/storage) + STR.max_items = 6 + STR.set_holdable(list(/obj/item/reagent_containers/food/snacks/nugget)) + +/obj/item/storage/box/fancy/nugget_box/PopulateContents() + for(var/i in 1 to 6) + new /obj/item/reagent_containers/food/snacks/nugget(src) diff --git a/icons/obj/food/containers.dmi b/icons/obj/food/containers.dmi index 52b8e1ad252c..ce15bc4fdce5 100644 Binary files a/icons/obj/food/containers.dmi and b/icons/obj/food/containers.dmi differ