diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index 7048007c572..d259e39a195 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -296,7 +296,6 @@ coat["dominia great coat, red"] = /obj/item/clothing/suit/storage/toggle/dominia coat["dominia great coat, gold"] = /obj/item/clothing/suit/storage/toggle/dominia/gold coat["dominia great coat, black"] = /obj/item/clothing/suit/storage/toggle/dominia/black - coat["dominian bomber jacket"] = /obj/item/clothing/suit/storage/toggle/dominia/bomber gear_tweaks += new/datum/gear_tweak/path(coat) /datum/gear/suit/dominia/consular @@ -305,6 +304,11 @@ path = /obj/item/clothing/suit/storage/dominia/consular allowed_roles = list("Consular Officer") +/datum/gear/suit/fisanduhian_bomber + display_name = "fisanduhian bomber jacket" + path = /obj/item/clothing/suit/storage/toggle/dominia/bomber + flags = GEAR_HAS_DESC_SELECTION + /datum/gear/suit/tcfl display_name = "Tau Ceti Foreign Legion jacket selection" description = "A selection of fine, surplus jackets of the Foreign Legion." diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform.dm b/code/modules/client/preference_setup/loadout/loadout_uniform.dm index d8bde7020e2..ce9b408aa11 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform.dm @@ -220,7 +220,6 @@ var/list/suit = list() suit["dominia suit, red"] = /obj/item/clothing/under/dominia suit["dominia suit, black"] = /obj/item/clothing/under/dominia/black - suit["dominia sweater"] = /obj/item/clothing/under/dominia/sweater suit["lyodsuit"] = /obj/item/clothing/under/dominia/lyodsuit suit["hoodied lyodsuit"] = /obj/item/clothing/under/dominia/lyodsuit/hoodie suit["dominia noblewoman dress"] = /obj/item/clothing/under/dominia/dress @@ -253,6 +252,11 @@ consular["dominian consular officer's uniform, feminine"] = /obj/item/clothing/under/dominia/consular/dress gear_tweaks += new/datum/gear_tweak/path(consular) +/datum/gear/uniform/fisanduhian_sweater + display_name = "fisanduhian sweater" + path = /obj/item/clothing/under/dominia/sweater + flags = GEAR_HAS_DESC_SELECTION + /datum/gear/uniform/elyra_holo display_name = "elyran holographic suit selection" description = "A marvel of Elyran technology, uses hardlight fabric and masks to transform a skin-tight, cozy suit into cultural apparel of your choosing. Has a dial for Midenean, Aemaqii and Persepolis clothes respectively." diff --git a/code/modules/clothing/factions/dominia.dm b/code/modules/clothing/factions/dominia.dm index dacb1c3928a..a7cdb21cabd 100644 --- a/code/modules/clothing/factions/dominia.dm +++ b/code/modules/clothing/factions/dominia.dm @@ -107,8 +107,12 @@ item_state = "dominia_noble_black" /obj/item/clothing/suit/storage/toggle/dominia/bomber - name = "dominia bomber jacket" - desc = "This is a bomber jacket of Dominian style." + name = "fisanduhian bomber jacket" + desc = "A bomber jacket based off of styles created by Fisanduhian refugees. The double-breasted design works well for insulating \ + heat, or concealing a small pistol." + desc_fluff = "Fisanduhian fashion remains as rugged and steadfast as its people, as well as very distinctive from the usual Morozi fashions \ + sourced from Moroz proper. Bomber jackets such as these were also frequently seen worn by members of the Fisanduh Freedom Front and came \ + to be seen as an enduring symbol of their struggle for liberty." icon = 'icons/clothing/suits/coats/dominia_bomber.dmi' icon_state = "dominia_bomber" item_state = "dominia_bomber" @@ -130,8 +134,12 @@ item_state = "dominia_uniform_black" /obj/item/clothing/under/dominia/sweater - name = "dominia sweater" - desc = "This is a sweater of Dominian style." + name = "fisanduhian sweater" + desc = "This is a sweater of Fisanduhian style. Practical and utilitarian." + desc_fluff = "Fisanduhian fashion remains as rugged and steadfast as its people, as well as very distinctive from the usual Morozi fashions \ + sourced from Moroz proper. Sweaters such as this were a common sight in the region of Fisanduh, being comfortable to wear and very useful \ + in the cold mountainous environment they lived in. It tends to be seen as something rather basic and droll by Imperials when compared \ + to their more extravagant and colorful attire, but this suits the Confederates just fine." icon = 'icons/clothing/under/uniforms/dominia_sweater.dmi' icon_state = "dom_sweater" item_state = "dom_sweater" @@ -427,6 +435,9 @@ /obj/item/clothing/head/ushanka/dominia name = "fisanduhian ushanka" desc = "A warm fur hat with ear flaps that can be raised and tied to be out of the way. This one has a large Fisanduhian flag on the front." + desc_fluff = "Fisanduhian fashion remains as rugged and steadfast as its people, as well as very distinctive from the usual Morozi fashions \ + sourced from Moroz proper. Ushankas such as these are still a common sight in the semi-autonomous region of Fisanduh, flag and all. Much to \ + the ire of Moroz's Imperials." icon_state = "fishushanka" item_state = "fishushanka" diff --git a/html/changelogs/wickedcybs_fisanduhification.yml b/html/changelogs/wickedcybs_fisanduhification.yml new file mode 100644 index 00000000000..4453e4d19d0 --- /dev/null +++ b/html/changelogs/wickedcybs_fisanduhification.yml @@ -0,0 +1,6 @@ +author: WickedCybs + +delete-after: True + +changes: + - tweak: "Refluffs the Dominian sweater and Bomber coat to be representative Fisanduh as it fit the overall style more, and removes them from the Dominian clothing selections, having them be their own unique selection instead. They also have new fluff descriptions. Cool." \ No newline at end of file