From cd4f3c4eb94e02e60b184a0e3c8141e17320ae98 Mon Sep 17 00:00:00 2001 From: William Anderson Date: Thu, 27 Jun 2024 20:24:33 -0700 Subject: [PATCH] Adds hydroponic HUD implant (#25948) * Created hydroponic HUD implant Created a hydroponic HUD implant to match the medical, security, diagnostic, and janitorial implants. * Update code/modules/research/designs/medical_designs.dm Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> Signed-off-by: William Anderson * Update code/modules/surgery/organs/augments_eyes.dm Signed-off-by: DGamerL <108773801+DGamerL@users.noreply.github.com> --------- Signed-off-by: William Anderson Signed-off-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> --- code/modules/research/designs/medical_designs.dm | 11 +++++++++++ code/modules/surgery/organs/augments_eyes.dm | 10 +++++++++- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/code/modules/research/designs/medical_designs.dm b/code/modules/research/designs/medical_designs.dm index 174f2ba9b3f..736434a7bfd 100644 --- a/code/modules/research/designs/medical_designs.dm +++ b/code/modules/research/designs/medical_designs.dm @@ -480,6 +480,17 @@ build_path = /obj/item/organ/internal/cyberimp/eyes/hud/medical category = list("Medical") +/datum/design/cyberimp_hydroponics_hud + name = "Hydroponic HUD Implant" + desc = "These cybernetic eye implants will display a hydroponics HUD over everything you see. Wiggle eyes to control." + id = "ci-hydrohud" + req_tech = list("materials" = 5, "programming" = 4, "biotech" = 4, "magnets" = 3) + build_type = PROTOLATHE | MECHFAB + construction_time = 5 SECONDS + materials = list(MAT_METAL = 600, MAT_GLASS = 600, MAT_SILVER = 700, MAT_GOLD = 500) + build_path = /obj/item/organ/internal/cyberimp/eyes/hud/hydroponic + category = list("Medical") + /datum/design/cyberimp_security_hud name = "Security HUD Implant" desc = "These cybernetic eyes will display a security HUD over everything you see. Wiggle eyes to control." diff --git a/code/modules/surgery/organs/augments_eyes.dm b/code/modules/surgery/organs/augments_eyes.dm index d1d53dbb77a..cfadb5fef4d 100644 --- a/code/modules/surgery/organs/augments_eyes.dm +++ b/code/modules/surgery/organs/augments_eyes.dm @@ -65,7 +65,15 @@ /obj/item/organ/internal/cyberimp/eyes/hud/jani name = "Janitor HUD implant" desc = "These cybernetic eye implants will display a filth HUD over everything you see." - implant_color = "#AF00AF" + implant_color = "#DFBE00" origin_tech = "materials=4;engineering=4;biotech=4" aug_message = "You scan for filth spots around you..." HUD_type = DATA_HUD_JANITOR + +/obj/item/organ/internal/cyberimp/eyes/hud/hydroponic + name = "Hydroponic HUD implant" + desc = "These cybernetic eye implants will display a botanical HUD over everything you see." + implant_color = "#4850D5" + origin_tech = "materials=4;magnets=4;biotech=4" + aug_message = "You scan for non-plastic plants around you..." + HUD_type = DATA_HUD_HYDROPONIC