diff --git a/code/modules/client/preference_setup/loadout/loadout_factions.dm b/code/modules/client/preference_setup/loadout/loadout_factions.dm index 5a490247327..dc890f75bd6 100644 --- a/code/modules/client/preference_setup/loadout/loadout_factions.dm +++ b/code/modules/client/preference_setup/loadout/loadout_factions.dm @@ -11,6 +11,11 @@ path = /obj/item/clothing/head/beret/security/idris faction = "Idris Incorporated" +/datum/gear/faction/idris_beret_alt + display_name = "idris beret (alt)" + path = /obj/item/clothing/head/beret/security/idris/alt + faction = "Idris Incorporated" + /datum/gear/faction/idris_uniform_alt display_name = "idris service skirt" description = "Not for security usage." diff --git a/code/modules/clothing/head/berets.dm b/code/modules/clothing/head/berets.dm index f2d66884833..51213e56f1a 100644 --- a/code/modules/clothing/head/berets.dm +++ b/code/modules/clothing/head/berets.dm @@ -124,11 +124,17 @@ item_state = "corp" /obj/item/clothing/head/beret/security/idris - name = "idris security beret" - desc = "A beret with the Idris Incorporated insignia emblazoned on it." + name = "idris beret" + desc = "A beret with the Idris Incorporated insignia emblazoned on it in a gold finish." icon_state = "idris" item_state = "idris" +/obj/item/clothing/head/beret/security/idris/alt + name = "idris beret" + desc = "A beret with the Idris Incorporated insignia emblazoned on it in a cyan finish." + icon_state = "idrisalt" + item_state = "idrisalt" + /obj/item/clothing/head/beret/security/zavodskoi name = "zavodskoi interstellar security beret" desc = "A black beret with the Zavodskoi Interstellar insignia emblazoned on it." diff --git a/html/changelogs/wickedcybs_beretalt.yml b/html/changelogs/wickedcybs_beretalt.yml new file mode 100644 index 00000000000..f36c47e2baa --- /dev/null +++ b/html/changelogs/wickedcybs_beretalt.yml @@ -0,0 +1,6 @@ +author: WickedCybs + +delete-after: True + +changes: + - rscadd: "Added an alternate Idris beret that has a cyan symbol rather than gold. This should help with colour cordination." \ No newline at end of file diff --git a/icons/obj/clothing/hats/berets.dmi b/icons/obj/clothing/hats/berets.dmi index 6902066409f..048a672173f 100644 Binary files a/icons/obj/clothing/hats/berets.dmi and b/icons/obj/clothing/hats/berets.dmi differ