From cc9ea59418b10c99dd0428101f3c17c84cd196c5 Mon Sep 17 00:00:00 2001 From: Osetrokarasek <78341303+ostrkrs@users.noreply.github.com> Date: Tue, 13 May 2025 08:21:30 +0500 Subject: [PATCH] Makes cookware printable in autolathe (#29254) * Update autolathe_designs.dm * little oopsie * little oopsie x2 * Update autolathe_designs.dm --- .../research/designs/autolathe_designs.dm | 56 +++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index 241fd98b6fa..022b086dc9b 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -336,6 +336,62 @@ build_path = /obj/item/reagent_containers/drinks/shaker category = list("initial","Dinnerware") +/datum/design/bowl + name = "Prep Bowl" + id = "prep_bowl" + materials = list(MAT_METAL = 400, MAT_GLASS = 100) + build_type = AUTOLATHE + build_path = /obj/item/reagent_containers/cooking/bowl + category = list("initial","Dinnerware") + +/datum/design/icecream_bowl + name = "Icecream Bowl" + id = "icecream_bowl" + materials = list(MAT_METAL = 750) + build_type = AUTOLATHE + build_path = /obj/item/reagent_containers/cooking/icecream_bowl + category = list("initial","Dinnerware") + +/datum/design/pot + name = "Cooking Pot" + id = "pot" + materials = list(MAT_METAL = 1250) + build_type = AUTOLATHE + build_path = /obj/item/reagent_containers/cooking/pot + category = list("initial","Dinnerware") + +/datum/design/pan + name = "Pan" + id = "pan" + materials = list(MAT_METAL = 1000) + build_type = AUTOLATHE + build_path = /obj/item/reagent_containers/cooking/pan + category = list("initial","Dinnerware") + +/datum/design/ovendish + name = "Oven Dish" + id = "oven_dish" + materials = list(MAT_METAL = 1500) + build_type = AUTOLATHE + build_path = /obj/item/reagent_containers/cooking/oven + category = list("initial","Dinnerware") + +/datum/design/grill_grate + name = "Grill Grate" + id = "grill_grate" + materials = list(MAT_METAL = 750) + build_type = AUTOLATHE + build_path = /obj/item/reagent_containers/cooking/grill_grate + category = list("initial","Dinnerware") + +/datum/design/deep_basket + name = "Deep Fryer Basket" + id = "basket" + materials = list(MAT_METAL = 1000) + build_type = AUTOLATHE + build_path = /obj/item/reagent_containers/cooking/deep_basket + category = list("initial","Dinnerware") + /datum/design/cultivator name = "Cultivator" id = "cultivator"