From a6934eb661afb3d0808cc1dc4eeacef12975eda4 Mon Sep 17 00:00:00 2001 From: DGamerL <108773801+DGamerL@users.noreply.github.com> Date: Mon, 22 May 2023 22:06:55 +0200 Subject: [PATCH] Changes the hacking implant to the abductor toolset implant (#21067) * hacking implant is no more * correct icon --- code/modules/research/designs/medical_designs.dm | 14 +++++++------- code/modules/surgery/organs/augments_arms.dm | 16 ++++++++-------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/code/modules/research/designs/medical_designs.dm b/code/modules/research/designs/medical_designs.dm index dd9e7c13873..31b7b47f054 100644 --- a/code/modules/research/designs/medical_designs.dm +++ b/code/modules/research/designs/medical_designs.dm @@ -334,7 +334,7 @@ /datum/design/cyberimp_toolset name = "Toolset Arm Implant" - desc = "A stripped-down version of engineering cyborg toolset, designed to be installed on subject's arm." + desc = "A stripped-down version of an engineering cyborg toolset, designed to be installed on subject's arm." id = "ci-toolset" req_tech = list("materials" = 3, "engineering" = 4, "biotech" = 4, "powerstorage" = 4) build_type = PROTOLATHE | MECHFAB @@ -365,15 +365,15 @@ build_path = /obj/item/organ/internal/cyberimp/arm/botanical category = list("Medical") -/datum/design/cyberimp_hacking - name = "Hacking Arm Implant" - desc = "A small arm implant containing an advanced screwdriver, wirecutters, and multitool designed for engineers and on-the-field machine modification. Actually legal, despite what the name may make you think." +/datum/design/cyberimp_toolset_abductor + name = "Abductor Toolset Implant" + desc = "An alien toolset, designed to be installed on subject's arm." id = "ci-hacking" - req_tech = list("materials" = 3, "engineering" = 5, "biotech" = 4, "programming" = 4, "abductor" = 4) + req_tech = list("materials" = 6, "engineering" = 6, "plasmatech" = 6, "abductor" = 4) build_type = PROTOLATHE | MECHFAB - materials = list(MAT_METAL = 5000, MAT_SILVER = 2500, MAT_PLASMA = 5000, MAT_TITANIUM = 2000, MAT_DIAMOND = 2000) + materials = list(MAT_METAL = 20000, MAT_SILVER = 10000, MAT_PLASMA = 9000, MAT_TITANIUM = 8000, MAT_DIAMOND = 8000) construction_time = 200 - build_path = /obj/item/organ/internal/cyberimp/arm/hacking + build_path = /obj/item/organ/internal/cyberimp/arm/toolset_abductor category = list("Medical") /datum/design/cyberimp_diagnostic_hud diff --git a/code/modules/surgery/organs/augments_arms.dm b/code/modules/surgery/organs/augments_arms.dm index 2ef6161fa7a..e58f9456c1a 100644 --- a/code/modules/surgery/organs/augments_arms.dm +++ b/code/modules/surgery/organs/augments_arms.dm @@ -233,15 +233,15 @@ return TRUE return FALSE -/obj/item/organ/internal/cyberimp/arm/hacking - name = "hacking arm implant" - desc = "A small arm implant containing an advanced screwdriver, wirecutters, and multitool designed for engineers and on-the-field machine modification. Actually legal, despite what the name may make you think." - origin_tech = "materials=3;engineering=4;biotech=3;powerstorage=4;abductor=3" - contents = newlist(/obj/item/screwdriver/cyborg, /obj/item/wirecutters/cyborg, /obj/item/multitool/abductor) - action_icon = list(/datum/action/item_action/organ_action/toggle = 'icons/obj/device.dmi') - action_icon_state = list(/datum/action/item_action/organ_action/toggle = "hacktool") +/obj/item/organ/internal/cyberimp/arm/toolset_abductor + name = "Alien Toolset implant" + desc = "An alien toolset, designed to be installed on subject's arm." + origin_tech = "materials=5;engineering=5;plasmatech=5;powerstorage=4;abductor=3" + contents = newlist(/obj/item/screwdriver/abductor, /obj/item/wirecutters/abductor, /obj/item/crowbar/abductor, /obj/item/wrench/abductor, /obj/item/weldingtool/abductor, /obj/item/multitool/abductor) + 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/hacking/l +/obj/item/organ/internal/cyberimp/arm/toolset_abductor/l parent_organ = "l_arm" /obj/item/organ/internal/cyberimp/arm/esword