From c2a4f9ee5d1f4534094decb0919945965c1f87fd Mon Sep 17 00:00:00 2001 From: Fikou Date: Sat, 4 May 2019 19:42:38 +0200 Subject: [PATCH] Diagnostic HUD eyes (#43806) * diagnostic hud * Update autosurgeon.dm * Update scientist.dm * Update security.dm * Update medical_designs.dm * Update all_nodes.dm * Update scientist.dm * Update security.dm * Update autosurgeon.dm * Update autosurgeon.dm --- code/modules/research/designs/medical_designs.dm | 11 +++++++++++ code/modules/research/techweb/all_nodes.dm | 2 +- code/modules/surgery/organs/augments_eyes.dm | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/code/modules/research/designs/medical_designs.dm b/code/modules/research/designs/medical_designs.dm index eadedd990dc..fa2d4c7f0c3 100644 --- a/code/modules/research/designs/medical_designs.dm +++ b/code/modules/research/designs/medical_designs.dm @@ -302,6 +302,17 @@ build_path = /obj/item/organ/cyberimp/eyes/hud/security category = list("Misc", "Medical Designs") departmental_flags = DEPARTMENTAL_FLAG_MEDICAL + +/datum/design/cyberimp_diagnostic_hud + name = "Diagnostic HUD Implant" + desc = "These cybernetic eyes will display a diagnostic HUD over everything you see. Wiggle eyes to control." + id = "ci-diaghud" + build_type = PROTOLATHE | MECHFAB + construction_time = 50 + materials = list(MAT_METAL = 600, MAT_GLASS = 600, MAT_SILVER = 600, MAT_GOLD = 600) + build_path = /obj/item/organ/cyberimp/eyes/hud/diagnostic + category = list("Misc", "Medical Designs") + departmental_flags = DEPARTMENTAL_FLAG_MEDICAL /datum/design/cyberimp_xray name = "X-ray Eyes" diff --git a/code/modules/research/techweb/all_nodes.dm b/code/modules/research/techweb/all_nodes.dm index 8306596b028..9dc1973cd02 100644 --- a/code/modules/research/techweb/all_nodes.dm +++ b/code/modules/research/techweb/all_nodes.dm @@ -471,7 +471,7 @@ display_name = "Cybernetic Implants" description = "Electronic implants that improve humans." prereq_ids = list("adv_biotech", "datatheory") - design_ids = list("ci-nutriment", "ci-breather", "ci-gloweyes", "ci-welding", "ci-medhud", "ci-sechud") + design_ids = list("ci-nutriment", "ci-breather", "ci-gloweyes", "ci-welding", "ci-medhud", "ci-sechud", "ci-diaghud") research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500) export_price = 5000 diff --git a/code/modules/surgery/organs/augments_eyes.dm b/code/modules/surgery/organs/augments_eyes.dm index 86732ae2eb9..1289ddc587e 100644 --- a/code/modules/surgery/organs/augments_eyes.dm +++ b/code/modules/surgery/organs/augments_eyes.dm @@ -36,6 +36,11 @@ desc = "These cybernetic eye implants will display a security HUD over everything you see." HUD_type = DATA_HUD_SECURITY_ADVANCED +/obj/item/organ/cyberimp/eyes/hud/diagnostic + name = "Diagnostic HUD implant" + desc = "These cybernetic eye implants will display a diagnostic HUD over everything you see." + HUD_type = DATA_HUD_DIAGNOSTIC_ADVANCED + /obj/item/organ/cyberimp/eyes/hud/security/syndicate name = "Contraband Security HUD Implant" desc = "A Cybersun Industries brand Security HUD Implant. These illicit cybernetic eye implants will display a security HUD over everything you see."