From 99d9d3db988ecaf25fbb5a96e464ee5feb77cbe0 Mon Sep 17 00:00:00 2001 From: MixityMaxity Date: Wed, 10 Jun 2026 18:05:27 +1000 Subject: [PATCH 1/2] raises IMS biotech level to 7 --- code/modules/research/designs/medical_designs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/research/designs/medical_designs.dm b/code/modules/research/designs/medical_designs.dm index 26deabf73d6cf..5c83985363211 100644 --- a/code/modules/research/designs/medical_designs.dm +++ b/code/modules/research/designs/medical_designs.dm @@ -261,7 +261,7 @@ name = "Incision Management System" desc = "A true extension of the surgeon's body, this marvel instantly and completely prepares an incision allowing for the immediate commencement of therapeutic steps." id = "scalpel_manager" - req_tech = list("biotech" = 4, "materials" = 7, "magnets" = 5, "programming" = 4) + req_tech = list("biotech" = 7, "materials" = 7, "magnets" = 5, "programming" = 4) build_type = PROTOLATHE materials = list(MAT_METAL = 2000, MAT_GLASS = 1500, MAT_SILVER = 1000, MAT_GOLD = 1000, MAT_DIAMOND = 1000) build_path = /obj/item/scalpel/laser/manager From c72a49610e5f382d07a9269f93dd508fef2cc86b Mon Sep 17 00:00:00 2001 From: MixityMaxity Date: Fri, 19 Jun 2026 16:47:31 +1000 Subject: [PATCH 2/2] adds origin tech to IMS --- code/modules/surgery/tools.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/surgery/tools.dm b/code/modules/surgery/tools.dm index fcda75fe2b4b5..0dff6ee544337 100644 --- a/code/modules/surgery/tools.dm +++ b/code/modules/surgery/tools.dm @@ -231,6 +231,7 @@ icon_state = "scalpel_manager_on" toolspeed = 0.2 materials = list(MAT_METAL = 2000, MAT_GLASS = 1500, MAT_SILVER = 1000, MAT_GOLD = 1000, MAT_DIAMOND = 1000) + origin_tech = "biotech=6;materials=6;magnets=4;programming=3" /obj/item/scalpel/laser/manager/Initialize(mapload) . = ..()