From a71948ffb463e382d469fc59b5749947d05f7cfc Mon Sep 17 00:00:00 2001 From: Viator-MV Date: Sat, 6 Sep 2025 01:05:11 +0300 Subject: [PATCH] wizard robes (#1725) * ALL * no green * material * NO GREEN * I SAID NO GREEN * cost --- .../Clothing/Cloak/Roles/wizard_coats.yml | 43 ++++++++++ .../Entities/Clothing/Head/Roles/general.yml | 22 ----- .../Entities/Clothing/Head/Roles/wizard.yml | 79 ++++++++++++++++++ .../_CP14/Loadouts/Jobs/general.yml | 24 ++++++ .../_CP14/Recipes/Workbench/sewing_table.yml | 56 +++++++++++++ .../wizard_blue_coat.rsi/equipped-CLOAK.png | Bin 0 -> 1820 bytes .../General/wizard_blue_coat.rsi/icon.png | Bin 0 -> 748 bytes .../General/wizard_blue_coat.rsi/meta.json | 18 ++++ .../wizard_red_coat.rsi/equipped-CLOAK.png | Bin 0 -> 1902 bytes .../General/wizard_red_coat.rsi/icon.png | Bin 0 -> 788 bytes .../General/wizard_red_coat.rsi/meta.json | 18 ++++ .../wizard_hat_blue.rsi/equipped-HELMET.png | Bin 0 -> 799 bytes .../General/wizard_hat_blue.rsi/icon.png | Bin 0 -> 386 bytes .../General/wizard_hat_blue.rsi/meta.json | 18 ++++ .../wizard_hat_red.rsi/equipped-HELMET.png | Bin 0 -> 846 bytes .../Roles/General/wizard_hat_red.rsi/icon.png | Bin 0 -> 396 bytes .../General/wizard_hat_red.rsi/meta.json | 18 ++++ .../wizard_hood_blue.rsi/equipped-HELMET.png | Bin 0 -> 700 bytes .../General/wizard_hood_blue.rsi/icon.png | Bin 0 -> 351 bytes .../General/wizard_hood_blue.rsi/meta.json | 18 ++++ .../wizard_hood_red.rsi/equipped-HELMET.png | Bin 0 -> 751 bytes .../General/wizard_hood_red.rsi/icon.png | Bin 0 -> 363 bytes .../General/wizard_hood_red.rsi/meta.json | 18 ++++ 23 files changed, 310 insertions(+), 22 deletions(-) create mode 100644 Resources/Prototypes/_CP14/Entities/Clothing/Cloak/Roles/wizard_coats.yml create mode 100644 Resources/Prototypes/_CP14/Entities/Clothing/Head/Roles/wizard.yml create mode 100644 Resources/Textures/_CP14/Clothing/Cloak/Roles/General/wizard_blue_coat.rsi/equipped-CLOAK.png create mode 100644 Resources/Textures/_CP14/Clothing/Cloak/Roles/General/wizard_blue_coat.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Clothing/Cloak/Roles/General/wizard_blue_coat.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Clothing/Cloak/Roles/General/wizard_red_coat.rsi/equipped-CLOAK.png create mode 100644 Resources/Textures/_CP14/Clothing/Cloak/Roles/General/wizard_red_coat.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Clothing/Cloak/Roles/General/wizard_red_coat.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hat_blue.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hat_blue.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hat_blue.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hat_red.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hat_red.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hat_red.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hood_blue.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hood_blue.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hood_blue.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hood_red.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hood_red.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hood_red.rsi/meta.json diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/Cloak/Roles/wizard_coats.yml b/Resources/Prototypes/_CP14/Entities/Clothing/Cloak/Roles/wizard_coats.yml new file mode 100644 index 0000000000..4296000856 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Clothing/Cloak/Roles/wizard_coats.yml @@ -0,0 +1,43 @@ +- type: entity + parent: CP14ClothingCloakBase + id: CP14ClothingCloakWizardCoatRed + name: red wizard coat + description: Clothes that wizards usually wear. I cast RIREBALL! + components: + - type: Sprite + sprite: _CP14/Clothing/Cloak/Roles/General/wizard_red_coat.rsi + - type: Clothing + sprite: _CP14/Clothing/Cloak/Roles/General/wizard_red_coat.rsi + - type: ToggleableClothing + clothingPrototype: CP14ClothingHeadWizardHoodRed + requiredSlot: + - cloak + slot: head + - type: ContainerContainer + containers: + toggleable-clothing: !type:ContainerSlot {} + - type: PhysicalComposition + materialComposition: + CP14Cloth: 30 + +- type: entity + parent: CP14ClothingCloakBase + id: CP14ClothingCloakWizardCoatBlue + name: blue wizard coat + description: Clothes that wizards usually wear. Look what happens when I cast a spell I don't know + components: + - type: Sprite + sprite: _CP14/Clothing/Cloak/Roles/General/wizard_blue_coat.rsi + - type: Clothing + sprite: _CP14/Clothing/Cloak/Roles/General/wizard_blue_coat.rsi + - type: ToggleableClothing + clothingPrototype: CP14ClothingHeadWizardHoodBlue + requiredSlot: + - cloak + slot: head + - type: ContainerContainer + containers: + toggleable-clothing: !type:ContainerSlot {} + - type: PhysicalComposition + materialComposition: + CP14Cloth: 30 \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/Head/Roles/general.yml b/Resources/Prototypes/_CP14/Entities/Clothing/Head/Roles/general.yml index 538bd4b6ab..d4406fefb7 100644 --- a/Resources/Prototypes/_CP14/Entities/Clothing/Head/Roles/general.yml +++ b/Resources/Prototypes/_CP14/Entities/Clothing/Head/Roles/general.yml @@ -25,28 +25,6 @@ - type: Clothing sprite: _CP14/Clothing/Head/Roles/General/metalheadband.rsi -- type: entity - parent: CP14ClothingHeadBase - id: CP14ClothingHeadTriangularHat - name: triangular hat - description: a big, pointy hat for those who like to look smart. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/Roles/General/triangularhat.rsi - - type: Clothing - sprite: _CP14/Clothing/Head/Roles/General/triangularhat.rsi - -- type: entity - parent: CP14ClothingHeadBase - id: CP14ClothingHeadTriangularHatGolden - name: golden triangular hat - description: a big, pointy hat for those who like to look smart. Decorated with a gold hoop. - components: - - type: Sprite - sprite: _CP14/Clothing/Head/Roles/General/triangularhat_golden.rsi - - type: Clothing - sprite: _CP14/Clothing/Head/Roles/General/triangularhat_golden.rsi - - type: entity parent: CP14ClothingHeadBase id: CP14ClothingHeadChristmasHat diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/Head/Roles/wizard.yml b/Resources/Prototypes/_CP14/Entities/Clothing/Head/Roles/wizard.yml new file mode 100644 index 0000000000..c3182a55e7 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Clothing/Head/Roles/wizard.yml @@ -0,0 +1,79 @@ +- type: entity + parent: CP14ClothingHeadBase + id: CP14ClothingHeadTriangularHat + name: triangular hat + description: a big, pointy hat for those who like to look smart. + components: + - type: Sprite + sprite: _CP14/Clothing/Head/Roles/General/triangularhat.rsi + - type: Clothing + sprite: _CP14/Clothing/Head/Roles/General/triangularhat.rsi + +- type: entity + parent: CP14ClothingHeadBase + id: CP14ClothingHeadTriangularHatGolden + name: golden triangular hat + description: a big, pointy hat for those who like to look smart. Decorated with a gold hoop. + components: + - type: Sprite + sprite: _CP14/Clothing/Head/Roles/General/triangularhat_golden.rsi + - type: Clothing + sprite: _CP14/Clothing/Head/Roles/General/triangularhat_golden.rsi + +- type: entity + parent: CP14ClothingHeadBase + id: CP14ClothingHeadWizardHatRed + name: red wizard hat + description: a pointy hat for those who like to look like wizard. Decorated with a gold hoop. + components: + - type: Sprite + sprite: _CP14/Clothing/Head/Roles/General/wizard_hat_red.rsi + - type: Clothing + sprite: _CP14/Clothing/Head/Roles/General/wizard_hat_red.rsi + - type: PhysicalComposition + materialComposition: + CP14Cloth: 20 + +- type: entity + parent: CP14ClothingHeadBase + id: CP14ClothingHeadWizardHoodRed + name: red wizard hood + categories: [ HideSpawnMenu ] + description: a covering hood for those who like to look like a cool pyromancer. + components: + - type: Sprite + sprite: _CP14/Clothing/Head/Roles/General/wizard_hood_red.rsi + - type: Clothing + sprite: _CP14/Clothing/Head/Roles/General/wizard_hood_red.rsi + - type: HideLayerClothing + slots: + - Hair + +- type: entity + parent: CP14ClothingHeadBase + id: CP14ClothingHeadWizardHatBlue + name: blue wizard hat + description: a pointy hat for those who like to look like cool wizard. Decorated with a iron hoop. + components: + - type: Sprite + sprite: _CP14/Clothing/Head/Roles/General/wizard_hat_blue.rsi + - type: Clothing + sprite: _CP14/Clothing/Head/Roles/General/wizard_hat_blue.rsi + - type: PhysicalComposition + materialComposition: + CP14Cloth: 20 + +- type: entity + parent: CP14ClothingHeadBase + id: CP14ClothingHeadWizardHoodBlue + name: blue wizard hood + categories: [ HideSpawnMenu ] + description: i think we're on the path of a snowgrave now. + components: + - type: Sprite + sprite: _CP14/Clothing/Head/Roles/General/wizard_hood_blue.rsi + - type: Clothing + sprite: _CP14/Clothing/Head/Roles/General/wizard_hood_blue.rsi + - type: HideLayerClothing + slots: + - Hair \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Loadouts/Jobs/general.yml b/Resources/Prototypes/_CP14/Loadouts/Jobs/general.yml index 691105bcee..747424be02 100644 --- a/Resources/Prototypes/_CP14/Loadouts/Jobs/general.yml +++ b/Resources/Prototypes/_CP14/Loadouts/Jobs/general.yml @@ -22,6 +22,8 @@ - CP14ClothingCloakWhiteSyurko - CP14ClothingCloakYellowSyurko - CP14ClothingCloakHaori + - CP14ClothingCloakWizardCoatRed + - CP14ClothingCloakWizardCoatBlue - type: loadout id: CP14ClothingCloakFurcapeBlack @@ -108,6 +110,16 @@ equipment: cloak: CP14ClothingCloakHaori +- type: loadout + id: CP14ClothingCloakWizardCoatRed + equipment: + cloak: CP14ClothingCloakWizardCoatRed + +- type: loadout + id: CP14ClothingCloakWizardCoatBlue + equipment: + cloak: CP14ClothingCloakWizardCoatBlue + # OuterClothing - type: loadoutGroup @@ -259,6 +271,8 @@ - CP14ClothingHeadStrawHat - CP14ClothingHeadKasaHat - CP14ClothingHeadBeretMercenary + - CP14ClothingHeadWizardHatRed + - CP14ClothingHeadWizardHatBlue - type: loadout id: CP14ClothingHeadMetalHeadband @@ -315,6 +329,16 @@ equipment: head: CP14ClothingHeadBeretMercenary +- type: loadout + id: CP14ClothingHeadWizardHatRed + equipment: + head: CP14ClothingHeadWizardHatRed + +- type: loadout + id: CP14ClothingHeadWizardHatBlue + equipment: + head: CP14ClothingHeadWizardHatBlue + # Pants - type: loadoutGroup diff --git a/Resources/Prototypes/_CP14/Recipes/Workbench/sewing_table.yml b/Resources/Prototypes/_CP14/Recipes/Workbench/sewing_table.yml index 32a02dde25..01d466eb49 100644 --- a/Resources/Prototypes/_CP14/Recipes/Workbench/sewing_table.yml +++ b/Resources/Prototypes/_CP14/Recipes/Workbench/sewing_table.yml @@ -299,6 +299,62 @@ count: 2 result: CP14ClothingHeadFishMask +- type: CP14Recipe + id: CP14ClothingCloakWizardCoatRed + tag: CP14RecipeSewing + craftTime: 2 + category: Clothing + requirements: + - !type:ProtoIdResource + protoId: CP14String + - !type:ProtoIdResource + protoId: CP14DyeRed + - !type:StackResource + stack: CP14Cloth + count: 3 + result: CP14ClothingCloakWizardCoatRed + +- type: CP14Recipe + id: CP14ClothingHeadWizardHatRed + tag: CP14RecipeSewing + craftTime: 1 + category: Clothing + requirements: + - !type:ProtoIdResource + protoId: CP14DyeRed + - !type:StackResource + stack: CP14Cloth + count: 2 + result: CP14ClothingHeadWizardHatRed + +- type: CP14Recipe + id: CP14ClothingCloakWizardCoatBlue + tag: CP14RecipeSewing + craftTime: 2 + category: Clothing + requirements: + - !type:ProtoIdResource + protoId: CP14String + - !type:ProtoIdResource + protoId: CP14DyeBlue + - !type:StackResource + stack: CP14Cloth + count: 3 + result: CP14ClothingCloakWizardCoatBlue + +- type: CP14Recipe + id: CP14ClothingHeadWizardHatBlue + tag: CP14RecipeSewing + craftTime: 1 + category: Clothing + requirements: + - !type:ProtoIdResource + protoId: CP14DyeBlue + - !type:StackResource + stack: CP14Cloth + count: 2 + result: CP14ClothingHeadWizardHatBlue + # Misc - type: CP14Recipe diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/wizard_blue_coat.rsi/equipped-CLOAK.png b/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/wizard_blue_coat.rsi/equipped-CLOAK.png new file mode 100644 index 0000000000000000000000000000000000000000..0a5a54314ddfddbc0121bc131cacc9a70d6b92a8 GIT binary patch literal 1820 zcmaJ?X*io{7k+KAHKj@uZ3#y0+YD`KN<@)pYMEFnrJ`dQt))t*1d%A!K^aRJB~>bj zwPRnR_MtOsEnZvKhJ<>6H#fa>G#k`GAg+kpz-sbT%2O$2{aj8^c+t{bO-j0c#R53ZPGrud|3Xy&$ zdf6($Naot(v~{$OETL>W0zNaOR2)1tI-tWq^0sMxw0jx>mywah_p2&@h~{2eGu(C{e{UcI!v<`#$$fs@@|YbXBPTr9&o z=nHZe2BNl(^tFzH`ZNJ^{s(BtQA8=xlg`o_L;Gazq&j+~_`e&2gE;v$WuM7Uv2D>n zHZeS{1sa{K0Nnny5EoOV@MoB{>PlLV<#u2KqAvqmuhJIA$}c}vcoS*^Qqrpv8h z0~xTjgJFq!PKe|;T4qiRK2aZjsy6l$?EuFW=xr{y2-nW{sTs~1?dWZ}Zun6Upf;o( zHlMpRQJ`DotbCFMgI9aUM3*8FwR#RrRF)2bVk0*k+8__)SL&39)?8TjLg~N$bq{gI zbae;_<~G){NhFFU%}L;eq`d)0v3IgQ&MQh7nE!<+1oX~y59Vr>8$8mD`Lt_r1(ruk zC;!1KCSJ;Z46&*>?vPVr5kc;jEKvYZXO{rRR_eF9xvs?^{jp)okz}bZyMyJ(KU1>) zuz2aFlk`=nJbWPBuQl|%(dJHXQ=&xySK+aG<>P#5j>N~vc&V}v zf62c82RfdZ0Y|T1{P+YJvFu3S_$&_un~pp~d3;IcGmw1P1$aVI$&km-UoB&?wq_2x zg{TpwgVRtIcmhj>KbzpGT2+T4?^;+|)N@0d`56Oo0v(G|N+V}`pKy>V+l^lj;2cch zX4K^M=L#l@6advaCmiV4C1L2MzgSL01R^K`L#X~GQu=^(vMU}`h!z7UwRd;d=)pVc zri=N@ya$YC5tA(3i+!epoYFXP>jwO{mZ~oSFn!7K(67%HTW8``O8WvT^ba-#%H6l# zpi5se1OcXjUBCAN*@%m6A+6QAd#AxRn&W>Rx2kAgl1Rlh`QA3yMcpus;{E+<%k`yO z905ixnO@ED@a#$Na$JwyWb=#@XnxOi;@Tm3_Yj27Hx6Wad#|KSciAH`|J+8e9KB~u zrQPu#k92bNryW@Xg31q!P*@Zn+K~=+{Ekth+rSx45+GH zQMB+G=SYRKmO(eAFWKV-+-fs4c3-#tpi*CC^gLYa65D0r6O1ULn_nZ5tDWRcV(BTO zbauD#KP_I3zXSh20qJRnX6EW$9dBcA>}6Q%XfFMdsJVX6@3J3|nujc?LMv0ax_b+P zE*F|d^u;vB)ZYC2JHd`q@X4GPsskByf-5CK{%G@NyHeXgZI@17<=aYlH3JLI0^9)D z#gpU+2(@3KmOAU=eAl+ne#m%NkX8uLu(6t?fa2Z?vQ(z?grYHEU2oqMlv}29U$g); z;98c5D+e7kMZbB1wSJ51qR-D_a(|a-Tu-Ng;KA95z>4xJZSBq=p_NAr`KM;4Ui-p< z_bX+-p2f$W8YOp)e(}3JYbLy&rI(ze5h*|r;nM?q!z1BgNISy0xd4@-u+)cm6P=`- zxwq`4O_OO(Ygpr=ENCi*wWF&3f~TrpOS~Fwj=fVmAQru;_i9c^1f+x62(_z=FR1r$ zf!JR(R5O{%AXL#VsZV%o*v$$Av4 zAvCs&vCN6_Vq37Epj)mJF&W=Gl_TfyiPGG&vWxR-!=n!^gs6KQQZ0QdQ{-;5yB=1% zgYzUw{QhAG^*dJ0H#^h)77Cqd`n~e2RV!-VxVv9`6-7NwY;SWvmJFuQGYg@BqR?;r zh%&Nt-?P~dDrvaHxOd;;bUVgHD#WLDulq$aceQMLmZ}?S0!(}ZF(_IzX35mNy4pip zw`qR?w{`K#tka*s8a~dwDSeRex=UzYk^mv7)mC#};7(Bo6y}JFgRc8jP{~?2L&7Pi z)E&L$f@^;lEvhk(Pg~m=$b{{vCM6!@OyvKoRFdvKEWFb4FU?IvGI;I)8!J1@DhtoY F{{hg4WOx7o literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/wizard_blue_coat.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/wizard_blue_coat.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..6e5a9f9d8cb8f35087697516a0e1115ab5dc2316 GIT binary patch literal 748 zcmVPx%rb$FWRA_uz z248Fl0Q2AwcXR{*cQ?cF-ntP_riJ<7A+7zNpH2mmTRDg`y(HXW8vyg@6e?wEr2+s} z%%*mA>b-}f(A`I)ZT{_Z<@}av01@j4z$jJ$a7RZl@dhYj{p>E!GP$*n`=`w)RuPeq z@285X;_OT>2@wfl6ss8Ld8m~AKKZ97xAw0cDrJoGykCSfy(CofgJJ zu`@L~l5=8OM*wmHY6 z#cj?S`XLXrKkPa|Sw@?J#cW=G^)x?o=N9qBZ2;bUAE#C-V8!ep(*XfqCFGuvl3FVj z=<4a^*UukV;V5FjK}15zYrYjF6_Ui0XJ*0RsSj>sg(-X z=Rk|xs-j##Jed|&IEp)L`*I4<)zjPb1W#_=VH+zP4Qv*In*o4InR+hUwyU1YHeEG> zB9H>)K_zMY>+QZPx+C`m*?RCt{2oJ~j@X&A@<`65YcshhSoA>9qJXAb6<_Mc9EEGX-rMs|(!um~GMa^2tT6Gd)GJBZ5lSxdp zHBai;eSRQ}^UlYA=KX#%&mUkIhG7_nVHk#C7=~dOhG7`yOUH1~0`x?U%Oh9Xj0Mx@ z;%SU6MM&S7nd(9{E|1*wO&I{-=I^g}i0ru(kO83g%?9~HP@vTxw5N8Yhb0s00017D zQa{OsM!)-327vBJ0xcdZ0HAeJ!q`&8P~-B*53B6RO|O0Vw{9{)tN-Ud7XYC5&cAAU zQ|EC2z>n9L$n_VlZy!n9nX|Ik_9u<#jwH}JDP^@Jte80A4Z%92*oLOu%ss4pJ? zrYvcUM7Pw3IOtl?==JWzE1Z}fVL)?ZWx+`N4P0I<9mSNAC;X(!tK;&^fX zLDAWK3P84gEqm=3=NCg!88ADvj_P&??mau5)jk41+nUmDR<}E{_WP4Y+cwChR}JRe9f*LH&Jdz z#p?|KnI@_`l0g6b{AV8#71CevdgDXCpp(4Inz$BO>>{i@hM`SgbzJ{f^B+`E4i0Py(9F*N<4 z)Qme1%$Q!<#3N$;`_6!Tdc=YRE>a}lu ze?dMU+eXlyIFT{|tuHs0+rHGN}766dyFM1{nDC;OK^?=aR z;<4s^`GE3VqTis@Pm%#ZW}5!WSB~kW&8)N=eQS8-E6+MkZ+xsSYW+oDO)TMtd=_;$ zH#{+uRYk@B!!t>Qd=^yNjJl}>jb5)@X*0s-I(i%-2pY%ri? zk{kEjyrIVBku%Zo zN_3>I9kYO);s4!{L{=<7DIS25v89Lsn%K40NePuUBm7BY#+tyUWDwOoNkjf}BM4hO zRtUE&K=BUJOK@I3w6>=FfIN{2S{pFE zBYcj!BMD4d(rWOY(`_S*kOYY1goXLhZs@)V+67_ML|F^Su5|PE2~@W`(A0Sx%Zu@B zf3*+ZLBdIevIJ3)t4Zr~B!c&vI*+5e-9c(JMbZh^xIA)C*E@uUl#c4=?Gq@kHKU_p zn^1h=QPLtIDF-izaCiHZ@Lr233fJ~`B zENGoxgwIh&!wP!3-l@%NAz!)uKsF2&LpA{DU&sv8zIt*>7T!TXW}HoRUn=_N=MCCs zNcbFSCy|X7uRH>}7-4`Y1B5|qz8Blz&laoaiP&5`jT?O#m&eJs+5V^E`6y@eCABW; zxfGBe{FZ?8?zjN}&bf}3@^&RbST2_e(hSg6;e5jHU$*A%(ltV__F1S$aO8_|ZD-D^ z6S73`7^XGuDcb6N7`V~5hAS6ODmG@9l*Pp<&^DoDj#;7u4*4ty+Ec3OMXr0wVVZ~u z?aPaC1nntx^h4=)RI)xG8YshHj(1QYD;qtLt8s9A712Oh$?iwG6p?F$dKg~#UTEFE z0A+zumrD^q#vR@1wq<#29(Mkmh^dxlA|t3E>x5Mg9pYb%^aAxSVdT`fJhGnG`lbv7UcK`qY07*qoM6N<$f^hPeNB{r; literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/wizard_red_coat.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Cloak/Roles/General/wizard_red_coat.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..0e410764b4b99800a4aca3eec03f188f8d666a13 GIT binary patch literal 788 zcmV+v1MB>WP)Px%&PhZ;RA_sd;Qfzt*77;q;@aY9_31+$ zU@li?I@Aupt8JCFe6B4K4C!wMJv8e_mcQ8&Ti8jmw_hKPxByt%(a5-Je7~vzFs3;9 zRILEe=XMa)9Msz;4|av)J4GFI_qc&7X;lF8r?l^mfzmx%j;81mR1$wo~p6# zKr}iyL>4D|`}MfTNPeYoNyb&PbY`c` z?8J5I<)*#4UId{6b{9(w&jy%DbrIDXT_sN|935UUJR4|`M>PjCsV;_R1MDuAM8X3C zmv}rJ*6YtZKq2O1sAyc;k7}8bQ=Qd78_zt3-KO73=hiv!=ZMYa%FOTWwVX%Gm)J}` zttuoBjFI>v_DCIGm5NM(NS&c13*p6;HQ9`{t44z)AC*J>651>7{pzit*8 zyzjAor!o#ECmfKeS$dP3{_I*oc#PIFrZ`zxKVcx~#XsR?a>S5t@2h0<7mO)R*6a+3 zjgJ!Mok*(+n|>$R`~}Y9Pb&Uf35{X12kw_%}BfkJB0uM?^ Slsz8+0000V7lq);uumf z=k1;S*}{no$38y4q~y}BEbHVjok#VO!{wD1>=*oZa$IS#%TjdCoH;D&=I$FcEUb2v zlxUP}Y7O&l)6;TqZ*2dhgCJ?iqW(zmvr+!zQ5|KbFXH{>cyt+-Yar1GRkmLiqvIK)sOp1B(gt0UVX{mDLwP(3aM50*C(lj zUNcuY8GT!O9e0ktp1N$rjOm%zM2`G6N{n^id!jTnPUfr9*XL2I*5qs4c&*yKLaHxD zRL^oggJ;=SmTFtiOCPuE+pYSz?ElZnOAb!eKG{;5UuwB?%_ZIRZ`U?%Q(NZe+n~Z4 z7+zlYPHUg6m)7-}6V|=^;J@a6d32EJmitSa<&XTHWovig+I>#XciWcSX)Tf4Z*ZyL z>i#*It89zU*X`f?*?H2Jhj*)U{qFi}_3oPV=k4n0g`f7klBv1g?9Q+HGQ@t~+c%z* zwBpNEJ!j|7f1X#rj>(Vj-_EHi>sWqAa;iOi@*sU?TJD?tSYM}i=g!;JCiAObUURc8 zvVCK1w$$aa_^Ef+EZB3&b;{H{>zkey*@C%y>w?~hPMCUcU$69)bCV+qrmR&wdEWWy zIj%EiAy*4#Yz$~pfAs%&ZT%a^{mg!gVXM2zB{ZXJ*r2gtu zOX+R<>1wf}TlQ{~+OqVa@N=(EBEO2)s(3%T{_e*8>Ak!;QZD)|f!EXIcHRk_D`KMe zPW85+e4+ljIpRBwC)E~8SohyKDIXqOaHpHw)$QGr?$w%(cf8|V-QQVo=bYMgYKOS^ zris=oH{Y7qd&^UFp16vr^!Gic0H8KKahxHmf^xD`UaE<|TsHz4JPpvLlz8FeF6f z_JpTCPGxBj?wh%^_4cn{35A@g-ph8IJ}=#T@cTtZhkFbRmuJjfFZgjA_l?XWUd($h zpHA7k-22(99nJMSX2;9#t7ZC7@!jFV3zdTpB_e8**WYp2Sn)XYKi{v8X~%U;5>wfB zrJJV}o_TY%-ucp_xfPqfVCL|2aSW-L z^Y)H?hH#(^`-k<@Wp=u7KN1j9k`s5Hwrz3%vs0Us!tAE#T^3w@daTp+^zJhE`QKbpEn_sM~;Vaq=0UHTCxZ!dZyRgt#bV7}a3Ma=&CJZ#%oVJ>PWp$M2yI{;aI3-5#pnYf1(Cv==R(Z?&kwuPt+(9u-HDGPy3D7$jW0;<6s}NR z+*f^3@zjaA4)J}?cf11v-QQ(!=LGp0zjI|bEpoS7_de@NpGak#fIu!#_b1b++SX}T zI;a0-|6Px$MoC0LRA_L3Vi?)fB+U0mD+KY^Q| zvzs8ei%ZdzipAp8!IzZSo=x5JCtcgb?$wkad8-adpX7 z0G!wB#^YsHK%vxX0aV!$|B!6Prv599R2^Vt>;Dx|}vTREl{D zgZ1e7-B_$l3IGPl!}VhV7Tmmj62<)qnCd=&GPP0Yc{=nw-8$LP2f6XS_=&<#6eU}6 zw6{XwxH@oLZ6dCbPE^-7H2ijb`*@Y5^5Jm3^Kb<~`}Uj5iw~eb5t#kMp1FX@HpqO6osNawl{&wc>%8E5?TQ3bC60000U@G%;aSW-L z^Y+e0Z)Hc3;~($uU{qXr$s>wWOsHVCLQJCMAO4`F`_F0Bw_Pp$7B)@n(8Nnl6S9jG z#FVym`>tYP@_g2{H#XeY=!ZuhF*)vulMP9*MrU2E&3e!#Zxa{A5ccl+|C_D6Dk`WkTQ zPd(4y&B@Of?M|PsEfvqd^r42_lQR#zt9F^o%sigIi~Wq=Iq`LU|88!a9Xltw?7QX- z-vb3F|Ll14JS^8@lGf9sANPL$BQL5azTSKB)sK#!KfGmJH^ubt*I@I#!N+)k-p2qn zg;%(v5<>SM+;i~Bp0}qLiN8x+@bYcy!}B-HqGaXY$eqX!pMST!|8dMYj@i?+CMoqTwCi|_{-CWZDQ*5WopeHj%wGQ_!fNs`(xL(#X(!sZY_Vw0+jRW zVh&xprgwF==Pv{455DiOtSp}ur~cANH&yuVOnrsVwhog*G?%Y_wwULijpv(p`{cvD zPBz|rU=k%8zv|j0QK2_-H62==r*BwWeY||z+p}=iTpp#(_0Bu@FkY+N#9{Y1p9wt} bYNYBJ{wVSNEjB#i0h04{^>bP0l+XkKJ+Mn9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hood_blue.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hood_blue.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..197ac6684e60dbbcefff3c140e370f10ee5f642d GIT binary patch literal 351 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^T93XP+W4+UY3w%qxC-`-Fupj&(w6AIMg^OoTUR|00;F-n`F}sEbOPZVuUWhqO zo3Kz+u|h^mGpJR_|K+E@+Y0i|?VMhHj#Us0ZuTVzdrtm%WR1LjcL?kG?cvfZpU(U8 z;?c1er5kr_)(NUPkaO`ecgD#`BK_4{lLe!SzZfH|b(Q%h%+be1{)XcJXbw&3mIjJR$Wn zL+Laj#$yX2pC8@YdZ^v~mC=9GuyoCf)va&U=c&rJS8PkGU%xxgcis96W;?b9OxXW7 vWB&EuyVC;r{m=0%&@29*?(YHyOXlj|;0q11?T=*vh8TmVtDnm{r-UW|Rx+R} literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hood_blue.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hood_blue.rsi/meta.json new file mode 100644 index 0000000000..e3f37a4868 --- /dev/null +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hood_blue.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by ripmax(MaxGab)", + "size": { + "x": 48, + "y": 48 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hood_red.rsi/equipped-HELMET.png b/Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hood_red.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..5f483be25f1caa3c5118abc17c95918c6e9f28e8 GIT binary patch literal 751 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGojKx9jP7LeL$-HD>U|Q+v;uumf z=j|PP|Jx1{$3Mm=t&ut+V`+4#$l>Ou^rY@1*(Z)vKj8hKwyXS9_KG9Nrp)c^P+O#Q zC}~|%cwUk0of#}2{jaJTe)yYXH~*d7{kiA2|Ck80gQ3Q3YN*MrUZu-tRvrC%VD3tD zskKYiheo9TiQXn{bKBaW?rd;&b<~ufor}}T63*q-PpK2SCR_jYt5*K?b?wLar!`Ms za_w74-Gh~}{Jm%Y<=l4p6Q=&)M&-}es<;1^}%wE6hMp?S{ zhl;QI)7C51WeZ;b+RGU`H$Giz$NsCkYky>v-aT<7GIXwUIJ3D?>K}#j#V3B4`UlxD zPVWr9GuyvQzT#C>-~C%+B_X#be)-b5&|E5%?Oo2wxSKLp%S8HvW7W=Gdf=^f>QP~q zZQbho4VPCxx%oIM-(=OCI90RVzXjI#9(Xh_fAPItM;`-SY%6^~`}_a!m){=wW?pwL z-n9SsBZl9N%k%B)SJsyw-oXe89W>D3-&f;!KH|D@g#WdR>)M~K*tU7fmqp4eXUfia zf7yQN|KrU)k;ftGzjwd7fAj6-szb|;+Mk{8RTEOCe^jPF__gQkHTxKO*K4Kzth3xP ze}!n>L=|9Ixz2r9lD64fp_wmNw@mC4YN((jJv+9@F?=4o0hfCBdD;Lx~ zc=`IQ%cN;V>{BEEzgxD+Vh1o#FF9+?ZnQo<|Dw|B=nHe?D}Jt;c<=7Z^ous%x_@{6 zslRV>dkwGOZn;@);kscbfIj&?LG`2Vxo@9@=S<1pe7Gd-t;zOD<_jLKU2?PcSI2o4 ewD4j0VepUXhNQ%TuHNNqL2{n1elF{r5}E+^eR5X- literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hood_red.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hood_red.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..93f8790b4e776795a188fbaa63b4cae97e75d1fd GIT binary patch literal 363 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^T^Ntyd#8hyY=LYN!6tZbpe554C zgS|PyyK?F5|F_TXNxWy1c8|dY3`%4UDw@rec-&U{;&^M+o zqV(}|A?d^j{yT4;dhY2c_&w=v@1--Ud%rzoRJhJNDUN-yN%5qg3=f&|7X8;RiLQ}< zWc_T{!RFq8y>&l!o?RPq>7+u$fg=*;=S1GgWsAHLewz6v`Q>fvRaQrSI4uk~=4rO& zhVZUe^B8~pEIg%=i491X1L5-dnR8)0^|Psdyedi?Ywuu zu*3A@o}W$EZuP&PFTO8u{qN~~3|p?vi2j)l@sG=v_WYfbybL;*t@;cMJqAx#KbLh* G2~7Z11))Cx literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hood_red.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hood_red.rsi/meta.json new file mode 100644 index 0000000000..e3f37a4868 --- /dev/null +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/General/wizard_hood_red.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by ripmax(MaxGab)", + "size": { + "x": 48, + "y": 48 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +}