From fb3bc5b978ae8cf27e8b6d28dcbde79539fec4d3 Mon Sep 17 00:00:00 2001 From: TheStryker Date: Sun, 11 Apr 2021 00:33:11 +0800 Subject: [PATCH] Adds Dominian consular items to the loadout. (#11314) --- .gitignore | 2 +- .../loadout/loadout_accessories.dm | 16 +++ .../preference_setup/loadout/loadout_head.dm | 5 + .../loadout/loadout_religion.dm | 24 +++- .../preference_setup/loadout/loadout_suit.dm | 8 +- .../loadout/loadout_uniform.dm | 13 +++ code/modules/clothing/factions/dominia.dm | 109 +++++++++++++++++- html/changelogs/stryker-dominia.yml | 8 ++ icons/clothing/accessories/dominia_sash.dmi | Bin 0 -> 1081 bytes .../clothing/head/dominia_beret_consular.dmi | Bin 0 -> 1202 bytes icons/clothing/head/dominia_consular_cap.dmi | Bin 0 -> 490 bytes .../suits/capes/dominia_consular_cape.dmi | Bin 0 -> 942 bytes .../suits/coats/dominia_consular_coat.dmi | Bin 0 -> 688 bytes .../under/uniforms/dominia_consular.dmi | Bin 0 -> 1022 bytes .../uniforms/dominia_consular_priest.dmi | Bin 0 -> 922 bytes 15 files changed, 180 insertions(+), 5 deletions(-) create mode 100644 html/changelogs/stryker-dominia.yml create mode 100644 icons/clothing/accessories/dominia_sash.dmi create mode 100644 icons/clothing/head/dominia_beret_consular.dmi create mode 100644 icons/clothing/head/dominia_consular_cap.dmi create mode 100644 icons/clothing/suits/capes/dominia_consular_cape.dmi create mode 100644 icons/clothing/suits/coats/dominia_consular_coat.dmi create mode 100644 icons/clothing/under/uniforms/dominia_consular.dmi create mode 100644 icons/clothing/under/uniforms/dominia_consular_priest.dmi diff --git a/.gitignore b/.gitignore index a233a2a2a2b..20e6a5b53aa 100644 --- a/.gitignore +++ b/.gitignore @@ -17,4 +17,4 @@ __pycache__/ *$py.class /.atom-build.json .vscode/ -.vs/ +.vs/ \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories.dm b/code/modules/client/preference_setup/loadout/loadout_accessories.dm index 633658be241..4d46de882ec 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories.dm @@ -293,6 +293,22 @@ gadpathur["medical cadre brassard"] = /obj/item/clothing/accessory/armband/gadpathur/med gear_tweaks += new/datum/gear_tweak/path(gadpathur) +/datum/gear/accessory/dominia/sash + display_name = "dominian house sash selection" + description = "A selection of sashes representing the Great Houses of Dominia." + path = /obj/item/clothing/accessory/dominia/sash + +/datum/gear/accessory/dominia/sash/New() + ..() + var/dominia = list() + dominia["dominian sash"] = /obj/item/clothing/accessory/dominia/sash + dominia["strelitz sash"] = /obj/item/clothing/accessory/dominia/sash/strelitz + dominia["volvalaad sash"] = /obj/item/clothing/accessory/dominia/sash/volvalaad + dominia["kazhkz sash"] = /obj/item/clothing/accessory/dominia/sash/kazhkz + dominia["caladius sash"] = /obj/item/clothing/accessory/dominia/sash/caladius + dominia["zhao sash"] =/obj/item/clothing/accessory/dominia/sash/zhao + gear_tweaks += new/datum/gear_tweak/path(dominia) + /datum/gear/accessory/passcard display_name = "human passcard selection" path = /obj/item/clothing/accessory/badge/passcard diff --git a/code/modules/client/preference_setup/loadout/loadout_head.dm b/code/modules/client/preference_setup/loadout/loadout_head.dm index ddfaec3e7fa..3b14802e748 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head.dm @@ -327,3 +327,8 @@ display_name = "fisanduhian ushanka" path = /obj/item/clothing/head/ushanka/dominia flags = GEAR_HAS_DESC_SELECTION + +/datum/gear/head/dominia_consular + display_name = "dominian consular cap" + path = /obj/item/clothing/head/dominia + allowed_roles = list("Consular Officer") diff --git a/code/modules/client/preference_setup/loadout/loadout_religion.dm b/code/modules/client/preference_setup/loadout/loadout_religion.dm index 256630da567..d8cf691d9fc 100644 --- a/code/modules/client/preference_setup/loadout/loadout_religion.dm +++ b/code/modules/client/preference_setup/loadout/loadout_religion.dm @@ -65,6 +65,28 @@ display_name = "tribunal necklace" path = "/obj/item/clothing/accessory/dominia" +/datum/gear/religion/shaman_staff + display_name = "shaman staff" + path = /obj/item/cane/shaman + +/datum/gear/religion/dominia/robe_consular + display_name = "tribunalist consular uniform" + description = "The traditional red-black-gold uniform of a priestly member of His Majesty's Diplomatic Service." + path = /obj/item/clothing/under/dominia/priest/consular + allowed_roles = list("Consular Officer") + +/datum/gear/religion/dominia/beret_consular + display_name = "tribunalist consular beret" + description = "A n elegant and well-tailored gold-and-red beret worn by priestly members of His Majesty's Diplomatic Service." + path = /obj/item/clothing/head/beret/dominia/consular + allowed_roles = list("Consular Officer") + +/datum/gear/religion/dominia/cape_consular + display_name = "tribunalist cousular cape" + description = "A truly majestic gold and red cape worn by members of the clergy affiliated with His Majesty's Diplomatic Service." + path = /obj/item/clothing/accessory/poncho/dominia/consular + allowed_roles = list("Consular Officer") + /datum/gear/religion/assunzione/accessory display_name = "luceian amulet" path = "/obj/item/clothing/accessory/assunzione" @@ -77,4 +99,4 @@ /datum/gear/religion/assunzionesheath display_name = "assunzione warding sphere sheath" description = "A small metal shell designed to hold a warding sphere." - path = "/obj/item/storage/assunzionesheath" \ No newline at end of file + path = "/obj/item/storage/assunzionesheath" diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index 20f1f8473c2..7048007c572 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -299,6 +299,12 @@ 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 + display_name = "dominian consular officer greatcoat" + description = "A Dominian great coat belonging to the Diplomatic Service." + path = /obj/item/clothing/suit/storage/dominia/consular + allowed_roles = list("Consular Officer") + /datum/gear/suit/tcfl display_name = "Tau Ceti Foreign Legion jacket selection" description = "A selection of fine, surplus jackets of the Foreign Legion." @@ -410,4 +416,4 @@ /datum/gear/suit/gadpathur display_name = "gadpathurian overcoat" path = /obj/item/clothing/suit/storage/gadpathur - flags = GEAR_HAS_DESC_SELECTION + flags = GEAR_HAS_DESC_SELECTION \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform.dm b/code/modules/client/preference_setup/loadout/loadout_uniform.dm index b9e73c44c6a..d8bde7020e2 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform.dm @@ -240,6 +240,19 @@ suit["[D.name]"] = D.type gear_tweaks += new/datum/gear_tweak/path(suit) +/datum/gear/uniform/dominia_consular + display_name = "dominian consular clothing selection" + description = "A selection of Dominian clothing belonging to the Diplomatic Service." + path = /obj/item/clothing/under/dominia/consular + allowed_roles = list("Consular Officer") + +/datum/gear/uniform/dominia_consular/New() + ..() + var/list/consular = list() + consular["dominian consular officer's uniform, masculine"] = /obj/item/clothing/under/dominia/consular + 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/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 46f078dc677..ef9ce82e515 100644 --- a/code/modules/clothing/factions/dominia.dm +++ b/code/modules/clothing/factions/dominia.dm @@ -79,6 +79,15 @@ icon_state = "zhao_cape" item_state = "zhao_cape" +/obj/item/clothing/suit/storage/dominia/consular + name = "Dominian consular officer's greatcoat" + desc = "A Dominian greatcoat issued to members of His Majesty's Diplomatic Service, designed in the typical Dominian fashion." + desc_fluff = "His Majesty's Diplomatic Service - as with much of the Empire tends to be dominated by the great houses, though \ + the Service also employs many commoners - as long as they can pass the rigorous examinations required to become a full member." + icon = 'icons/clothing/suits/coats/dominia_consular_coat.dmi' + icon_state = "dominia_consular_coat" + item_state = "dominia_consular_coat" + /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." @@ -304,6 +313,35 @@ update_icon() update_clothing_icon() +/obj/item/clothing/accessory/poncho/dominia/consular + name = "tribunalist consular's cape" + desc = "A truly majestic gold and red cape worn by members of the clergy affiliated with His Majesty's Diplomatic Service." + desc_fluff = "His Majesty's Diplomatic Service - as with much of the Empire tends to be dominated by the great houses, though the Service also \ + employs may commoners - as long as they can pass the rigorous examinations required to become a full member of the Diplomatic Service." + icon = 'icons/clothing/suits/capes/dominia_consular_cape.dmi' + icon_state = "dominia_cape_consular" + item_state = "dominia_cape_consular" + overlay_state = "dominia_cape_consular" + contained_sprite = TRUE + icon_override = null + var/rolled = FALSE + +/obj/item/clothing/under/dominia/consular + name = "dominian consular officer's uniform" + desc = "The traditional red-black-gold uniform of a member of His Majesty's Diplomatic Service." + desc_fluff = "His Majesty's Diplomatic Service - as with much of the Empire tends to be dominated by the great houses, though the Service also employs many \ + commoners - as long as they can pass the rigorous examinations required to become a full member of the Diplomatic Service." + icon = 'icons/clothing/under/uniforms/dominia_consular.dmi' + icon_state = "dominia_consular" + item_state = "dominia_consular" + +/obj/item/clothing/under/dominia/consular/dress + name = "dominian consular officer's uniform" + desc = "The traditional red-black-gold uniform of a member of His Majesty's Diplomatic Service. This variant has a skirt, for the female diplomat on the go." + icon = 'icons/clothing/under/uniforms/dominia_consular.dmi' + icon_state = "dominia_consular_fem" + item_state = "dominia_consular_fem" + /obj/item/clothing/under/dominia/initiate name = "tribunal initiate's robe" desc = "A simple white robe with red trim and a red sash to fasten it. It's commonly worn by initiates of the Moroz Holy Tribunal." @@ -327,6 +365,26 @@ item_state = "dominia_priest" slot_flags = SLOT_OCLOTHING | SLOT_ICLOTHING +/obj/item/clothing/under/dominia/priest/consular + name = "tribunalist consular's uniform" + desc = "The traditional red-black-gold uniform of a priestly member of His Majesty's Diplomatic Service." + desc_fluff = "His Majesty's Diplomatic Service - as with much of the Empire tends to be dominated by the great houses, though the Service also employs many commoners \ + - as long as they can pass the rigorous examinations required to become a full member of the Diplomatic Service." + icon = 'icons/clothing/under/uniforms/dominia_consular_priest.dmi' + icon_state = "dominia_consular_priest" + item_state = "dominia_consular_priest" + slot_flags = SLOT_OCLOTHING | SLOT_ICLOTHING + +/obj/item/clothing/head/dominia + name = "dominian consular officer's dress cap" + desc = "A quite fashionable cap issued to the members of His Majesty's Diplomatic Service." + desc_fluff = "His Majesty's Diplomatic Service - as with much of the Empire tends to be dominated by the great houses, though the Service also employs many \ + commoners - as long as they can pass the rigorous examinations required to become a full member of the Diplomatic Service." + icon = 'icons/clothing/head/dominia_consular_cap.dmi' + icon_state = "dominia_consular_cap" + item_state = "dominia_consular_cap" + contained_sprite = TRUE + /obj/item/clothing/head/beret/dominia name = "tribunal initiate's beret" desc = "A simple red beret with a golden badge marking its wearer as an initiate of the Moroz Holy Tribunal." @@ -345,6 +403,15 @@ icon_state = "dominia_beret_priest" item_state = "dominia_beret_priest" +/obj/item/clothing/head/beret/dominia/consular + name = "tribunalist’s beret" + desc = "A beret in gold and red worn by members of the clergy affiliated with His Majesty's Diplomatic Service." + desc_fluff = "His Majesty's Diplomatic Service - as with much of the Empire tends to be dominated by the great houses, though the Service also employs may commoners - \ + as long as they can pass the rigorous examinations required to become a full member of the Diplomatic Service." + icon = 'icons/clothing/head/dominia_beret_consular.dmi' + icon_state = "dominia_beret_consular_priest" + item_state = "dominia_beret_consular_priest" + /obj/item/clothing/accessory/dominia name = "tribunal necklace" desc = "An amulet depicting 'The Eye', a prominent symbol of the Moroz Holy Tribunal worn by its clergy and layfolk alike." @@ -366,8 +433,8 @@ name = "Morozi dress" desc = "Feminine commoner's fashion from the Empire of Dominia. This particular variant has sleeves." desc_fluff = "Dresses such as this one are a common sight in the more developed colonies of the Empire of Dominia, and their origins can be traced back to \ - the fashion houses of Nova Luxembourg. While both sleeved and sleeveless variants exist, the sleeved one is far more common \ - due to the often frigid temperatures of Moroz." + the fashion houses of Nova Luxembourg. While both sleeved and sleeveless variants exist, the sleeved one is far more common \ + due to the often frigid temperatures of Moroz." icon = 'icons/clothing/under/uniforms/dominia_dresses.dmi' icon_state = "morozi_dress" item_state = "morozi_dress" @@ -441,4 +508,42 @@ name = "sleeveless house kazhkz Morozi dress" house = "kazhkz" +/obj/item/clothing/accessory/dominia/sash + name = "dominian sash" + desc = "A sash worn by commoners affiliated with a Dominian great house, intended for use when a cape is impractical. This one seems to represent Dominia as a whole, however." + desc_fluff = "Sashes such as this one are a common sight throughout the Empire of Dominia, though they are hardly as fashionable as the typical cape. While they are \ + often used in formal uniforms - such as for attendants and domestic staff - these sashes can also be found used in positions where wearing a cape is impractical, such as the medical field." + icon = 'icons/clothing/accessories/dominia_sash.dmi' + item_state = "dominia_sash" + icon_state = "dominia_sash" + contained_sprite = TRUE +/obj/item/clothing/accessory/dominia/sash/strelitz + name = "strelitz sash" + desc = "A sash worn by commoners affiliated with a Dominian great house, intended for use when a cape is impractical. This one marks its wearer as an affiliate of House Strelitz." + item_state = "strelitz_sash" + icon_state = "strelitz_sash" + +/obj/item/clothing/accessory/dominia/sash/volvalaad + name = "volvalaad sash" + desc = "A sash worn by commoners affiliated with a Dominian great house, intended for use when a cape is impractical. This one marks its wearer as an affiliate of House Volvalaad." + item_state = "volvalaad_sash" + icon_state = "volvalaad_sash" + +/obj/item/clothing/accessory/dominia/sash/kazhkz + name = "kazhkz sash" + desc = "A sash worn by commoners affiliated with a Dominian great house, intended for use when a cape is impractical. This one marks its wearer as an affiliate of House Kazhkz." + item_state = "kazhkz_sash" + icon_state = "kazhkz_sash" + +/obj/item/clothing/accessory/dominia/sash/caladius + name = "caladius sash" + desc = "A sash worn by commoners affiliated with a Dominian great house, intended for use when a cape is impractical. This one marks its wearer as an affiliate of House Caladius." + item_state = "caladius_sash" + icon_state = "caladius_sash" + +/obj/item/clothing/accessory/dominia/sash/zhao + name = "zhao sash" + desc = "A sash worn by commoners affiliated with a Dominian great house, intended for use when a cape is impractical. This one marks its wearer as an affiliate of House Zhao." + item_state = "zhao_sash" + icon_state = "zhao_sash" \ No newline at end of file diff --git a/html/changelogs/stryker-dominia.yml b/html/changelogs/stryker-dominia.yml new file mode 100644 index 00000000000..1d31b87637c --- /dev/null +++ b/html/changelogs/stryker-dominia.yml @@ -0,0 +1,8 @@ +author: NewOriginalSchwann, DasFox + +delete-after: True + +changes: + - rscadd: "Adds a consular-restricted Tribunalist priest outfit, beret, and cape in the loadout religion tab." + - rscadd: "Adds Dominian House sashes to the loadout accessories tab." + - rscadd: "Adds a Dominian consular greatcoat, hat, and uniform to the loadout suits, hats, and uniforms tab respectively." \ No newline at end of file diff --git a/icons/clothing/accessories/dominia_sash.dmi b/icons/clothing/accessories/dominia_sash.dmi new file mode 100644 index 0000000000000000000000000000000000000000..b97559942e2f99efe93b4a7be5b9925f9b5c388e GIT binary patch literal 1081 zcmV-91jhS`P)P)t-sz`($g zeoLi{PfQpXf*2SWB}^+qg@jfVw{Z!6Gntq;yo!W`uc@ihv0B^6VyH7S!6+y!Nu4)V zvDk$O|Cs=-NYAob*VNC?|NsAO)QT(s0004WQchCV=-0C=2@lFJH%Fc3x8$yWs3mp12nnEw;Z{~6~00^{FRdp}+u{CIQpiV%hK$hPA|MAr1?p^vgrh4J*tM~tJ`foVP_K+KY{{FG+?Js!^ z*?E3`fa0Z%6=?!jyR&@A&40SZF);p6j^04e54>$F*?Y<<)Q2aNyQb#{ipkwg=@~8- z%h7)-xX=4z{EpuW5fKp)5fKp)`3kfC57mVTndb+zFzX9Z-H8u&{gAn(d$YMcK`(ZF zlBIiw?qJssq1rCF-V3ij4AqX|J7hmWZv2r?K=pqpUfNiZ7O$rILKNp2O0_uU<{w*7 z{hzmOC3{uMLVXyhzR=sYlFce;RR5=#-QARGuz9GyP_fv%X>gzS$C&u72=4P#hfYL9 zL_|bHL_~hVvQUoOd_Taq)Qw)(SL*tuJ42Sr z`TNJNx4+~aWas()02D86tVkcY+MVTdZvN9PE`jlfa`Xm#KfqtxO7`Aj66(W~$z9|7 z0p3=3H>G#9uvm`%Q^9@SAEVweAR;0n@*nvFv92N^#!i1&00000NkvXXu0mjfN-!59 literal 0 HcmV?d00001 diff --git a/icons/clothing/head/dominia_beret_consular.dmi b/icons/clothing/head/dominia_beret_consular.dmi new file mode 100644 index 0000000000000000000000000000000000000000..bd416805e5eb1d05ef12c5781e14178a38ea3bab GIT binary patch literal 1202 zcmV;j1Wo&iP)V=-0C=2@%&`u_AQVR7nfnxf+TB>~%3^2?L;DH@?9UP3C;~Bow z<1iiV0yA5Ba;cING{()A)JsB((Ae)tMV4!9pQz0@hDI0iDoMOMapC69In~F_7k4kh zwYkV0sUW37V2G#(i=-GIrQuc;Q;^u1K&wRK~#90?VLYI z8&Mp`zbOT&1Z;?4iU~ow#gYzLOFdkaD5aD57wqKVP!Ob33DT(ufq&@*x7BAO-x{`GW@fq` zzdHHZRG{Mf_4*h_BcEIDL(2k4a1!uv!(6I>r5yzTFl=A!nuJDWUyp7{2nBuWvUe0f zZQ{@3699mmKSosrRM&t=>;|cf7Rb5^C;+Sg&f;3TJ##~Iy0%DVl!k5g5p&n$lf;vR z6TAysTGAKj&eyVlA0MN#b=Bi41*$_R=u>n4nCzb1r0YeC@f`&Pg8+UHm|afGZL*Vj z1&)Fu|JB;ijrahN^T*^1i_N9Qi^>mdHUPlOqoeV5&-sAnkDDdGm3F;w6ciai=~MjP z6OwsF*LYL{B9fHoq+L)8l>ne|l11{{gZe%|pfA)FAkY^ffH6VXXc*0e>!+p3U22h}y;N_wM`rRdpIpk|4-z1kwBC)_@YAc-g2MgicUc#J0z+zF_ccmg?g5cH|MNZ{%kKsHL(OMW@a-qD)- z6r;k8fbw1Ht-y-}E(A17{_flfj@QC<+jx**_-nvjBj0H;<7xU)=>;OS82izP;RQ4! zn+hPAHv=~9bp?+zGZpR4-Ya1gxDapbgXizGL|aim;W@vtpG_HFK+YeN zt*ai_W!2~gZWEsK$4c*Ra1^v-0_NQhOWE$cD?gTVSe0lr+)NI1ps}6Mt7dK+Gtel^Y^D+LO3`$z`(#SFE2uv zC*J@700DGTPE!Ct=GbNc004q|R9JLGWpiV4X>fFDZ*Bkpc$`yKaB_9`^iy#0_2eo` zEh^5;&r`5fFwryM;w;ZhDainGjE%TBGg33tGfE(w;*!LYR3K9+B|kSaFEcSdIX|zs zG$*krJ~^>KiHkEOv#1y-ZOFx$R+N~V3Sr~b6rYib&}V|8Pg%j$&jsu{0L6VWOgY82 zxBvhE)Ja4^R9J=Wmq8AMAPhyRfFLS{`(IWnj;rZ(lyqfZ;_8$C(uEd{xdR{_Iom%V zbOV?3{T3k`xSSU_KaQh!q=3m;LTm&wpK3ahIWGtk5=a4)D{lZk2=%A>5+c?nk$yP) z(I7HIf@=a086g4K2FM7^?ELYu@@^LCH_Mv0oa?hLG6FMK!&du+255#X*30eCD3NGUOXk7F$5IPzFz>%07*qoM6N<$f}eZB`Tzg` literal 0 HcmV?d00001 diff --git a/icons/clothing/suits/capes/dominia_consular_cape.dmi b/icons/clothing/suits/capes/dominia_consular_cape.dmi new file mode 100644 index 0000000000000000000000000000000000000000..83477edea11e3f814cd82fc9f537fa97e9515b1d GIT binary patch literal 942 zcmV;f15x~mP))fum8>Z7vu2VHeWjK*pO zRt#v+^m95VMHGxka(mq5wcA`x-!J5o7>TEP)gN;A0zr6>E3ExdQkt@XfZt=0x(I0xA(q z4?Lg?8;}ZQ8=3%8tlR zcJ=S7?BhFrSMRW2kYLovuRk2kwGR6QDfgo|w_~}JG_xC~LmkikUQXh05=NNUl4N1A-U3l-*Ql>>2COi{9cZ#A3E?+jv=*!;ZTG;eF@DY9k}Sj z>+cG{4kh1eJfa6W5b{w+y;tlP8(=d{bwEB8%>d*VP5}FbtR9#EtTZ4u{vQEAe&Gc0 z_`d~`+|Rcf6$61V0ioU!_6u1d6BrOIRL_9@A|>*6QDxbB(=SpY%mZPlw>!Vs)#Ft+ zpAVdVf%AdOFN}QP@Czd!xctJ%2QI%b@`1}QjC|nm3o{=${KCu!4!489FSg`^V!zmu4~qR_TRtfEi)~fx7ynoN0hMWP3IcRG Q#sB~S07*qoM6N<$f|5w4C;$Ke literal 0 HcmV?d00001 diff --git a/icons/clothing/suits/coats/dominia_consular_coat.dmi b/icons/clothing/suits/coats/dominia_consular_coat.dmi new file mode 100644 index 0000000000000000000000000000000000000000..69b11967cdc10ebc37d806a536d1f0f78e4bcd07 GIT binary patch literal 688 zcmV;h0#E&kP)PZ}X5R$*xn6c@n2z*-uu>i_@%0d!JM zQvg8b*k%9#0D^i{Sad{Xb7OL8aCB*JZU6vyoKseCa&`CgQ*iP1rjHqr8c^Avt4p z@S#3ud}n%wnAYWsXPjja`?0|;E- zP#XYZ6Y9}^v?cY_2GN8LXdeP+*-;xfk4>~39RPQTp>%dW!?(Y#5p78jM>B~2ML;&8 z&xr*|&u2&kxP$qT&*Z>8$X84{IfFL#*%f0$yalNWuwYw6hf)%KoU7aQlj+pSY1KVqc>8mo(I5%SF!QL zLWTyaM^KOh?*?|;oSYuNg<@cIN$ W#mU=3znC%r0000C0000>P)t-sz`($z zj8D?BT9STC+sI-<5(`!u5O^pYlr$wTFE0)b4kjihARr(o9v(a}EKNQ+0|W&P5fdIH zC^0xb7Z({87aA8B8b3%+z`(#7Z7LoB0004WQchCV=-0C=2JR&a84_w-Y6@%7{?OD!tS%+FJ>RWQ*r;NmRLOex6#a*U0*I5Sc+(=$pS zoZ^zil2jm5DJ4HQGcPkSJ~=aW0|sotDg%v2moyOQar5R+HU{=0?$cAK~#90?U@Tx>mU$?DG*v7Y65Eh z|3AGfajG+67v|VE#flr~#imoA?RH`@}0WK-Dh*K0jyx zADpiOC>fml0&p&@?v&z(JiHH~=6?ft3c#ZPE}zsBp!`+wL%9N>=9d~JbsIoSRef>L zKLGR!viMJcwZGJOxJdQ&S ziWY#7^(6qkyuL{--(FvEAB6jGfH5!t82njS(Ky8jj}h}ziZP~y`R|huF-_wK2JkUX zDGD*YBmNXqEWfy)riAhp&z`p_Fox^5;5#}cV z1hhRG|G3@?kPD!K?A=K10FZt+K)#7#iO_qbivsf4CAK(&IO?bWRZ~y=R07*qoM6N<$g6`JIJ^%m! literal 0 HcmV?d00001 diff --git a/icons/clothing/under/uniforms/dominia_consular_priest.dmi b/icons/clothing/under/uniforms/dominia_consular_priest.dmi new file mode 100644 index 0000000000000000000000000000000000000000..cda40b29c77b36a2fa2e91282384eedf34f19474 GIT binary patch literal 922 zcmV;L17-Y)P)8mB?G7@7bTbbE4eG4`5dRRoww=0mX^~u#EHa<_6AC zaaY&2P+n|;^$N|f$lkrj8Qi_b3;$UjEq1lKcG*NZV7p!u0Z)0Sy;sj8<3VGadpkwu zX^gU%qTS}LB1W7?F%SAEiz>1x0es5C+=DP4@?^MzGDmq@pW9vm)b=5b(y!tp&rzE8 z^PD}k>lV*kJDU%~@Z?sQ=c>5w=2?`@7<*f6$;objd`r%}xXu7=$@V)(2XNg4BKLUk z1@J(t+rk63AD$j)fx&2SjYb`lgST!!$o|d2T0k6y+i4ljKFw2 z{<{@=-JZ0@_)d$%a76OLLqi(md&2f*#kjRjqv)vW$q%{g?$s-sYGWM2rO+(#5b6u4Zawi`46xTP?-espUrdjcZ7%%I>rv)E84AIdf%zeTWKx_#)eqBhG(Ru4|z!5noIJfLQ)o0|0c`QeR}i2_9$= zfcOIJel0%518;(U4Fkj%;vpk0ufP+XF9Z^#~vD)E59t19F;ImIjz7z7RiV9Z1O|Ge6Ag#+1?@7<{4j2L@j#{ei(3 zYJXtxh1wq&e4+LSdS8_E2Zj~Y{y^`GlKw#N3sB#DO};1vbiPmlgD=#Vaf2^P0KG3t w0i7>O0i7?@{=nc1wLdWULOuUYzPM5K2Yk3iU4%g**#H0l07*qoM6N<$f^K4*cK`qY literal 0 HcmV?d00001