diff --git a/code/modules/clothing/glasses/hud.dm b/code/modules/clothing/glasses/hud.dm index 67e001987d2..e52f5c303be 100644 --- a/code/modules/clothing/glasses/hud.dm +++ b/code/modules/clothing/glasses/hud.dm @@ -200,13 +200,24 @@ /obj/item/clothing/glasses/hud/skills name = "Skills HUD" desc = "A heads-up display capable of showing the employment history records of NT crew members." - icon_state = "material" + icon_state = "skill" item_state = "glasses" + sprite_sheets = list( + "Drask" = 'icons/mob/species/drask/eyes.dmi', + "Grey" = 'icons/mob/species/grey/eyes.dmi', + "Vox" = 'icons/mob/species/vox/eyes.dmi' + ) /obj/item/clothing/glasses/hud/skills/sunglasses name = "Skills HUD Sunglasses" desc = "Sunglasses with a build-in skills HUD, showing the employment history of nearby NT crew members." + icon_state = "sunhudskill" see_in_dark = 1 // None of these three can be converted to booleans. Do not try it. flash_protect = 1 tint = 1 prescription_upgradable = TRUE + sprite_sheets = list( + "Drask" = 'icons/mob/species/drask/eyes.dmi', + "Grey" = 'icons/mob/species/grey/eyes.dmi', + "Vox" = 'icons/mob/species/vox/eyes.dmi' + ) diff --git a/icons/mob/eyes.dmi b/icons/mob/eyes.dmi index 6f3e3f0ea2e..8620822ca5d 100644 Binary files a/icons/mob/eyes.dmi and b/icons/mob/eyes.dmi differ diff --git a/icons/mob/species/drask/eyes.dmi b/icons/mob/species/drask/eyes.dmi index 92b8d7c2190..697a8c7fa8d 100644 Binary files a/icons/mob/species/drask/eyes.dmi and b/icons/mob/species/drask/eyes.dmi differ diff --git a/icons/mob/species/grey/eyes.dmi b/icons/mob/species/grey/eyes.dmi index c3914dfd0be..522756904f0 100644 Binary files a/icons/mob/species/grey/eyes.dmi and b/icons/mob/species/grey/eyes.dmi differ diff --git a/icons/mob/species/vox/eyes.dmi b/icons/mob/species/vox/eyes.dmi index dfa565dd2a7..4d3e8c984dd 100644 Binary files a/icons/mob/species/vox/eyes.dmi and b/icons/mob/species/vox/eyes.dmi differ diff --git a/icons/obj/clothing/glasses.dmi b/icons/obj/clothing/glasses.dmi index fb4063c1bf4..c17502604fe 100644 Binary files a/icons/obj/clothing/glasses.dmi and b/icons/obj/clothing/glasses.dmi differ