From 6446d813da6ddc479713d44d56e1f18d2a384753 Mon Sep 17 00:00:00 2001 From: Mewchild Date: Fri, 7 Sep 2018 17:52:29 -0500 Subject: [PATCH] Adds Security Eyepatch --- .../client/preference_setup/loadout/loadout_eyes_vr.dm | 6 +++++- code/modules/clothing/glasses/hud_vr.dm | 8 ++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm b/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm index d8b29d0d92d..cb6fc32db58 100644 --- a/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm @@ -12,4 +12,8 @@ /datum/gear/eyes/science_proper display_name = "science goggles (no overlay)" - path = /obj/item/clothing/glasses/fluff/science_proper \ No newline at end of file + path = /obj/item/clothing/glasses/fluff/science_proper + +/datum/gear/eyes/secpatch + display_name = "security hudpatch" + path = /obj/item/clothing/glasses/hud/security/eyepatch \ No newline at end of file diff --git a/code/modules/clothing/glasses/hud_vr.dm b/code/modules/clothing/glasses/hud_vr.dm index c2b198bc701..cd92d1add91 100644 --- a/code/modules/clothing/glasses/hud_vr.dm +++ b/code/modules/clothing/glasses/hud_vr.dm @@ -161,3 +161,11 @@ mode = "best" flash_protection = FLASH_PROTECTION_MAJOR enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_CH_STATUS_R,VIS_CH_BACKUP,VIS_CH_WANTED) + +/obj/item/clothing/glasses/hud/security/eyepatch + name = "Security Hudpatch" + desc = "An eyepatch with built in scanners, that analyzes those in view and provides accurate data about their ID status and security records." + icon_state = "eyepatch" + item_state_slots = list(slot_r_hand_str = "blindfold", slot_l_hand_str = "blindfold") + body_parts_covered = 0 + enables_planes = list(VIS_CH_ID,VIS_CH_WANTED,VIS_CH_IMPTRACK,VIS_CH_IMPLOYAL,VIS_CH_IMPCHEM) \ No newline at end of file