diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index 7f70aea25e1..1cca87f102e 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -217,10 +217,21 @@ allowed_roles = list("Head of Security") /datum/gear/suit/dominia_cape - display_name = "dominia cape" + display_name = "dominian cape" path = /obj/item/clothing/accessory/poncho/dominia_cape flags = GEAR_HAS_DESC_SELECTION +/datum/gear/suit/dominia_cape/New() + ..() + var/dominiacape = list() + dominiacape["dominian cape"] = /obj/item/clothing/accessory/poncho/dominia_cape + dominiacape["dominian cape, strelitz"] = /obj/item/clothing/accessory/poncho/dominia_cape/strelitz + dominiacape["dominian cape, volvalaad"] = /obj/item/clothing/accessory/poncho/dominia_cape/volvalaad + dominiacape["dominian cape, kazhkz"] = /obj/item/clothing/accessory/poncho/dominia_cape/kazhkz + dominiacape["dominian cape, caladius"] = /obj/item/clothing/accessory/poncho/dominia_cape/caladius + dominiacape["dominian cape, zhao"] = /obj/item/clothing/accessory/poncho/dominia_cape/zhao + gear_tweaks += new/datum/gear_tweak/path(dominiacape) + /datum/gear/suit/dominia display_name = "dominia coat and jacket selection" description = "A selection of Dominian coats and jackets." diff --git a/code/modules/clothing/factions/dominia.dm b/code/modules/clothing/factions/dominia.dm index 63969926f42..91134d1b919 100644 --- a/code/modules/clothing/factions/dominia.dm +++ b/code/modules/clothing/factions/dominia.dm @@ -41,14 +41,44 @@ contained_sprite = TRUE /obj/item/clothing/accessory/poncho/dominia_cape - name = "dominia cape" - desc = "This is a cape in the style of Dominia nobility. It's the latest fashion across Dominian space." + name = "dominian cape" + desc = "This is a cape in the style of Dominian nobility. It's the latest fashion across Dominian space." icon = 'icons/clothing/suits/capes/dominia.dmi' icon_state = "dominian_cape" item_state = "dominian_cape" icon_override = null contained_sprite = TRUE +/obj/item/clothing/accessory/poncho/dominia_cape/strelitz + name = "house strelitz cape" + desc = "This is a cape in the style of Dominian nobility. This one is in the colours of House Strelitz." + icon_state = "strelitz_cape" + item_state = "strelitz_cape" + +/obj/item/clothing/accessory/poncho/dominia_cape/volvalaad + name = "house volvalaad cape" + desc = "This is a cape in the style of Dominian nobility. This one is in the colours of House Volvalaad." + icon_state = "volvalaad_cape" + item_state = "volvalaad_cape" + +/obj/item/clothing/accessory/poncho/dominia_cape/kazhkz + name = "house kazhkz cape" + desc = "This is a cape in the style of Dominian nobility. This one is in the colours of House Kazhkz." + icon_state = "kazhkz_cape" + item_state = "kazhkz_cape" + +/obj/item/clothing/accessory/poncho/dominia_cape/caladius + name = "house caladius cape" + desc = "This is a cape in the style of Dominian nobility. This one is in the colours of House Caladius." + icon_state = "caladius_cape" + item_state = "caladius_cape" + +/obj/item/clothing/accessory/poncho/dominia_cape/zhao + name = "house zhao cape" + desc = "This is a cape in the style of Dominian nobility. This one is in the colours of House Zhao." + icon_state = "zhao_cape" + item_state = "zhao_cape" + /obj/item/clothing/suit/storage/toggle/dominia name = "dominia great coat" desc = "This is a great coat in the style of Dominia nobility. It's the latest fashion across Dominian space." diff --git a/html/changelogs/thedococt - great house capes.yml b/html/changelogs/thedococt - great house capes.yml new file mode 100644 index 00000000000..4a57ec5d29b --- /dev/null +++ b/html/changelogs/thedococt - great house capes.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: TheDocOct + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Adds five new variants of the Dominian cape, one for each Great House." diff --git a/icons/clothing/suits/capes/dominia.dmi b/icons/clothing/suits/capes/dominia.dmi index a2db5cb1908..4810188927d 100644 Binary files a/icons/clothing/suits/capes/dominia.dmi and b/icons/clothing/suits/capes/dominia.dmi differ