plate chest armour

This commit is contained in:
Pfauenauge90 2020-02-20 15:30:47 +01:00 committed by timokoesters
parent 5a962771d9
commit e80750bc53
4 changed files with 13 additions and 4 deletions

BIN
assets/voxygen/voxel/armor/chest/assa.vox (Stored with Git LFS)

Binary file not shown.

BIN
assets/voxygen/voxel/armor/chest/plate.vox (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -30,5 +30,9 @@
Kimono: (
vox_spec: ("armor.chest.cloth_red_kimono", (-7.0, -3.5, 2.0)),
color: None
),
Plate: (
vox_spec: ("armor.chest.plate", (-7.0, -3.5, 2.0)),
color: None
)
})
})

View File

@ -488,8 +488,9 @@ pub enum Chest {
Midnight = 5,
Kimono = 6,
Assassin = 7,
Plate = 8,
}
pub const ALL_CHESTS: [Chest; 8] = [
pub const ALL_CHESTS: [Chest; 9] = [
Chest::Blue,
Chest::Brown,
Chest::Dark,
@ -498,6 +499,7 @@ pub const ALL_CHESTS: [Chest; 8] = [
Chest::Midnight,
Chest::Kimono,
Chest::Assassin,
Chest::Plate,
];
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]