From 22c5a7e26df513f5c587c17271a8360894de779d Mon Sep 17 00:00:00 2001 From: TheStryker Date: Tue, 22 Sep 2020 23:59:03 +0800 Subject: [PATCH] Adds Dominian religious clothes. (#10026) --- .../loadout/loadout_religion.dm | 41 +++++++++ code/modules/clothing/factions/dominia.dm | 87 ++++++++++++++++++ html/changelogs/stryker-dominianclothes.yml | 4 + icons/clothing/accessories/dominia_amulet.dmi | Bin 0 -> 384 bytes icons/clothing/head/dominia_beret.dmi | Bin 0 -> 1197 bytes icons/clothing/head/dominia_beret_priest.dmi | Bin 0 -> 1201 bytes .../suits/capes/dominia_doublecape.dmi | Bin 0 -> 726 bytes icons/clothing/suits/capes/dominia_red.dmi | Bin 0 -> 712 bytes .../clothing/suits/capes/dominia_surcoat.dmi | Bin 0 -> 718 bytes .../under/uniforms/dominia_initiate.dmi | Bin 0 -> 793 bytes .../under/uniforms/dominia_priest.dmi | Bin 0 -> 845 bytes 11 files changed, 132 insertions(+) create mode 100644 html/changelogs/stryker-dominianclothes.yml create mode 100644 icons/clothing/accessories/dominia_amulet.dmi create mode 100644 icons/clothing/head/dominia_beret.dmi create mode 100644 icons/clothing/head/dominia_beret_priest.dmi create mode 100644 icons/clothing/suits/capes/dominia_doublecape.dmi create mode 100644 icons/clothing/suits/capes/dominia_red.dmi create mode 100644 icons/clothing/suits/capes/dominia_surcoat.dmi create mode 100644 icons/clothing/under/uniforms/dominia_initiate.dmi create mode 100644 icons/clothing/under/uniforms/dominia_priest.dmi diff --git a/code/modules/client/preference_setup/loadout/loadout_religion.dm b/code/modules/client/preference_setup/loadout/loadout_religion.dm index d17ad89be30..94e410911df 100644 --- a/code/modules/client/preference_setup/loadout/loadout_religion.dm +++ b/code/modules/client/preference_setup/loadout/loadout_religion.dm @@ -23,3 +23,44 @@ /datum/gear/religion/rosary display_name = "rosary" path = /obj/item/clothing/accessory/rosary + +/datum/gear/religion/dominia/robe + display_name = "dominian robe selection" + description = "A selection of robes belonging to Dominia's Moroz Holy Tribunal." + path = /obj/item/clothing/under/dominia/priest + +/datum/gear/religion/dominia/robe/New() + ..() + var/robe = list() + robe["tribunalist's robe"] = /obj/item/clothing/under/dominia/priest + robe["tribunal initiate's robe"] = /obj/item/clothing/under/dominia/initiate + gear_tweaks += new/datum/gear_tweak/path(robe) + +/datum/gear/religion/dominia/beret + display_name = "dominian beret selection" + description = "A selection of modified berets belonging to Dominia's Moroz Holy Tribunal." + path = /obj/item/clothing/under/dominia/priest + +/datum/gear/religion/dominia/beret/New() + ..() + var/beret = list() + beret["tribunal initiate's beret"] = /obj/item/clothing/head/soft/dominia + beret["tribunalist's beret"] = /obj/item/clothing/head/soft/dominia/priest + gear_tweaks += new/datum/gear_tweak/path(beret) + +/datum/gear/religion/dominia/cape + display_name = "dominian outerwear selection" + description = "A selection of capes and outerwear worn by the Moroz Holy Tribunal." + path = /obj/item/clothing/under/dominia/priest + +/datum/gear/religion/dominia/cape/New() + ..() + var/cape = list() + cape["tribunalist red cape"] = /obj/item/clothing/accessory/poncho/dominia/red + cape["tribunalist full cape"] = /obj/item/clothing/accessory/poncho/dominia/red/double + cape["tribunalist surcoat"] = /obj/item/clothing/accessory/poncho/dominia/red/surcoat + gear_tweaks += new/datum/gear_tweak/path(cape) + +/datum/gear/religion/dominia/accessory + display_name = "tribunal necklace" + path = "/obj/item/clothing/accessory/dominia" \ No newline at end of file diff --git a/code/modules/clothing/factions/dominia.dm b/code/modules/clothing/factions/dominia.dm index 3c777da2934..8bbb0e4e885 100644 --- a/code/modules/clothing/factions/dominia.dm +++ b/code/modules/clothing/factions/dominia.dm @@ -259,5 +259,92 @@ icon = 'icons/clothing/under/uniforms/dominia_summer_dress.dmi' icon_state = "dom_dress" item_state = "dom_dress" + +/obj/item/clothing/accessory/poncho/dominia/red/surcoat + name = "tribunalist surcoat" + desc = "A simple red surcoat commonly worn by Dominian clergy members." + desc_fluff = "Spun with rough but hardy fabrics from the Dominian frontier, this surcoat is commonly worn by poorer Tribunal clergy as well as missionaries\ + seeking protection from the elements. This garment was popularized by the Kael'kah sect and remains respected as a symbol of humility and poverty amongst priests." + icon = 'icons/clothing/suits/capes/dominia_surcoat.dmi' + icon_state = "dominian_surcoat" + item_state = "dominian_surcoat" + overlay_state = "dominian_surcoat" + icon_override = null + +/obj/item/clothing/accessory/poncho/dominia/red/double + name = "tribunalist's full cape" + desc = "This is a large cape in the style of Dominian clergy. The symbol of 'The Eye' of the Tribunal is present on both the front and the back." + desc_fluff = "This style of cape is among the most flashy and ornate of the Tribunal's garb. Its weight and impracticality of use means that \ + it is often only worn by clergy of high station and on special occasions. Lower ranking members of the Tribunal or those who wear it frequently \ + are often frowned upon as arrogant and vain." + icon = 'icons/clothing/suits/capes/dominia_doublecape.dmi' + icon_state = "dominian_doublecape" + item_state = "dominian_doublecape" + overlay_state = "dominian_doublecape" + icon_override = null + +/obj/item/clothing/accessory/poncho/dominia/red + name = "tribunalist cape" + desc = "This is a cape in the style of Dominian clergy. The red differentiates the clergy from the nobility who wear traditionally black capes." + desc_fluff = "Dominian priests and priestesses are traditionally expected to wear red or golden clothing when discharging \ + their duties. Capes are worn as both a fashion statement to attract the attention of crowds and as a simple form of protection\ + against the elements." + icon = 'icons/clothing/suits/capes/dominia_red.dmi' + icon_state = "dominian_cape_red" + item_state = "dominian_cape_red" + overlay_state = "dominian_cape_red" + contained_sprite = TRUE + icon_override = null + +/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." + desc_fluff = "While the most obvious purpose of an initiate’s red-and-white robe is to show that the hopeful clergy member is pure in mind and body, \ + the stark whites of the robe also show when an initiate has neglected their appearance. The white robes must be constantly maintained and washed in order to \ + maintain their pristine appearance, lest an initiate be found neglectful." + icon = 'icons/clothing/under/uniforms/dominia_initiate.dmi' + icon_state = "dominia_initiate" + item_state = "dominia_initiate" + slot_flags = SLOT_OCLOTHING | SLOT_ICLOTHING + +/obj/item/clothing/under/dominia/priest + name = "tribunalist's robe" + desc = "A high-quality robe woven in black fabric with a golden trim with a red sash to fasten it. It's commonly worn by priests of the Moroz Holy Tribunal." + desc_fluff = "The black and gold robes of Imperial priests and priestesses have been deliberately designed by House Caladius to resemble the coats commonly \ + worn by Dominian nobility, in order to demonstrate the importance of Dominia’s priestly classes. Each robe is tailor-made to fit an initiate upon their \ + successful ascension to full member of the clergy, and they are expected to care for their robes throughout their lives. The loss of one’s robe is \ + considered a major embarrassment both for the individual and their church." + icon = 'icons/clothing/under/uniforms/dominia_priest.dmi' + icon_state = "dominia_priest" + item_state = "dominia_priest" + slot_flags = SLOT_OCLOTHING | SLOT_ICLOTHING + +/obj/item/clothing/head/soft/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." + desc_fluff = " While initiates dress humbly in white and red clothing, this does not mean that House Caladius - the primary source of the Holy Tribunal’s \ + funding - spares any expenses funding them, and these berets are made of luxurious velvet." + icon = 'icons/clothing/head/dominia_beret.dmi' + icon_state = "dominia_beret" + item_state = "dominia_beret" contained_sprite = TRUE +/obj/item/clothing/head/soft/dominia/priest + name = "tribunalist’s beret" + desc = " black beret bearing the sigil of the Moroz Holy Tribunal on its front. Worn by full members of the Tribunal’s clergy." + desc_fluff = "With their black and gold clothing designed to resemble that of their noble counterparts, the full clergy of the Moroz Holy Tribunal \ + are a sight to behold both inside and outside of the Empire of Dominia. This beret features an emblem luxuriously and painstakingly crafted out of real gold." + icon = 'icons/clothing/head/dominia_beret_priest.dmi' + icon_state = "dominia_beret_priest" + item_state = "dominia_beret_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." + desc_fluff = "One of the most prominent symbols of the Moroz Holy Tribunal is 'The Eye', with the square representing the four corners of the universe and the central 'eye' being the \ + Tribunal that watches all. Necklaces and amulets made from this symbol often have the eye being able to rotate. Although there is no official stance, others argue that necklaces should be made \ + from bare metal to represent how the Tribunal sees the unvarnished truth, while others insist that they must be made from gold to glorify the religion." + icon = 'icons/clothing/accessories/dominia_amulet.dmi' + item_state = "dominia_amulet" + icon_state = "dominia_amulet" + contained_sprite = TRUE \ No newline at end of file diff --git a/html/changelogs/stryker-dominianclothes.yml b/html/changelogs/stryker-dominianclothes.yml new file mode 100644 index 00000000000..dd1d5121c92 --- /dev/null +++ b/html/changelogs/stryker-dominianclothes.yml @@ -0,0 +1,4 @@ +author: The Stryker, NewOriginalSchwann +delete-after: True +changes: + - rscadd: "Adds Moroz Holy Tribunal clothing (dominian robes, berets, amulets and capes) to the loadout under the religious tab. Descriptions by Schwann." diff --git a/icons/clothing/accessories/dominia_amulet.dmi b/icons/clothing/accessories/dominia_amulet.dmi new file mode 100644 index 0000000000000000000000000000000000000000..6ea3d17536e07262cd9b0c39e51d9412662ab7b2 GIT binary patch literal 384 zcmV-`0e}99P)cZ96Rv=d>%Entg6;P)6zoe;g9{SnAaSo_c`f4mU@oJ zvii#&mpXH9o?p@0000b)-To70aZA)5);0ozpQb$0dncg&4zxCFGb(Ymv&tLd26p z$z>FqYm3M!_gk70HkXicTZi^HoacGp&*z8t_cz(e(Lq^BM+pF+Od{eba(l~*Lnz8Q zemF!$uD_YiZVddzP-=)Do#7W02tWicti4Pn4y%^9@M2kOqahIQ9%Q+um$<_#^py2j;#ro23j_^$U|#hK?-wU2Exw#676jxf>+RbxtRW<_=) zwjPGSj?W@FMR@ZAvP0aOc!s|MKMf9XW#}F+45o%AMt}b@$%{W^nwjUE2Y( zemWJ|HAS!I4J}DV;HTE5N$N2j(|@v6fiN`mjb(~*#e6!duJ__XOy zs^n%6J-}=%E5dT zK*l`ztefMfGH_Fux;y&rYAgaE+l|WA*$*yq#4Ha2M-`1MJ!sM3!Z>1y^o_O@Vy(>& zrD9UWW9e|Ow+AI8GC>i!{LV<>>oW!%5KWtKk66^*`z!1Oeus93&X; zxba(GdOM?2WVU42c(nk@aU{irpvtnPeY}%{c{t+Pim7hq{>CLzo^?C1`3FkQR**j{ zdL{)Y!07fXGH8z>lo@ze^Xu;eh<&V}>c0y4QX%y=ylFELBk1#7j85^`N{DlU{McE| zdon*|eiDr^+iWBXAEaf9T*u0X-vt(*sC7GRV0#mUE%2WWO?MAv4@_U5-O-!^Yeu%Z zL>0_0B(^^vHjiH>Ti>%13QPrH)04C7!B^p6J|F@CoPwF-P3tA~{^!)<)zpst*u+D5 za47RHt1ETBamZ^o(%lrWg4ntRl6dlHw^@;JJ8_BL&vs2V=L~Z;40RoU!?N?0VIMW{;92Z+)q^uC-ndT literal 0 HcmV?d00001 diff --git a/icons/clothing/head/dominia_beret_priest.dmi b/icons/clothing/head/dominia_beret_priest.dmi new file mode 100644 index 0000000000000000000000000000000000000000..6f855393677b547446db86c4de9ea4979d1884da GIT binary patch literal 1201 zcmV;i1Wx;jP)V=-0C=2z%R3IjFc1a6+Ixzpq(=nOxe!P4J8nAC`8CbDn_Xy^bmU~QlT0=_8=&TREkJHKy#`f zdNH`I2$J?t3#Qo8LjN4x9_*ysWKFZ1&CX7k2SlA=eP7;ZW_MO*V#{PQ;Lzieo{M7f zgk0RVy7bIeeLC#M*PDZ80kL>O?sI#P3T+nJ9=*JcSUe${Q3MiSt(|84eEtMy`$5_6 z&1lNOt|xdZw26_$e%$f{Ba8h=g*MUW_FOnJj3O3K$j(+5^7)gJFK4UEl=#KPC-DJb zbZHO)M^IA^wo0D?BsdAS7=K;p8(kU%00@E$hX+zkZUOlDL z?g#+zV&)^X%mPifpu+(C72{;B0A@0AOHX zV7C_W0l@3-m45vEvFTOr1UIlS#gXS5)F%~X>GF$*Iz0w}`;P=*Vj3>QEdE`Tyz0A;uU%5VXc z(X~Cjo(KkmRO1_VJ^(OxkAA(NS-{zTP^uO~D;0|JhqOtzvc_r(*; zI3rMRXcF*h_k3Hna%*<6h;rMM3c{dt#9W z%n2wiyxJRiI1-gvk-(IIa3m_1E4;Fe6$#8dgh}xQ!KGS!C4%5Wdshz=FN;jf0A=yj za9wRuX}eyy*2*)%@&d{gpA>#1u!c_mFz(!cYj%27V|f7twNd`&=sf_Sb7B}k>1S22 z@Q*Iz0x0tvfC_I4TJlzu P00000NkvXXu0mjf_j(=? literal 0 HcmV?d00001 diff --git a/icons/clothing/suits/capes/dominia_doublecape.dmi b/icons/clothing/suits/capes/dominia_doublecape.dmi new file mode 100644 index 0000000000000000000000000000000000000000..d4f7d78e30fea427c4a6b237763189ca7c6e8cb4 GIT binary patch literal 726 zcmV;{0xA88P)fFDZ*Bkpc$`yKaB_9`^iy#0_2eo`Eh^5;&r`5fFwryM;w;ZhDainGjE%TB zGg33tGfE(w;*!LYR3K9+B|kSaFEcSOJ|(|2DJL~Ku^?56i!&v&s2C_~$iMLj5gvRn%QOW(g7?Afxs$sV8g4&Q1ql zz<+`$r7Q{epEL(q>Z;5zcLNa5XHuRa4r-*-D8oD>JU7N*fl!w!Ur5X|!jHzrj3pB2 zdApuhX>RJaH8Uib*5@@I5c0c~F{@iFSY4QPmFCv*4H4A(lvbeJZmgw(MSHWX(){JV zZSB)R07^=!vLqK<^&6_3oX-r;VOWdG+0oKDnJzizi=}EF}cEmM>k`E1k^8ff}B<;set;0 z7l5K`sDKElU-&hEz#P0epr;c0$L?mq#*qu5Ur>VPnZ#cZbav+V+I8p6I?L{V>K62I zkO2d}3vvHv5ak2LFXDW__(hZt7{7?~0pk~OK4APJ&IgQN#QA{ni#Q)Jei7#b&M%^T z!1+a#54c_%fFDZ*Bkpc$`yKaB_9`^iy#0_2eo`Eh^5;&r`5fFwryM;w;ZhDainGjE%TB zGg33tGfE(w;*!LYR3K9+B|kSaFEcSOJ~^=>T>V_Yo&f-1p+I@DJXP)h00GEJL_t(oh3%I=Ps1<}#qSno z+iC@ju_$6ie1f7>>6(Zzx9Y%*RLOKNLW~TR=(ptxNchf4PMP?ZQ3(;+>;Zt? z*Z#Z@fbt(X)KEXSq(6|M0Gl!h?B^`~0&rX!i~)04iS~tGfc3TIfUTLqaKE5oZGFi- zZtQIq1KdC8ncRepk#Utl+(GyUJurF>&~foSO8=l;$AOFk(m#lGY)~B(dkexp?E9;Z z0RzClDefQm(WPTS_yo`xFgyDG^CS|#~F@rxuM zsD2^yf$A4BAEmr-FOqzq`9+csRKJkS%zsHQ}280000V=-0C=2JR&a84_w-Y6@%7{?OD!tS%+FJ>RWQ*r;NmRLOex6#a*U0*I5Sc+ z(=$pSoZ^zil2jm5DJ4HQGcPkSFTS|6C^V_YJ^=vE%s=Crl}UjB00GiTL_t(oh3%J3Zi6rog>6pYAKEoo zsk)8D2_UBXM1-!h$PK#a@oTGUnHe{okVL6eF(Oi4;!l8W=JAAB>OYm#`uG2p5O9Pv z&LN^8fc8RqHR;lXt^`^bhflC=l=a(5_vWR0Xu*ImRuCw+8)e%;P5OC!ttTyt{^Leh10@jnR!#K3yA~HZG0P23+L(K!}3{X4A0A(NGI>cqDuLRn3 zoW3L;AU7?m;xG#khRjmj2C@fx$3&n5T890#fcpG=1M#Nk0jm()93ZZ&gYy_Cfy@$l z;)K>(VU6TcOZ{zC;Cu8FFyT*TwcfkE-w)O;PV3U z5B~L^H0uihE-z#Nmlr6&<^|#(XXJ&s&+t9#1BZHjqw>7-0000007*qoM6N<$g7B_A A>Hq)$ literal 0 HcmV?d00001 diff --git a/icons/clothing/under/uniforms/dominia_initiate.dmi b/icons/clothing/under/uniforms/dominia_initiate.dmi new file mode 100644 index 0000000000000000000000000000000000000000..67f49dba36230a7e18277b2023bc665199be4a93 GIT binary patch literal 793 zcmV+!1LpjRP)V=-0C=2JR&a84_w-Y6@%7{?OD!tS%+FJ>RWQ*r;NmRLOex6#a*U0*I5Sc+ z(=$pSoZ^zil2jm5DJ4HQGcPkS9!QjA0>zZLI8!o|0006YNkla!1=T+ zC0;L@>bgdG@d()#RZvUHG6+!47jXT6a!wnRw` zbx$G6xG!MjAL}_@pE+Ca`wf^c+UHiea}0dAI^v5CFch#9puR`}+!wz9s4sk+$Z1J| zY9X(F0OkuHS$nY4FsCV1e20n8UL8VfVU0}DGA7+}8e zAE_MO!PWQ@xGy|lp1*K@JF^5}zUY8YoL@44`Jw~%I3F>9`N9MBIR!ox0hlj5K-aef z0hllRJX_C420sjOG!gU%sR;UmgfD{rAmNL!KS=l@><<#Y2>XL1!25#~5cCIeUqIL& zqV_YegFXcnLS$-U{wPE00K=(L_t(oh3%KWZrd;rhbadI zQcYqi$dM-(?hC|1I#;OSKb`srA!?9mw*rP}XKF`v%O+%Uw$@Ks%7b}#R7i9)P#xgm zN8Kk%Hmpy_SYQ8DU9mv|Vl-y#EzDQNl*9h0yuB$w=5N>q2WQA6&m=r!x+&9*U5KQ( zy^+FZRY|D@0N&}@Vl%cU)D<_M#AYoO$c$Yq7WyN&02?5J;2^ZoW&mX)%p5`N%w|eUb_^d?0SH1h@1K8nk*u#c@6xf%u{Y7{ky1)(-X_9AC76LJLiW0P2e)a19rJ5`g%E#Yv=cxbRpd5d?@Y z%uQw*@1TXx7Y0z@|G@k-tPntaaRh$D{EGm@7e`G|2A(qn5MLMo_qPNB zh%d|v>8C5bANo3*a^{0jIrBll7tVYT@P#`c1bpGn2LWHW^FaV`=L5elI_3kvFPJ+Y zgnZ$=`G$Pa3HW^B0s&vRFXI7UbO3%|bOJtKbOL+SKmj@*1bpGn2LWHW&;O7w&Z_