mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Added fluffy jackalope slippers
This commit is contained in:
parent
9e5f03e2f4
commit
2825b08bee
8
assets/common/items/armor/foot/jackalope_slippers.ron
Normal file
8
assets/common/items/armor/foot/jackalope_slippers.ron
Normal file
@ -0,0 +1,8 @@
|
||||
Item(
|
||||
name: "Fluffy Jackalope Slippers",
|
||||
description: "So warm and cozy!\n\n<Right-Click to use>",
|
||||
kind: Armor(
|
||||
kind: Foot(JackalopeSlips),
|
||||
stats: (20),
|
||||
),
|
||||
)
|
@ -578,6 +578,10 @@
|
||||
"voxel.armor.shoulder.cloth_purple_right-0",
|
||||
(0.0, 0.0, 0.0), (-90.0, 130.0, 0.0), 1.2,
|
||||
),
|
||||
Armor(Foot(JackalopeSlips)): VoxTrans(
|
||||
"voxel.armor.foot.jackalope_slippers",
|
||||
(0.0, 0.0, 0.0), (-95.0, 140.0, 0.0), 1.1,
|
||||
),
|
||||
// Backs
|
||||
Armor(Back(Short0)): VoxTrans(
|
||||
"voxel.armor.back.short-0",
|
||||
|
BIN
assets/voxygen/voxel/armor/foot/jackalope_slippers.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/armor/foot/jackalope_slippers.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -52,5 +52,9 @@
|
||||
vox_spec: ("armor.foot.leather-2", (-2.5, -3.5, -2.0)),
|
||||
color: None
|
||||
),
|
||||
JackalopeSlips:(
|
||||
vox_spec: ("armor.foot.jackalope_slippers", (-2.5, -3.5, -2.0)),
|
||||
color: None
|
||||
),
|
||||
},
|
||||
))
|
||||
|
@ -186,9 +186,10 @@ pub enum Foot {
|
||||
Cultist = 10,
|
||||
Steel0 = 11,
|
||||
Leather2 = 12,
|
||||
JackalopeSlips = 13,
|
||||
}
|
||||
|
||||
pub const ALL_FEET: [Foot; 12] = [
|
||||
pub const ALL_FEET: [Foot; 13] = [
|
||||
Foot::Dark,
|
||||
Foot::Sandal0,
|
||||
Foot::Jester,
|
||||
@ -201,6 +202,7 @@ pub const ALL_FEET: [Foot; 12] = [
|
||||
Foot::Cultist,
|
||||
Foot::Steel0,
|
||||
Foot::Leather2,
|
||||
Foot::JackalopeSlips,
|
||||
];
|
||||
|
||||
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
||||
|
Loading…
Reference in New Issue
Block a user