From a23f2dfb74e6622ba745c2775479cebd4d7399f6 Mon Sep 17 00:00:00 2001 From: Adri <33333517+Miraviel@users.noreply.github.com> Date: Sun, 12 Jan 2025 20:22:44 +0100 Subject: [PATCH] Adds surgical tray crafting recipe, renames and increases cost for the wheeled one (#27897) * Adds surgical tray crafting recipe, renames and increases cost for the wheeled one * Changes cost --- code/game/objects/items/stacks/sheets/mineral.dm | 3 ++- code/game/objects/structures/tables_racks.dm | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/stacks/sheets/mineral.dm b/code/game/objects/items/stacks/sheets/mineral.dm index c1c6bbdabc4..883399885be 100644 --- a/code/game/objects/items/stacks/sheets/mineral.dm +++ b/code/game/objects/items/stacks/sheets/mineral.dm @@ -470,7 +470,8 @@ GLOBAL_LIST_INIT(titanium_recipes, list( new /datum/stack_recipe("titanium airlock assembly", /obj/structure/door_assembly/door_assembly_titanium, 4, time = 50, one_per_turf = TRUE, on_floor = TRUE), null, new /datum/stack_recipe("titanium tile", /obj/item/stack/tile/mineral/titanium, 1, 4, 20), - new /datum/stack_recipe("surgical tray", /obj/structure/table/tray, 2, one_per_turf = TRUE, on_floor = TRUE), + new /datum/stack_recipe("surgical tray", /obj/item/storage/surgical_tray, 1), + new /datum/stack_recipe("surgical instrument table", /obj/structure/table/tray, 3, one_per_turf = TRUE, on_floor = TRUE), )) /obj/item/stack/sheet/mineral/titanium/Initialize(mapload, new_amount, merge) diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm index cd70a5ff4bc..d9a76bfacf8 100644 --- a/code/game/objects/structures/tables_racks.dm +++ b/code/game/objects/structures/tables_racks.dm @@ -818,7 +818,7 @@ animate(src, color = previouscolor, time = 8) /obj/structure/table/tray - name = "surgical tray" + name = "surgical instrument table" desc = "A small metal tray with wheels." anchored = FALSE smoothing_flags = NONE