diff --git a/code/modules/research/designs/medical_designs.dm b/code/modules/research/designs/medical_designs.dm index 30557875f5b..ce89c24011b 100644 --- a/code/modules/research/designs/medical_designs.dm +++ b/code/modules/research/designs/medical_designs.dm @@ -459,6 +459,17 @@ build_path = /obj/item/organ/internal/cyberimp/eyes/hud/diagnostic category = list("Medical") +/datum/design/cyberimp_employment_hud + name = "Employment HUD Implant" + desc = "These cybernetic eyes will display an employment HUD over everything you see. Wiggle eyes to control." + id = "ci-skillhud" + req_tech = list("materials" = 5, "programming" = 4, "biotech" = 4) + build_type = PROTOLATHE | MECHFAB + construction_time = 5 SECONDS + materials = list(MAT_METAL = 600, MAT_GLASS = 600, MAT_SILVER = 500, MAT_GOLD = 500) + build_path = /obj/item/organ/internal/cyberimp/eyes/hud/skill + category = list("Medical") + /datum/design/cyberimp_medical_hud name = "Medical HUD Implant" desc = "These cybernetic eyes will display a medical 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 7803afe11b4..ba01455b9d3 100644 --- a/code/modules/surgery/organs/augments_eyes.dm +++ b/code/modules/surgery/organs/augments_eyes.dm @@ -50,6 +50,14 @@ aug_message = "You see the diagnostic information of the synthetics around you..." HUD_type = DATA_HUD_DIAGNOSTIC_ADVANCED +/obj/item/organ/internal/cyberimp/eyes/hud/skill + name = "Employment HUD implant" + desc = "These cybernetic eye implants will display an employment HUD over everything you see." + icon_state = "eye_implant_skill" + origin_tech = "materials=4;programming=4;biotech=3" + aug_message = "Employment records pop up next to everyone. So many cases of surgical malpractice..." + HUD_type = DATA_HUD_SECURITY_BASIC + /obj/item/organ/internal/cyberimp/eyes/hud/security name = "Security HUD implant" desc = "These cybernetic eye implants will display a security HUD over everything you see." diff --git a/icons/obj/surgery.dmi b/icons/obj/surgery.dmi index f1c9ac07b82..a4ceb595daf 100644 Binary files a/icons/obj/surgery.dmi and b/icons/obj/surgery.dmi differ