From ee9b137d5fca318185af4c7209156c82aaae59db Mon Sep 17 00:00:00 2001 From: Silentium Date: Sun, 17 May 2020 19:02:59 +0000 Subject: [PATCH] Added 2 sets of armour. --- CHANGELOG.md | 2 + assets/common/items/armor/belt/leather_2.ron | 8 +++ assets/common/items/armor/belt/steel_0.ron | 8 +++ assets/common/items/armor/chest/leather_2.ron | 8 +++ assets/common/items/armor/chest/steel_0.ron | 8 +++ assets/common/items/armor/foot/leather_2.ron | 8 +++ assets/common/items/armor/foot/steel_0.ron | 8 +++ assets/common/items/armor/hand/leather_2.ron | 8 +++ assets/common/items/armor/hand/steel_0.ron | 8 +++ assets/common/items/armor/pants/leather_2.ron | 8 +++ assets/common/items/armor/pants/steel_0.ron | 8 +++ .../common/items/armor/shoulder/leather_2.ron | 8 +++ .../common/items/armor/shoulder/steel_0.ron | 8 +++ assets/voxygen/item_image_manifest.ron | 55 +++++++++++++++++- assets/voxygen/voxel/armor/belt/leather-2.vox | Bin 0 -> 1472 bytes assets/voxygen/voxel/armor/belt/steel-0.vox | Bin 0 -> 1592 bytes .../voxygen/voxel/armor/chest/leather-2.vox | Bin 0 -> 57240 bytes assets/voxygen/voxel/armor/chest/steel-0.vox | Bin 0 -> 3072 bytes assets/voxygen/voxel/armor/foot/leather-2.vox | Bin 0 -> 1480 bytes assets/voxygen/voxel/armor/foot/steel-0.vox | Bin 0 -> 1500 bytes .../voxel/armor/hand/leather_left-2.vox | Bin 0 -> 1240 bytes .../voxel/armor/hand/leather_right-2.vox | Bin 0 -> 1240 bytes .../voxygen/voxel/armor/hand/steel_left-0.vox | Bin 0 -> 1240 bytes .../voxel/armor/hand/steel_right-0.vox | Bin 0 -> 1240 bytes .../voxygen/voxel/armor/pants/leather-2.vox | Bin 0 -> 1912 bytes assets/voxygen/voxel/armor/pants/steel-0.vox | Bin 0 -> 2008 bytes .../voxel/armor/shoulder/leather_left-2.vox | Bin 0 -> 1368 bytes .../voxel/armor/shoulder/leather_right-2.vox | Bin 0 -> 1368 bytes .../voxel/armor/shoulder/steel_left-0.vox | Bin 0 -> 1488 bytes .../voxel/armor/shoulder/steel_right-0.vox | Bin 0 -> 1488 bytes .../voxel/humanoid_armor_belt_manifest.ron | 8 +++ .../voxel/humanoid_armor_chest_manifest.ron | 11 +++- .../voxel/humanoid_armor_foot_manifest.ron | 8 +++ .../voxel/humanoid_armor_hand_manifest.ron | 21 ++++++- .../voxel/humanoid_armor_pants_manifest.ron | 8 +++ .../humanoid_armor_shoulder_manifest.ron | 20 +++++++ common/src/comp/inventory/item/armor.rs | 38 ++++++++++-- 37 files changed, 257 insertions(+), 10 deletions(-) create mode 100644 assets/common/items/armor/belt/leather_2.ron create mode 100644 assets/common/items/armor/belt/steel_0.ron create mode 100644 assets/common/items/armor/chest/leather_2.ron create mode 100644 assets/common/items/armor/chest/steel_0.ron create mode 100644 assets/common/items/armor/foot/leather_2.ron create mode 100644 assets/common/items/armor/foot/steel_0.ron create mode 100644 assets/common/items/armor/hand/leather_2.ron create mode 100644 assets/common/items/armor/hand/steel_0.ron create mode 100644 assets/common/items/armor/pants/leather_2.ron create mode 100644 assets/common/items/armor/pants/steel_0.ron create mode 100644 assets/common/items/armor/shoulder/leather_2.ron create mode 100644 assets/common/items/armor/shoulder/steel_0.ron create mode 100644 assets/voxygen/voxel/armor/belt/leather-2.vox create mode 100644 assets/voxygen/voxel/armor/belt/steel-0.vox create mode 100644 assets/voxygen/voxel/armor/chest/leather-2.vox create mode 100644 assets/voxygen/voxel/armor/chest/steel-0.vox create mode 100644 assets/voxygen/voxel/armor/foot/leather-2.vox create mode 100644 assets/voxygen/voxel/armor/foot/steel-0.vox create mode 100644 assets/voxygen/voxel/armor/hand/leather_left-2.vox create mode 100644 assets/voxygen/voxel/armor/hand/leather_right-2.vox create mode 100644 assets/voxygen/voxel/armor/hand/steel_left-0.vox create mode 100644 assets/voxygen/voxel/armor/hand/steel_right-0.vox create mode 100644 assets/voxygen/voxel/armor/pants/leather-2.vox create mode 100644 assets/voxygen/voxel/armor/pants/steel-0.vox create mode 100644 assets/voxygen/voxel/armor/shoulder/leather_left-2.vox create mode 100644 assets/voxygen/voxel/armor/shoulder/leather_right-2.vox create mode 100644 assets/voxygen/voxel/armor/shoulder/steel_left-0.vox create mode 100644 assets/voxygen/voxel/armor/shoulder/steel_right-0.vox diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b473dd5f6..45c8a9b226 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -83,6 +83,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added a popup when setting your character's waypoint - Added dungeon arenas - Added dungeon bosses and rare boss loot +- Added 2 sets of armour. One Steel and one Leather. + ### Changed diff --git a/assets/common/items/armor/belt/leather_2.ron b/assets/common/items/armor/belt/leather_2.ron new file mode 100644 index 0000000000..ae3fd773f4 --- /dev/null +++ b/assets/common/items/armor/belt/leather_2.ron @@ -0,0 +1,8 @@ +Item( + name: "Leather Belt", + description: "A belt made from simple leather.", + kind: Armor( + kind: Belt(Leather2), + stats: (20), + ), +) diff --git a/assets/common/items/armor/belt/steel_0.ron b/assets/common/items/armor/belt/steel_0.ron new file mode 100644 index 0000000000..03086db2f9 --- /dev/null +++ b/assets/common/items/armor/belt/steel_0.ron @@ -0,0 +1,8 @@ +Item( + name: "Steel Belt", + description: "A belt made from Steel.", + kind: Armor( + kind: Belt(Steel0), + stats: (20), + ), +) diff --git a/assets/common/items/armor/chest/leather_2.ron b/assets/common/items/armor/chest/leather_2.ron new file mode 100644 index 0000000000..1a046a7942 --- /dev/null +++ b/assets/common/items/armor/chest/leather_2.ron @@ -0,0 +1,8 @@ +Item( + name: "Leather Cuirass", + description: "A cuirass made of simple leather", + kind: Armor( + kind: Chest(Leather2), + stats: (20), + ), +) \ No newline at end of file diff --git a/assets/common/items/armor/chest/steel_0.ron b/assets/common/items/armor/chest/steel_0.ron new file mode 100644 index 0000000000..c97a49a7c4 --- /dev/null +++ b/assets/common/items/armor/chest/steel_0.ron @@ -0,0 +1,8 @@ +Item( + name: "Steel Cuirass", + description: "A cuirass of steel plate", + kind: Armor( + kind: Chest(Steel0), + stats: (20), + ), +) \ No newline at end of file diff --git a/assets/common/items/armor/foot/leather_2.ron b/assets/common/items/armor/foot/leather_2.ron new file mode 100644 index 0000000000..ad91562bb3 --- /dev/null +++ b/assets/common/items/armor/foot/leather_2.ron @@ -0,0 +1,8 @@ +Item( + name: "Leather Boots", + description: "Boots made of simple leather", + kind: Armor( + kind: Foot(Leather2), + stats: (20), + ), +) diff --git a/assets/common/items/armor/foot/steel_0.ron b/assets/common/items/armor/foot/steel_0.ron new file mode 100644 index 0000000000..ccd47f75fb --- /dev/null +++ b/assets/common/items/armor/foot/steel_0.ron @@ -0,0 +1,8 @@ +Item( + name: "Steel Boots", + description: "Boots plated in steel", + kind: Armor( + kind: Foot(Steel0), + stats: (20), + ), +) diff --git a/assets/common/items/armor/hand/leather_2.ron b/assets/common/items/armor/hand/leather_2.ron new file mode 100644 index 0000000000..22b52d99a1 --- /dev/null +++ b/assets/common/items/armor/hand/leather_2.ron @@ -0,0 +1,8 @@ +Item( + name: "Leather Gloves", + description: "Gloves made of simple leather", + kind: Armor( + kind: Hand(Leather2), + stats: (20), + ), +) diff --git a/assets/common/items/armor/hand/steel_0.ron b/assets/common/items/armor/hand/steel_0.ron new file mode 100644 index 0000000000..ad7e237adc --- /dev/null +++ b/assets/common/items/armor/hand/steel_0.ron @@ -0,0 +1,8 @@ +Item( + name: "Steel Gauntlets", + description: "Gauntlets made of steel", + kind: Armor( + kind: Hand(Steel0), + stats: (20), + ), +) diff --git a/assets/common/items/armor/pants/leather_2.ron b/assets/common/items/armor/pants/leather_2.ron new file mode 100644 index 0000000000..31b55c6f62 --- /dev/null +++ b/assets/common/items/armor/pants/leather_2.ron @@ -0,0 +1,8 @@ +Item( + name: "Leather Leg Armour", + description: "Leg armour made of simple leather", + kind: Armor( + kind: Pants(Leather2), + stats: (20), + ), +) diff --git a/assets/common/items/armor/pants/steel_0.ron b/assets/common/items/armor/pants/steel_0.ron new file mode 100644 index 0000000000..aed385a94d --- /dev/null +++ b/assets/common/items/armor/pants/steel_0.ron @@ -0,0 +1,8 @@ +Item( + name: "Steel Chausses", + description: "Leg armour made of steel plates", + kind: Armor( + kind: Pants(Steel0), + stats: (20), + ), +) diff --git a/assets/common/items/armor/shoulder/leather_2.ron b/assets/common/items/armor/shoulder/leather_2.ron new file mode 100644 index 0000000000..883e07d95d --- /dev/null +++ b/assets/common/items/armor/shoulder/leather_2.ron @@ -0,0 +1,8 @@ +Item( + name: "Leather Shoulder Pad", + description: "A simple shoulder pad made of leather", + kind: Armor( + kind: Shoulder(Leather2), + stats: (20), + ), +) diff --git a/assets/common/items/armor/shoulder/steel_0.ron b/assets/common/items/armor/shoulder/steel_0.ron new file mode 100644 index 0000000000..6c48846f9a --- /dev/null +++ b/assets/common/items/armor/shoulder/steel_0.ron @@ -0,0 +1,8 @@ +Item( + name: "Steel Shoulder Pad", + description: "A simple shoulder pad made of steel", + kind: Armor( + kind: Shoulder(Steel0), + stats: (20), + ), +) diff --git a/assets/voxygen/item_image_manifest.ron b/assets/voxygen/item_image_manifest.ron index 491f6db100..f7e62845d2 100644 --- a/assets/voxygen/item_image_manifest.ron +++ b/assets/voxygen/item_image_manifest.ron @@ -263,6 +263,31 @@ "voxel.armor.shoulder.plate_right-0", (0.0, 0.0, 0.0), (-90.0, 130.0, 0.0), 1.2, ), + //Steel0 Armor + Armor(Chest(Steel0)): VoxTrans( + "voxel.armor.chest.steel-0", + (0.0, 0.0, 0.0), (-90.0, 180.0, 0.0), 1.2, + ), + Armor(Pants(Steel0)): VoxTrans( + "voxel.armor.pants.steel-0", + (0.0, 0.0, 0.0), (-90.0, 180.0, 0.0), 1.2, + ), + Armor(Belt(Steel0)): VoxTrans( + "voxel.armor.belt.steel-0", + (0.0, 0.0, 0.0), (-90.0, 180.0, 0.0), 1.8, + ), + Armor(Foot(Steel0)): VoxTrans( + "voxel.armor.foot.steel-0", + (0.0, 0.0, 0.0), (-95.0, 140.0, 0.0), 1.1, + ), + Armor(Hand(Steel0)): VoxTrans( + "voxel.armor.hand.steel_right-0", + (0.0, -1.0, 0.0), (-90.0, 135.0, 0.0), 1.0, + ), + Armor(Shoulder(Steel0)): VoxTrans( + "voxel.armor.shoulder.steel_right-0", + (0.0, 0.0, 0.0), (-90.0, 130.0, 0.0), 1.2, + ), //Leather0 Armor Armor(Chest(Leather0)): VoxTrans( "voxel.armor.chest.leather-0", @@ -284,12 +309,38 @@ "voxel.armor.hand.leather_right-0", (0.0, -1.0, 0.0), (-90.0, 135.0, 0.0), 1.0, ), + Armor(Shoulder(Leather0)): VoxTrans( + "voxel.armor.shoulder.leather_right-0", + (0.0, 0.0, 0.0), (-90.0, 130.0, 0.0), 1.2, + ), + //Leather1 Armor Armor(Shoulder(Leather1)): VoxTrans( "voxel.armor.shoulder.leather_right-1", (0.0, 0.0, 0.0), (-90.0, 130.0, 0.0), 1.2, ), - Armor(Shoulder(Leather0)): VoxTrans( - "voxel.armor.shoulder.leather_right-0", + //Leather2 Armor + Armor(Chest(Leather2)): VoxTrans( + "voxel.armor.chest.leather-2", + (0.0, 0.0, 0.0), (-90.0, 180.0, 0.0), 1.2, + ), + Armor(Pants(Leather2)): VoxTrans( + "voxel.armor.pants.leather-2", + (0.0, 0.0, 0.0), (-90.0, 180.0, 0.0), 1.2, + ), + Armor(Belt(Leather2)): VoxTrans( + "voxel.armor.belt.leather-2", + (0.0, 0.0, 0.0), (-90.0, 180.0, 0.0), 1.8, + ), + Armor(Foot(Leather2)): VoxTrans( + "voxel.armor.foot.leather-2", + (0.0, 0.0, 0.0), (-95.0, 140.0, 0.0), 1.1, + ), + Armor(Hand(Leather2)): VoxTrans( + "voxel.armor.hand.leather_right-2", + (0.0, -1.0, 0.0), (-90.0, 135.0, 0.0), 1.0, + ), + Armor(Shoulder(Leather2)): VoxTrans( + "voxel.armor.shoulder.leather_right-2", (0.0, 0.0, 0.0), (-90.0, 130.0, 0.0), 1.2, ), //Linen Cloth diff --git a/assets/voxygen/voxel/armor/belt/leather-2.vox b/assets/voxygen/voxel/armor/belt/leather-2.vox new file mode 100644 index 0000000000000000000000000000000000000000..ffbf92b7906d55da67393def15cbd5ad33ed02c2 GIT binary patch literal 1472 zcmbu8e@L8l9LGP;JwNWy3YVu&Ej8!zPREv~)6C1x^xV$nrnAYsnRKCSVp~H(oE!ta zHZZlE$!$SP&m}f%w#g;MK$8$1*jU$yAZ1A8-~JI1{`2nrw0|OE{m~a*Jm1gz^Zoq# zKF`y5wjuSzsS z`NU>XCae}Epz2CMBdW$H(M6fih)OI(SEv(Jp-mK`Gfp#OiG^6H*;MK(b)ph0bJ;8s zu&ENT>hzhmMq5)R4DJm>dJWpT*&FK{L^o|iA}V7H>Q-GMR%#kiO`lLR^D(ccQzIHR z-PCwq<=#S{N~~rt%%yR!6NP?@dB()7&DpHP;A{rtd2a!Ov*>0{vp(Yu#u>B?v#yz& zb11ww3w;XbwQvrF^H_LZF>|m-#e{Jd#vMKIa)q!#bAc-u3}RzMaPaC9cG>^HZ+1Ht z7i&!yZuq`@Bnh5mlr`^%_sw!R$4Vhy9nuj8i988eN=8DhAmy|m-pJZerSz~7sQcjul)RZvhrDtKc?aPA&s>(h|Yo{gMf9*UzLq<7kpJ(PyL z$xIY1=OU$9kkc#J6Bf7^1oA5D_t+q#Pe5kv=+E7Osppb#|HX8m<{6Z6WFPsF{7Oc< z1v4KA7N-PvZqfD#B3{8)M+NIA1%BGyje_A;>Rp0Lr=aC|L06Svd-*Eri_*~U%|=hX z1K~Cog2ze_K2?d4whCZ1g8W^{aJw>b=p_f*8cWboBM7}F7<*f=@V=lpBMrX195fg2 zMQ2qh8uOCTUX+fZ1G^Dz*$01J1v*|ojNsW57&w0tJ#YCje4zu;sf*b7{!_%q$75&W z4rFCzp}?7q;=Rw}1(y?EcL9!6mty#xr!X^~ji2u1Vf}7CK4Q)2q+s>7;Fli+J?#!$ z2^C`LMkTg>Zb0Wi0*0>JaqC_x){*(h`LFO^{%wBDg@BbY;JfSpd;Y@0LR=~t!@hzD z%KH0|8cN0Tgy8-Oe!7#Ba5|mn>gvKP2WKIn9wc=pVeaz7cX&RH-%dsbE?pQ!dD#eB z2QFe~OA79Ou^V&#RE+S>{(1lPwF_uE7DH3RDmqUA=PpknbS;YaX1~RU-^8&0Y(L8T z#&GE41vK1@!Q=5@gRO{-;CHAo!Go_K_V<9_*MIrV{_OnU;^O$v@ciGw?MZBHZDD(R z`!Bt&t`61J)o{DraJgJ?I2;%sAIJ3cG@{Wc=I7_Jva*6$EQYnUHEeEf!teK^wY3#z X&YVGacQ^X_`Y<>+h;TS;=9E7H@%~NC literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/armor/belt/steel-0.vox b/assets/voxygen/voxel/armor/belt/steel-0.vox new file mode 100644 index 0000000000000000000000000000000000000000..f74708f9ea4a9648a7f4e957134c29e4f5e3539f GIT binary patch literal 1592 zcmbu8Z%mbS6vxl=|G7{N^8x~egqZh&)3_)^5M9EHUJM0ErdMOF!IY8YSYycU+~lU4 zDTTzYwq-z#ku*u!jn&*F)||MRvzu#e$sB9(iWj_atpW1w`{9vo{pHuW-XBOmtP23`==nTFRV8 zbW4G)DT|h-ENP~)q!Z2HN(@C=)`><`VyN^Jji^LX>0_Sm@ha&KBPXVNyD-dNuxhGSc@s4>T+-!ch(I?~jy`cwLx@cc z#i?)ey%EzEt}>_F3JhC$pxd%&5X)i@#IjhI?ArQjIdvaC;1dpqG1Dv9cK#aHxc|g` zw;Pj_)lLW(gI_V2s1xeL{)I);2z&fnIB(Pfq zPeueQdju(83N}?IqUul*LdRC({qbk9B`m1z6TCGlIC7i0wdu%g&PGl+7lkoDGTPk8 z?oLPU&}!sgUx(EFf}CT5^-)3Tgg{qh8R{NPoMa!YgQaQP93cuyFl6YB!~$ zIgpLcS`VU4K7@A{A$qU^y-nr7%|Ya?NkOS^HMYOvK~sGZTB-z*Hw69f3MM`j6lSI) zn45$Bg&WYer5N?ODQMo5f$ptq5o_3pP)#{n-rRxk;e9xD^Z+{F38CkB3u413F!SRV zNK8z`s+B8{m6e5jZ#D`yJdc-rUIa?>v9q!mJ?}k((SdCIaw8YhxAO1_YsQ8IH?IhO z`$^E*?7_K60j^!F!2GXuXgigJ?h9^QzMY0?tbXkL=XfvwHb2HAz*Il*!-fAne?dV3 z&J^`yWBwpYPIe(Jl7{P_3GVC@U}y+luNUp@?Rah57$nk(gPFoE=8w^B6uD`yL;E z7suwqCsEebkL{mMpzcx}e!m|xY(;E>KcK}0_r879-#va`{}p%obMt>oNZ>!i^M40d zhA=-rkA;PWhyI$H8dO$RqO`OWKA#UBj|T$-0~i?@K`a)-)vH%AH8q8JJdV3}?_zd# f7NJlGjg5_HZEZzIM+dsPx^VjRX+)z@M^pX+EvKJN literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/armor/chest/leather-2.vox b/assets/voxygen/voxel/armor/chest/leather-2.vox new file mode 100644 index 0000000000000000000000000000000000000000..577c0d0018378484cd67927525eda3407690c2f6 GIT binary patch literal 57240 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 literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/armor/foot/steel-0.vox b/assets/voxygen/voxel/armor/foot/steel-0.vox new file mode 100644 index 0000000000000000000000000000000000000000..0a540722479da1bd1297946fc4fc854599603c5a GIT binary patch literal 1500 zcmbu;e@I$o2Vm6gBo7!$QTV-JE*f7?NIcDsb496|5#bOO%D|XFCw@q$!DBu_^nf7tGeKT;B&tqD!E-(u@60@f za<8CvNbvfU;OrefTbqES)>NcT&mq!Gv zCj=h$JL?4l&CGWQ%AA6x=L8+)g3#g>)aE6i)t!p2+6?$xa^O8$0RPD{47QX4%VWse z8H?haWE^}k11UONQund9g^cLH5+dN6RI4S|V^So`i%L`FtpNAz~2q@*C*nTq^9&*1qSC)~x^ zI9ySPfw!N;)MzSxyp@U7+gbRKa|Xr*%Qpo-e=q22&A_lP7Yo%~i2o^HhZ;<5O#;O=pLy5r+; zI-Tg~=)lVdrXjvA#I(m?=JJDgcrJn8PErysT^K@1(IA?8FJebi9BzNU3p1X04D!tW zdH%K4b7(jkL_^&&+D`&!FHgYtNdWIoe}fOc4r1S#9+Y&C;NVAdsJkA7%jLovmm=YW z-(Z4*dtW_R-#va`|21x}&%ysKB7*-6@Bcg89LL7S2123G{d`SL4Js-sP+VM$oSYnF zWMp7;bQF`5lL!O?n4O))($W%w!5~&vR{0Kd+u|>yL<7fAqkM=llNrcz%4o zpHIV~qgf#lsVVmzR43nT5vlk2y^mQ!E#@z_sz2K3_l;PCYB`E2a?LapQxQYI6?042 zP{cH^nxYtr8FR%@ZKyUZEvgmMP;bP9MZIaw>pD?P)3|1c#!yT{<0+z;stwH}R(val zwN7)3RbKXP%}q zAk>WrZ%hfN@9EyUG&0(<$q6_qig-xxw2?iShI2fV{KZ^SnuMIQ!mg0uo)hF%&EFG? zj68u%+vv;P#>8_;+p?98QYAl-{ z?>Je#o5x3*GcqnL-xhxUUg&AFb17KB!i@?xeyXRlKY_vPHg4TZWtGfF_J2vw<=^^e zCJ0NT@a^^g-G4zr0T+r#*^?ipw6B-cU@D7Og!{+z>W+`&a5(7d>f)9C(@3y~q|PK} zE)M%VuxZjZCEvBBo%=AYxWwY5}LRpEBKak*UB?RLh-#+aO(Boc`*J3GtL(h|{V kl$Dhg*4NkZ`~9@Ew9wJfL3ejIy}i8*3=9wog{+wJ2byO%YybcN literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/armor/hand/leather_right-2.vox b/assets/voxygen/voxel/armor/hand/leather_right-2.vox new file mode 100644 index 0000000000000000000000000000000000000000..c380321a6ee75c670471eaf8ab7c37216508cacd GIT binary patch literal 1240 zcmbu8e@NVQ7{{OQ*9}A~T%J0$)SSz^b8LA!&AjYP&+S}pI-AU!NrbYA&4z?HIR^9E zz|?Xkw*@V|ZDKQKn_N;1G%3-6jdhI(QieqS?H>{0Kd+u|>yL<7fAqkM=llNrcz%4o zpHIV~qgf#lsVVmzR43nT5vlk2y^mQ!E#@z_sz2K3_l;PCYB`E2a?LapQxQYI6?042 zP{cH^nxYtr8FR%@ZKyUZEvgmMP;bP9MZIaw>pD?P)3|1c#!yT{<0+z;stwH}R(val zwN7)3RbKXP%}q zAk>WrZ%hfN@9EyUG&0(<$q6_qig-xxw2?iShI2fV{KZ^SnuMIQ!mg0uo)hF%&EFG? zj68u%+vv;P#>8_;+p?98QYAl-{ z?>Je#o5x3*GcqnL-xhxUUg&AFb17KB!i@?xeyXRlKY_vPHg4TZWtGfF_J2vw<=^^e zCJ0NT@a^^g-G4zr0T+r#*^?ipw6B-cU@D7Og!{+z>W+`&a5(7d>f)9C(@3y~q|PK} zE)M%VuxZjZCEvBBo%=AYxWwY5}LRpEBKak*UB?RLh-#+aO(Boc`*J3GtL(h|{V kl$Dhg*4NkZ`~9@Ew9wJfL3ejIy}i8*3=9wog{+wJ2byO%YybcN literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/armor/hand/steel_left-0.vox b/assets/voxygen/voxel/armor/hand/steel_left-0.vox new file mode 100644 index 0000000000000000000000000000000000000000..9f29e826f0d266cd29d3ded21074c361dfe926f9 GIT binary patch literal 1240 zcmbu8e@L8l7{H(R^#-C9E>E3WYR=`IjxA58nU|gEx#@D#*<{{KB9u*RHYCK!F__l| zrj|3gZO~E^u^F>XE-40@l<2_5x<&*kLn8n7kBAiW({o#YM8x`|2R=OS^L&3iKi=nC zbNE<_UqmX3$_}ZLZ!99!WghoqAwwnXFSe;ZR_iGn2su^K6jKD#5De466va^VTOMF; znW7kqX>J)I)HV!rM8vXbO4uKUVj8NAuwm0wt%wn}C92KP9>cP3nwCw&w5&@=i)Gy~ zESsW!%}nnN#a1-7VHhJv_P<;tntw=8@p`?i^a}^B&au<_JHJ}3%+6MXmbhN_`6G#P z#ZpkW5BHme*a!0w_co+C0vUc1nTsW=LWnyhWV+MYeM1Ou79RHr(S1Vfr$SCeB;}`~ z@SKb0-KnQ3@d{M~!W$F9nY((nDuJY?RMNZ|fjto43Oj_wm-_F=`G2DAG5z3#TKua!Deo%f<2HJ&*4}{q<;r30nUBa+i z_~MALd_wT3-CiT~HK@N$D7Fjr&kJoO!p8hns&W!&a;MT!Wy9a-zT>tcT9QvqMl4M^iS+K@MWB8! zp2{McUq6KR^l`e+o}l9`4}IsG35;D}<-1RajErPQ^mbBGQpmEWlDp?wUU1lPJF_@k znor+5Pcbo+%8$1*SiY0VhZ-|5DlFa-e*RwQXtHtHm(ASuV%C1DrnNhY-fLEF-i>FO z?KAuY;J@7^W^g{D)@~bas-GxOjem!h(Jpx-YP!K8`z|?PAIkPrvr;pZ%|@n4$J) zklN}+T2I26OJn#(0=zf*HCMh0vhQ>kg`I;O{Ah;i8$nzy7b}{Ige&|;SWvkC<-`2$ z>wNv!dMH1uzPE@7eKWfM?{I6BwY4=iHZ~skD=RB0EiJ|AbmDM0u-R-34Gl3qK29JI uV0wC*g@pxz!5~XZORTQ0;_-NBXlS6NrG@tPb~-yd>FMdg@Arr9ls^GH07M)B literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/armor/hand/steel_right-0.vox b/assets/voxygen/voxel/armor/hand/steel_right-0.vox new file mode 100644 index 0000000000000000000000000000000000000000..9f29e826f0d266cd29d3ded21074c361dfe926f9 GIT binary patch literal 1240 zcmbu8e@L8l7{H(R^#-C9E>E3WYR=`IjxA58nU|gEx#@D#*<{{KB9u*RHYCK!F__l| zrj|3gZO~E^u^F>XE-40@l<2_5x<&*kLn8n7kBAiW({o#YM8x`|2R=OS^L&3iKi=nC zbNE<_UqmX3$_}ZLZ!99!WghoqAwwnXFSe;ZR_iGn2su^K6jKD#5De466va^VTOMF; znW7kqX>J)I)HV!rM8vXbO4uKUVj8NAuwm0wt%wn}C92KP9>cP3nwCw&w5&@=i)Gy~ zESsW!%}nnN#a1-7VHhJv_P<;tntw=8@p`?i^a}^B&au<_JHJ}3%+6MXmbhN_`6G#P z#ZpkW5BHme*a!0w_co+C0vUc1nTsW=LWnyhWV+MYeM1Ou79RHr(S1Vfr$SCeB;}`~ z@SKb0-KnQ3@d{M~!W$F9nY((nDuJY?RMNZ|fjto43Oj_wm-_F=`G2DAG5z3#TKua!Deo%f<2HJ&*4}{q<;r30nUBa+i z_~MALd_wT3-CiT~HK@N$D7Fjr&kJoO!p8hns&W!&a;MT!Wy9a-zT>tcT9QvqMl4M^iS+K@MWB8! zp2{McUq6KR^l`e+o}l9`4}IsG35;D}<-1RajErPQ^mbBGQpmEWlDp?wUU1lPJF_@k znor+5Pcbo+%8$1*SiY0VhZ-|5DlFa-e*RwQXtHtHm(ASuV%C1DrnNhY-fLEF-i>FO z?KAuY;J@7^W^g{D)@~bas-GxOjem!h(Jpx-YP!K8`z|?PAIkPrvr;pZ%|@n4$J) zklN}+T2I26OJn#(0=zf*HCMh0vhQ>kg`I;O{Ah;i8$nzy7b}{Ige&|;SWvkC<-`2$ z>wNv!dMH1uzPE@7eKWfM?{I6BwY4=iHZ~skD=RB0EiJ|AbmDM0u-R-34Gl3qK29JI uV0wC*g@pxz!5~XZORTQ0;_-NBXlS6NrG@tPb~-yd>FMdg@Arr9ls^GH07M)B literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/armor/pants/leather-2.vox b/assets/voxygen/voxel/armor/pants/leather-2.vox new file mode 100644 index 0000000000000000000000000000000000000000..63ab5eb7ba06775b9ccf53150d7cd59b20f35981 GIT binary patch literal 1912 zcmbu8Z)jCz9LIm>dG2}6xm(4|>vXf`nwq;)wEb~rTehWlI&HeS9D218G10L!88PO# z2=1m}YRxsS2HAFRjO9X8xs5__Nr)4c*i9lx5s7@g7ZI^H-@ea$6A|{J10T-s_kEu8 zJimXZWy|)$gorfM)^FxZ+B}iw`e@_{>+s1Ulq5j5?}*k{Xc~Mbi7P42Uu;t(O4 znqi#EP%}=-<6X-7A}L3NaR|?%O@y{q^c8&~w0#>J(VDuZPK35$Y&t+KK#i~wNspRO zg2XV!AT^(BhCT3zVeLKZQxEbCkG{`dc+ADH_MWXjajegpd$#VxFbALadcXzDIe)Qw$Z|1{TKqPT8|;<_OY*FC$3`DpHQiQ+y(9PaZh+~?apb~d-tw~XMQC9JKz(G#qgkCu;J`=EDZgL-$Nl>yVhWraK8Sl$C6W%i>h5K5qWzJ!h@?J z5f{>t1xY>)xt@!h2Ep8Yf~AoqSawn1cL<)03ugBTa=#E%G-PArz8pjk&&K;>&thFn z&@>=;>w@6mZGPL7kAn6hEQ*z&GF^lDogoyR%ty)a0+ilZg1Nf{iw+BxB?Q&u0(qVH z_xO;3ry!R@IJRUKMqZeMJ1@@%Ha>?crd&^cBEOM=Zo!3*1lL9cH!snz5hNpmueS>B z?GZ%jcee=o+NgI4)`kVGFABQW38rtHMN>sS+9O5iX(~oycNt>aRw1!>E&6xY0+UHB zU6_mNvIW@mN-=h~tU|{|LHrHD;JbqH4+WJ4`KT{hgk6=((YbClT1s-!UNIjh*Dpr8 zbp@i0wdiQCI*4;&;9TG%gf7gYSkcClqOMitQUFlJlseL?(F2~ z4i6(74x_893$Jas42kz(PUjqqoqp8AL;0MYf&!d6GJrKz{b)OW6!Ti=;?|doF&523 zKWp~S`ZqO1(b~I0-b1!i4^a$dgrSZY#@9^=r8LT{T3~PD^vFX!sG+)f1rltlD z7>f7=e?Vsh_rG}*-+j*4f34g2Lj2#dviQ$%|KGutVN6X;VS0LcMsI9vL|t7Ss;jF} zR#t}M;$jR94PkV26zOytSFc{h#KZ(LnGEjUy^DtrA0ir!qOGkB`}glhcXu~>dwX%> M#0ex4345me1qL&y%K!iX literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/armor/pants/steel-0.vox b/assets/voxygen/voxel/armor/pants/steel-0.vox new file mode 100644 index 0000000000000000000000000000000000000000..d790632484df6cae0053bb78b25cab69a859a716 GIT binary patch literal 2008 zcmbu8VN6z47{{M;?z#8ed*5o9h=PTLnt)CN6f?*m1w}(alIg3t)^N&5bF49B%uPr) zQwxcqZ5d!=q)k&ttmY=Ua^hyr$hEd~&Q*TqLu>8bEC2pizqHouL+|$6Ip=?#_nhZ> z{^!=M-H_EIB2{ITYdFZaR;0EvUjA6L;4c~jV#tP#@yc$86aIcBp3)O8F-j*K;%Tml z(fWi#wAP70I}@HmofwBY(Iha`4RvA+b)re&I1{c*&80>(@gvQn=27!>zxH&(wK`#l zWA#Mn>VzUjsR>7^geIZUNkxoS2}i4b%~6riVJtBYb%#1pj!J6YVVSEj)D3l_j7mC@ z=2CO15#_3+r>J?48ryd+$eU{x9SiKGy-g@L7vx z@BOI%L`Q4(+>iQBENcjOuTMOBV58oXfH>Uq=z*mNK0OHNLFh@s(gVw!!>9(<;uFi- zLe?0tR-f2t&K~&eg~vOCs6XtJjXdEQ+LNTi(U5@N`NYyo%{Stcko^tVXP;QkedZF< zhk$EC;!wBI9{n>9 z-YGTiTjFrv63u--iizF_$pVO+=sGv6_TWS1w+a5*+S+ipOR)0zWz0B4GX8^@QT?O+Oh!g>M}IGz6Nc(HsRo&ZD@Tf zj?R6J7#iGbS*=Q~f~OkXyBx|)aE z*XQCR-Z?ZNxOPGC%MXIqh8!I0D8%K{%P{_PEt(Fd;PA;*oV$^Z+nDjl`j4?M|5iVS zJAlz%;JcImyZ*w$LL6D#iv{`pC_d1R^p12~IU%^YiBET60J*ujXl`!CD=W`KI$ANM zX$ppqKJ;);2H#F*CXVdu#?s<0)F0fBXW9QDDXlZFddwV+$9Xf=bo}TDT`3n%0{Jj7G literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/armor/shoulder/leather_left-2.vox b/assets/voxygen/voxel/armor/shoulder/leather_left-2.vox new file mode 100644 index 0000000000000000000000000000000000000000..ac86b23b713331517b1d78f53c306cef7acf1948 GIT binary patch literal 1368 zcmbu8e@NVA9LGP;kFOK0aP!ourRH4T>Dcmgnt9oop4++HbT*kclL%!Kn~fvH$uXGM z2BwxXxh-hv_s+v+%r?2C7-$lr0~_la5u^->{M$bw!hha}v z;q&>hF-kameF=Lkf8uwG1&fRIu_fGefAvI?oT;d2JqXu3m9UMMgIorvD*d4x_6*_teLmZm zfvnD4v5yl@(Q z?|LwDsSA;*%h>qgb0j7vVt4XR)3F>RJUGQyHynn|W(4L?W1Dcmgnt9oop4++HbT*kclL%!Kn~fvH$uXGM z2BwxXxh-hv_s+v+%r?2C7-$lr0~_la5u^->{M$bw!hha}v z;q&>hF-kameF=Lkf8uwG1&fRIu_fGefAvI?oT;d2JqXu3m9UMMgIorvD*d4x_6*_teLmZm zfvnD4v5yl@(Q z?|LwDsSA;*%h>qgb0j7vVt4XR)3F>RJUGQyHynn|W(4L?W1V5NscvnJ%btzjuS+;=n>t}BN9W6(IVP5 z2@BDQ86#msp>n8N6lIfbTEwtutW)`_PK%fpm8)vBh)&fRH;JKos@_DDZ|V^(s?4J; z?60XcOx6;OwIC+941v`TqmNjhpy&nD`ih%+>FLl zFV?AfoqN#PSHT*MzOGQ~v8O>a#&qUtL{~XP=bRWuL`-5am`iADv~}7#ZJoBnat&b( zl~*6usXEodb6L0_3-@tk|7#V|55z=p_b%g2)7 zN=8}pKDgg5hkdLR;uzs5Txo zrxV~kpNRM8oeXbA$R zDlyVl0jy3Se`hkBj!YbU)rPjl5_HrE{BH`z-W4o-C@9WIgC{Qs&Bc4rRaJ_{ykxW& zrDJISE(BZl!dq8?j<*iMcjh<-&YeW>J6;T5=st*pav$Sy@>quxF!q z&kK0jVTapUfWy_L7=G_r%#3H_=ev1Wzn70sxMpxtuzE-E>yLuob{nqv3$b*w5?jAC zplcujLpQ9reLofJ$b9Viukc>}?fjVY11n>|_c#9c`3nmRaj9esdkZE|*58Lze=3%* z2_78h)191z-EK#BcQ;-?FbnbbBB?70bC(}|!*gkTI~f_cbYT?bWg}=ExQHDsDY*B= zF3fpTF~U3h=l$2$E}-dX2u%&E=sE?Qy*vf~^&mc&{SF_08^XRb{V4An!@*A%&~PgR zm&=6>Zbf1V{(un@JpB66{vPsu{a0M=&&vNTE{^{U^ZyR+Ok!(m3*m4$I$u{;hwAET zIGs*791hrQHjIytV|scT!C(;c^Yd6)SwSci!rIyzHa9on^?K3T+KSH3PW1Hjps%kF NgM)(z1Olq3`~}q}gg*cP literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/armor/shoulder/steel_right-0.vox b/assets/voxygen/voxel/armor/shoulder/steel_right-0.vox new file mode 100644 index 0000000000000000000000000000000000000000..7f1f21731e4825039ac1d805e6e53e81fa54456f GIT binary patch literal 1488 zcmbu8e@NVA9LGQ3ALmRfT%J0$)SSyZ9b2AGGcP;Sb32!t&L;C_5<}UV5NscvnJ%btzjuS+;=n>t}BN9W6(IVP5 z2@BDQ86#msp>n8N6lIfbTEwtutW)`_PK%fpm8)vBh)&fRH;JKos@_DDZ|V^(s?4J; z?60XcOx6;OwIC+941v`TqmNjhpy&nD`ih%+>FLl zFV?AfoqN#PSHT*MzOGQ~v8O>a#&qUtL{~XP=bRWuL`-5am`iADv~}7#ZJoBnat&b( zl~*6usXEodb6L0_3-@tk|7#V|55z=p_b%g2)7 zN=8}pKDgg5hkdLR;uzs5Txo zrxV~kpNRM8oeXbA$R zDlyVl0jy3Se`hkBj!YbU)rPjl5_HrE{BH`z-W4o-C@9WIgC{Qs&Bc4rRaJ_{ykxW& zrDJISE(BZl!dq8?j<*iMcjh<-&YeW>J6;T5=st*pav$Sy@>quxF!q z&kK0jVTapUfWy_L7=G_r%#3H_=ev1Wzn70sxMpxtuzE-E>yLuob{nqv3$b*w5?jAC zplcujLpQ9reLofJ$b9Viukc>}?fjVY11n>|_c#9c`3nmRaj9esdkZE|*58Lze=3%* z2_78h)191z-EK#BcQ;-?FbnbbBB?70bC(}|!*gkTI~f_cbYT?bWg}=ExQHDsDY*B= zF3fpTF~U3h=l$2$E}-dX2u%&E=sE?Qy*vf~^&mc&{SF_08^XRb{V4An!@*A%&~PgR zm&=6>Zbf1V{(un@JpB66{vPsu{a0M=&&vNTE{^{U^ZyR+Ok!(m3*m4$I$u{;hwAET zIGs*791hrQHjIytV|scT!C(;c^Yd6)SwSci!rIyzHa9on^?K3T+KSH3PW1Hjps%kF NgM)(z1Olq3`~}q}gg*cP literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/humanoid_armor_belt_manifest.ron b/assets/voxygen/voxel/humanoid_armor_belt_manifest.ron index 5ad79789a8..61e06c1716 100644 --- a/assets/voxygen/voxel/humanoid_armor_belt_manifest.ron +++ b/assets/voxygen/voxel/humanoid_armor_belt_manifest.ron @@ -52,5 +52,13 @@ vox_spec: ("armor.belt.cultist", (-5.0, -3.5, 1.0)), color: None ), + Leather2:( + vox_spec: ("armor.belt.leather-2", (-5.0, -3.5, 2.0)), + color: None + ), + Steel0:( + vox_spec: ("armor.belt.steel-0", (-5.0, -4.5, 2.0)), + color: None + ), }, )) diff --git a/assets/voxygen/voxel/humanoid_armor_chest_manifest.ron b/assets/voxygen/voxel/humanoid_armor_chest_manifest.ron index 35879ad875..06eda546f3 100644 --- a/assets/voxygen/voxel/humanoid_armor_chest_manifest.ron +++ b/assets/voxygen/voxel/humanoid_armor_chest_manifest.ron @@ -110,5 +110,14 @@ vox_spec: ("armor.chest.cultist", (-7.0, -3.5, 2.0)), color: Some((57, 81, 132)) ), + Steel0:( + vox_spec: ("armor.chest.steel-0", (-8.0, -4.5, 2.0)), + color: None + ), + Leather2:( + vox_spec: ("armor.chest.leather-2", (-7.0, -3.5, 2.0)), + color: None + ), }, -)) +) +) \ No newline at end of file diff --git a/assets/voxygen/voxel/humanoid_armor_foot_manifest.ron b/assets/voxygen/voxel/humanoid_armor_foot_manifest.ron index 0dd7e45e6d..5b716c6859 100644 --- a/assets/voxygen/voxel/humanoid_armor_foot_manifest.ron +++ b/assets/voxygen/voxel/humanoid_armor_foot_manifest.ron @@ -44,5 +44,13 @@ vox_spec: ("armor.foot.cultist", (-2.5, -3.5, -9.0)), color: None ), + Steel0:( + vox_spec: ("armor.foot.steel-0", (-2.5, -3.5, -9.0)), + color: None + ), + Leather2:( + vox_spec: ("armor.foot.leather-2", (-2.5, -3.5, -9.0)), + color: None + ), }, )) diff --git a/assets/voxygen/voxel/humanoid_armor_hand_manifest.ron b/assets/voxygen/voxel/humanoid_armor_hand_manifest.ron index 99344042b1..8658f81455 100644 --- a/assets/voxygen/voxel/humanoid_armor_hand_manifest.ron +++ b/assets/voxygen/voxel/humanoid_armor_hand_manifest.ron @@ -100,6 +100,25 @@ color: Some((57, 81, 132)) ) ), - + Steel0: ( + left: ( + vox_spec: ("armor.hand.steel_left-0", (-1.5, -1.5, -7.0)), + color: None + ), + right: ( + vox_spec: ("armor.hand.steel_right-0", (-1.5, -1.5, -7.0)), + color: None + ) + ), + Leather2: ( + left: ( + vox_spec: ("armor.hand.leather_left-2", (-1.5, -1.5, -7.0)), + color: None + ), + right: ( + vox_spec: ("armor.hand.leather_right-2", (-1.5, -1.5, -7.0)), + color: None + ) + ), }, )) diff --git a/assets/voxygen/voxel/humanoid_armor_pants_manifest.ron b/assets/voxygen/voxel/humanoid_armor_pants_manifest.ron index 9de82d6acb..8115ee1524 100644 --- a/assets/voxygen/voxel/humanoid_armor_pants_manifest.ron +++ b/assets/voxygen/voxel/humanoid_armor_pants_manifest.ron @@ -68,5 +68,13 @@ vox_spec: ("armor.pants.cultist", (-5.0, -3.5, 1.0)), color: Some((57, 81, 132)) ), + Steel0:( + vox_spec: ("armor.pants.steel-0", (-6.0, -4.5, 1.0)), + color: None + ), + Leather2:( + vox_spec: ("armor.pants.leather-2", (-5.0, -3.5, 1.0)), + color: None + ), }, )) diff --git a/assets/voxygen/voxel/humanoid_armor_shoulder_manifest.ron b/assets/voxygen/voxel/humanoid_armor_shoulder_manifest.ron index cf01dba1b4..cd9d11b7fd 100644 --- a/assets/voxygen/voxel/humanoid_armor_shoulder_manifest.ron +++ b/assets/voxygen/voxel/humanoid_armor_shoulder_manifest.ron @@ -131,5 +131,25 @@ color: Some((57, 81, 132)) ) ), + Steel0: ( + left: ( + vox_spec: ("armor.shoulder.steel_left-0", (-5.0, -4.5 , 0.0)), + color: None + ), + right: ( + vox_spec: ("armor.shoulder.steel_right-0", (-1.0, -4.5, 0.0)), + color: None + ) + ), + Leather2: ( + left: ( + vox_spec: ("armor.shoulder.leather_left-2", (-5.0, -3.8, -0.9)), + color: None + ), + right: ( + vox_spec: ("armor.shoulder.leather_right-2", (-1.0, -3.8, -0.9)), + color: None + ) + ), }, )) diff --git a/common/src/comp/inventory/item/armor.rs b/common/src/comp/inventory/item/armor.rs index 76b6c4472d..d56c2fd3b3 100644 --- a/common/src/comp/inventory/item/armor.rs +++ b/common/src/comp/inventory/item/armor.rs @@ -27,8 +27,10 @@ pub enum Chest { WorkerOrange1 = 24, CultistPurple = 25, CultistBlue = 26, + Steel0 = 27, + Leather2 = 28, } -pub const ALL_CHESTS: [Chest; 26] = [ +pub const ALL_CHESTS: [Chest; 28] = [ Chest::Blue, Chest::Brown, Chest::Dark, @@ -55,6 +57,8 @@ pub const ALL_CHESTS: [Chest; 26] = [ Chest::WorkerOrange1, Chest::CultistPurple, Chest::CultistBlue, + Chest::Steel0, + Chest::Leather2, ]; #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)] @@ -72,8 +76,11 @@ pub enum Belt { ClothBlue0 = 9, ClothGreen0 = 10, Cultist = 11, + Leather2 = 12, + Steel0 = 13, } -pub const ALL_BELTS: [Belt; 12] = [ + +pub const ALL_BELTS: [Belt; 14] = [ Belt::None, Belt::Dark, Belt::TurqCloth, @@ -86,6 +93,8 @@ pub const ALL_BELTS: [Belt; 12] = [ Belt::ClothBlue0, Belt::ClothGreen0, Belt::Cultist, + Belt::Leather2, + Belt::Steel0, ]; #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)] @@ -108,8 +117,10 @@ pub enum Pants { WorkerBlue0 = 14, CultistPurple = 15, CultistBlue = 16, + Steel0 = 17, + Leather2 = 18, } -pub const ALL_PANTS: [Pants; 17] = [ +pub const ALL_PANTS: [Pants; 19] = [ Pants::None, Pants::Blue, Pants::Brown, @@ -127,6 +138,8 @@ pub const ALL_PANTS: [Pants; 17] = [ Pants::WorkerBlue0, Pants::CultistPurple, Pants::CultistBlue, + Pants::Steel0, + Pants::Leather2, ]; #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)] @@ -141,8 +154,10 @@ pub enum Hand { ClothGreen0 = 7, CultistPurple = 8, CultistBlue = 9, + Steel0 = 10, + Leather2 = 11, } -pub const ALL_HANDS: [Hand; 9] = [ +pub const ALL_HANDS: [Hand; 11] = [ Hand::Cloth, Hand::Assassin, Hand::Plate0, @@ -152,6 +167,8 @@ pub const ALL_HANDS: [Hand; 9] = [ Hand::ClothGreen0, Hand::CultistPurple, Hand::CultistBlue, + Hand::Steel0, + Hand::Leather2, ]; #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)] @@ -167,8 +184,11 @@ pub enum Foot { ClothBlue0 = 8, ClothGreen0 = 9, Cultist = 10, + Steel0 = 11, + Leather2 = 12, } -pub const ALL_FEET: [Foot; 10] = [ + +pub const ALL_FEET: [Foot; 12] = [ Foot::Dark, Foot::Sandal0, Foot::Jester, @@ -179,6 +199,8 @@ pub const ALL_FEET: [Foot; 10] = [ Foot::ClothBlue0, Foot::ClothGreen0, Foot::Cultist, + Foot::Steel0, + Foot::Leather2, ]; #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)] @@ -195,8 +217,10 @@ pub enum Shoulder { ClothGreen0 = 9, CultistPurple = 10, CultistBlue = 11, + Steel0 = 12, + Leather2 = 13, } -pub const ALL_SHOULDERS: [Shoulder; 11] = [ +pub const ALL_SHOULDERS: [Shoulder; 13] = [ Shoulder::Brown1, Shoulder::Chain, Shoulder::Assassin, @@ -208,6 +232,8 @@ pub const ALL_SHOULDERS: [Shoulder; 11] = [ Shoulder::ClothGreen0, Shoulder::CultistPurple, Shoulder::CultistBlue, + Shoulder::Steel0, + Shoulder::Leather2, ]; #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)] #[repr(u32)]