cyber mantles (#18189)

Co-authored-by: ShadowLarkens <shadowlarkens@gmail.com>
This commit is contained in:
Killian
2025-08-11 11:22:28 +01:00
committed by GitHub
parent 0342be1a58
commit d17e1cafb5
16 changed files with 108 additions and 8 deletions
@@ -9,6 +9,7 @@
/datum/gear/utility/implant/tracking
display_name = "implant, tracking"
description = "A simple tracking implant, designed to constantly report the subject's location. Usually implanted into those considered a security or flight risk, or for the purposes of restraining orders."
path = /obj/item/implant/tracking/weak
cost = 0
@@ -281,3 +281,33 @@
/datum/gear/eyes/bigshot
display_name = "Big Shot's Glasses"
path = /obj/item/clothing/glasses/sunglasses/bigshot
/datum/gear/eyes/ar_mantle
display_name = "Augmented Reality Mantle"
description = "A full-face, partially-obscuring visor. Covers the face and eyes. Has a simple augmented-reality display on the inside, and can be toggled into a corrective vision mode."
path = /obj/item/clothing/glasses/omnihud/mantle
/datum/gear/eyes/ar_mantle_sec
display_name = "Augmented Reality Mantle (Sec)"
description = "A full-face, partially-obscuring visor. Covers the face and eyes. Has a security-oriented augmented-reality display on the inside, and can be toggled into a corrective vision mode. Flash-resistant."
path = /obj/item/clothing/glasses/omnihud/mantle/sec
allowed_roles = list(JOB_SECURITY_OFFICER,JOB_HEAD_OF_SECURITY,JOB_WARDEN, JOB_DETECTIVE)
/datum/gear/eyes/ar_mantle_med
display_name = "Augmented Reality Mantle (Med)"
description = "A full-face, partially-obscuring visor. Covers the face and eyes. Has a medical-oriented augmented-reality display on the inside, and can be toggled into a corrective vision mode."
path = /obj/item/clothing/glasses/omnihud/mantle/med
allowed_roles = list(JOB_MEDICAL_DOCTOR,JOB_CHIEF_MEDICAL_OFFICER,JOB_CHEMIST,JOB_PARAMEDIC,JOB_GENETICIST, JOB_PSYCHIATRIST)
/datum/gear/eyes/ar_mantle_eng
display_name = "Augmented Reality Mantle (Eng)"
description = "A full-face, partially-obscuring visor. Covers the face and eyes. Has an engineering-oriented augmented-reality display on the inside, and can be toggled into a corrective vision mode. UV lining blocks flashes and welding glare."
path = /obj/item/clothing/glasses/omnihud/mantle/eng
allowed_roles = list(JOB_ENGINEER,JOB_CHIEF_ENGINEER,JOB_ATMOSPHERIC_TECHNICIAN)
/datum/gear/eyes/ar_mantle_cmd
display_name = "Augmented Reality Mantle (Command)"
description = "A full-face, partially-obscuring visor. Covers the face and eyes. Has a command-oriented augmented-reality display on the inside, and can be toggled into a corrective vision mode. Flash-resistant."
path = /obj/item/clothing/glasses/omnihud/mantle/cmd
cost = 2
allowed_roles = list(JOB_SITE_MANAGER,JOB_HEAD_OF_PERSONNEL)