From df2560709d3d745a0175cf37636edbf89227d7c1 Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Sat, 4 Oct 2025 15:59:13 -0700 Subject: [PATCH 1/2] [MIRROR] Upports craftable operating tables (#11777) Co-authored-by: Ryumi --- 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 658b682e085..110a19b2ed6 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 From 23ae774967cea54425119e3d1b06388ec6ff5999 Mon Sep 17 00:00:00 2001 From: PRBot Date: Sun, 5 Oct 2025 05:55:22 +0000 Subject: [PATCH 2/2] [MIRROR] Upports craftable operating tables