From 1e29ff24e291a3ed2c04ccdcf72e89e115809ec2 Mon Sep 17 00:00:00 2001 From: Ryumi Date: Sat, 4 Oct 2025 17:46:27 -0500 Subject: [PATCH] Upports craftable operating tables (#18594) --- code/datums/components/crafting/recipes.dm | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/code/datums/components/crafting/recipes.dm b/code/datums/components/crafting/recipes.dm index 658b682e08..110a19b2ed 100644 --- a/code/datums/components/crafting/recipes.dm +++ b/code/datums/components/crafting/recipes.dm @@ -72,3 +72,14 @@ var/obj/item/material/twohanded/spear/S = result S.set_material(M.material.name) qdel(M) + +/datum/crafting_recipe/surgerytable + name = "surgery table" + result = /obj/machinery/optable + reqs = list( + list(/obj/item/stack/material/silver = 12), + list(/obj/item/stack/rods = 10), + list(/obj/item/stack/material/leather = 1) + ) + time = 240 + category = CAT_MISC