From efdbf30f0c44253991de9867fca047b778e66801 Mon Sep 17 00:00:00 2001 From: MixityMaxity <189351891+MixityMaxity@users.noreply.github.com> Date: Thu, 25 Jun 2026 13:30:31 +1000 Subject: [PATCH] Raises IMS biotech level to 7 (#32107) * raises IMS biotech level to 7 * adds origin tech to IMS --- code/modules/research/designs/medical_designs.dm | 2 +- code/modules/surgery/tools.dm | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/research/designs/medical_designs.dm b/code/modules/research/designs/medical_designs.dm index 87a9c192e36..96134000499 100644 --- a/code/modules/research/designs/medical_designs.dm +++ b/code/modules/research/designs/medical_designs.dm @@ -241,7 +241,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 diff --git a/code/modules/surgery/tools.dm b/code/modules/surgery/tools.dm index 37941009504..bf0b6da380e 100644 --- a/code/modules/surgery/tools.dm +++ b/code/modules/surgery/tools.dm @@ -216,6 +216,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) . = ..()