diff --git a/code/modules/client/preference_setup/loadout/loadout_factions.dm b/code/modules/client/preference_setup/loadout/loadout_factions.dm index 049798e14c5..0b2013d6f09 100644 --- a/code/modules/client/preference_setup/loadout/loadout_factions.dm +++ b/code/modules/client/preference_setup/loadout/loadout_factions.dm @@ -70,6 +70,15 @@ path = /obj/item/clothing/head/beret/security/zavodskoi/alt sort_category = "Factions" +/datum/gear/faction/zavodskoi_softcap + display_name = "black zavodskoi cap" + path = /obj/item/clothing/head/softcap/zavod + faction = "Zavodskoi Interstellar" + +/datum/gear/faction/zavodskoi_softcap/alt + display_name = "brown zavodskoi cap" + path = /obj/item/clothing/head/softcap/zavod/alt + /datum/gear/faction/zavodskoi_uniform_alt display_name = "brown zavodskoi uniform" path = /obj/item/clothing/under/rank/security/zavodskoi/alt diff --git a/code/modules/clothing/head/soft_caps.dm b/code/modules/clothing/head/soft_caps.dm index 7d7b7a93de7..733ff98b4dc 100644 --- a/code/modules/clothing/head/soft_caps.dm +++ b/code/modules/clothing/head/soft_caps.dm @@ -132,3 +132,14 @@ name = "eridani cap" desc = "A grey EPMC fatigue cap with the symbol of the Eridani Corporate Federation on its front. For amoral mercenaries that prefer style over protection." icon_state = "eridani" + +/obj/item/clothing/head/softcap/zavod + name = "zavodskoi cap" + desc = "A black company-issue Zavokdskoi cap with the symbol of the corporation at its front." + icon_state = "zavodb" + item_state = "zavodb" + +/obj/item/clothing/head/softcap/zavod/alt + desc = "A tan company-issue Zavokdskoi cap with the symbol of the corporation at its front." + icon_state = "zavod" + item_state = "zavod" \ No newline at end of file diff --git a/html/changelogs/wickedcybs_softcap.yml b/html/changelogs/wickedcybs_softcap.yml new file mode 100644 index 00000000000..821d792a5db --- /dev/null +++ b/html/changelogs/wickedcybs_softcap.yml @@ -0,0 +1,6 @@ +author: WickedCybs, YourDaddy117 + +delete-after: True + +changes: + - rscadd: "Added Zavodskoi softcaps to the faction item selection. Comes in tan and black." \ No newline at end of file diff --git a/icons/obj/clothing/hats/soft_caps.dmi b/icons/obj/clothing/hats/soft_caps.dmi index adc60064dd1..fc19cf47edf 100644 Binary files a/icons/obj/clothing/hats/soft_caps.dmi and b/icons/obj/clothing/hats/soft_caps.dmi differ