diff --git a/code/modules/client/preferences_gear.dm b/code/modules/client/preferences_gear.dm index c822bedd0f7b..c709efa35f37 100644 --- a/code/modules/client/preferences_gear.dm +++ b/code/modules/client/preferences_gear.dm @@ -37,6 +37,10 @@ GLOBAL_LIST_EMPTY(gear_datums_by_name) display_name = "Eyepatch" path = /obj/item/clothing/glasses/eyepatch +/datum/gear/eyewear/eyepatch/white + display_name = "White Eyepatch" + path = /obj/item/clothing/glasses/eyepatch/white + /datum/gear/eyewear/rpg_glasses display_name = "Marine RPG Glasses" path = /obj/item/clothing/glasses/regular diff --git a/code/modules/clothing/glasses/glasses.dm b/code/modules/clothing/glasses/glasses.dm index 88605cb3b792..877ecc4b365d 100644 --- a/code/modules/clothing/glasses/glasses.dm +++ b/code/modules/clothing/glasses/glasses.dm @@ -194,6 +194,15 @@ flags_armor_protection = 0 flags_equip_slot = SLOT_EYES|SLOT_FACE +/obj/item/clothing/glasses/eyepatch/white + name = "white eyepatch" + gender = NEUTER + desc = "A white rectangular eyepatch made out of cloth, ostensibly for medical purposes. Still, even while recovering from an injury, do not underestimate the power of the Tyrant Eye!" + icon_state = "eyepatch_white" + item_state = "eyepatch_white" + flags_armor_protection = 0 + flags_equip_slot = SLOT_EYES|SLOT_FACE + /obj/item/clothing/glasses/monocle name = "monocle" gender = NEUTER diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index 26c92f632ee2..5d5fea248a3e 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -260,6 +260,7 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( /obj/item/clothing/glasses/sunglasses/big = "bigsunglasses", /obj/item/clothing/glasses/sunglasses/sechud = "sechud", /obj/item/clothing/glasses/eyepatch = "eyepatch", + /obj/item/clothing/glasses/eyepatch/white = "white eyepatch", /obj/item/clothing/glasses/regular/hipster = "persc-glasses", // WALKMAN AND CASSETTES diff --git a/icons/mob/humans/onmob/eyes.dmi b/icons/mob/humans/onmob/eyes.dmi index c4d743f61e38..7904a95d6c63 100644 Binary files a/icons/mob/humans/onmob/eyes.dmi and b/icons/mob/humans/onmob/eyes.dmi differ diff --git a/icons/obj/items/clothing/glasses.dmi b/icons/obj/items/clothing/glasses.dmi index 13dd0c542c6e..7495972a1fc8 100644 Binary files a/icons/obj/items/clothing/glasses.dmi and b/icons/obj/items/clothing/glasses.dmi differ