From e799cef6b9012b01895d4dbb0afb63ffa6e309bc Mon Sep 17 00:00:00 2001 From: Taurtura <141481662+Taurtura@users.noreply.github.com> Date: Mon, 20 May 2024 05:55:49 +0200 Subject: [PATCH] adds the abductor surgery toolset (#25419) * adds surgical abductor toolset * ..Yes. The crew needs to be able to get it somehow. Right * handle review from 1080p * Required tech should be the correct one, and not engi's * Henri's review * 1080p's review * adds surgical abductor toolset * ..Yes. The crew needs to be able to get it somehow. Right * handle review from 1080p * Required tech should be the correct one, and not engi's * Henri's review * 1080p's review --- code/modules/research/designs/medical_designs.dm | 11 +++++++++++ code/modules/surgery/organs/augments_arms.dm | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/code/modules/research/designs/medical_designs.dm b/code/modules/research/designs/medical_designs.dm index b929547aa27..5caceeec130 100644 --- a/code/modules/research/designs/medical_designs.dm +++ b/code/modules/research/designs/medical_designs.dm @@ -436,6 +436,17 @@ build_path = /obj/item/organ/internal/cyberimp/arm/janitorial_abductor category = list("Medical") +/datum/design/cyberimp_surgical_abductor + name = "Abductor Surgical Toolset Implant" + desc = "An alien surgical toolset, designed to be installed on the subject's arm." + id = "ci-med-abductor" + req_tech = list("materials" = 6, "magnets" = 6, "biotech" = 6, "abductor" = 3) + build_type = PROTOLATHE | MECHFAB + materials = list(MAT_METAL = 20000, MAT_SILVER = 10000, MAT_PLASMA = 9000, MAT_TITANIUM = 8000, MAT_DIAMOND = 8000) + construction_time = 20 SECONDS + build_path = /obj/item/organ/internal/cyberimp/arm/surgical_abductor + category = list("Medical") + /datum/design/cyberimp_jani_hud name = "Janitor HUD Implant" desc = "These cybernetic eye implants will display a filth HUD over everything you see. Wiggle eyes to control." diff --git a/code/modules/surgery/organs/augments_arms.dm b/code/modules/surgery/organs/augments_arms.dm index f28c4636559..ec626a19ba6 100644 --- a/code/modules/surgery/organs/augments_arms.dm +++ b/code/modules/surgery/organs/augments_arms.dm @@ -261,6 +261,17 @@ /obj/item/organ/internal/cyberimp/arm/janitorial_abductor/l parent_organ = "l_arm" +/obj/item/organ/internal/cyberimp/arm/surgical_abductor + name = "Alien Surgical Toolset implant" + desc = "An alien surgical toolset, designed to be installed on the subject's arm." + origin_tech = "materials=5;engineering=5;plasmatech=5;powerstorage=4;abductor=2" + contents = newlist(/obj/item/retractor/alien, /obj/item/hemostat/alien, /obj/item/cautery/alien, /obj/item/bonesetter/alien, /obj/item/scalpel/alien, /obj/item/circular_saw/alien, /obj/item/bonegel/alien, /obj/item/FixOVein/alien, /obj/item/surgicaldrill/alien) + action_icon = list(/datum/action/item_action/organ_action/toggle = 'icons/obj/abductor.dmi') + action_icon_state = list(/datum/action/item_action/organ_action/toggle = "belt") + +/obj/item/organ/internal/cyberimp/arm/surgical_abductor/l + parent_organ = "l_arm" + /obj/item/organ/internal/cyberimp/arm/esword name = "arm-mounted energy blade" desc = "An illegal, and highly dangerous cybernetic implant that can project a deadly blade of concentrated enregy."