diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index d2b32f720cf..021146e84dd 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -1785,4 +1785,18 @@ item_state = "voxbodysuit" item_color = "voxbodysuit" body_parts_covered = HEAD|UPPER_TORSO|LOWER_TORSO|LEGS|ARMS - species_fit = list("Vox") \ No newline at end of file + species_fit = list("Vox") + +/obj/item/clothing/glasses/night/fluff/reyblood //Reyblood: All characters + name = "Custom Night Vision Goggles" + desc = "These customized night vision goggles completely remove all darkness." + lighting_alpha = LIGHTING_PLANE_ALPHA_INVISIBLE + + var/limited_to_ckey = "reyblood" + +/obj/item/clothing/glasses/night/fluff/reyblood/mob_can_equip(mob/user, slot) + . = ..() + + if(. && user.ckey != limited_to_ckey) + to_chat(user, "These glasses can only be used by [limited_to_ckey], as they are not able to play the game with lighting enabled due to hardware limitations.") + . = FALSE