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"