more armour

This commit is contained in:
Monty 2021-05-08 23:17:32 +02:00
parent 040c0724b3
commit d42ba2fb38
10 changed files with 60 additions and 4 deletions

View File

@ -0,0 +1,13 @@
ItemDef(
name: "Righteous Champion Kilt",
description: "For light and honor.",
kind: Armor((
kind: Pants("CultistSlayer0"),
stats: (
protection: Normal(15.0),
poise_resilience: Normal(10.0),
),
)),
quality: Epic,
tags: [],
)

View File

@ -4,8 +4,8 @@ ItemDef(
kind: Armor(( kind: Armor((
kind: Shoulder("CultistSlayer"), kind: Shoulder("CultistSlayer"),
stats: ( stats: (
protection: Normal(22.0), protection: Normal(16.0),
poise_resilience: Normal(1.5), poise_resilience: Normal(10.0),
), ),
)), )),
quality: Epic, quality: Epic,

View File

@ -0,0 +1,13 @@
ItemDef(
name: "Righteous Champion Mantle",
description: "For light and honor.",
kind: Armor((
kind: Shoulder("CultistSlayer0"),
stats: (
protection: Normal(14.0),
poise_resilience: Normal(1.5),
),
)),
quality: Epic,
tags: [],
)

View File

@ -58,9 +58,11 @@
"cultist_slayer": [ "cultist_slayer": [
("common.items.armor.cultist_slayer.chest",1), ("common.items.armor.cultist_slayer.chest",1),
("common.items.armor.cultist_slayer.pants",1), ("common.items.armor.cultist_slayer.pants",1),
("common.items.armor.cultist_slayer.kilt",1),
("common.items.armor.cultist_slayer.hand",1), ("common.items.armor.cultist_slayer.hand",1),
("common.items.armor.cultist_slayer.foot",1), ("common.items.armor.cultist_slayer.foot",1),
("common.items.armor.cultist_slayer.shoulder",1), ("common.items.armor.cultist_slayer.shoulder",1),
("common.items.armor.cultist_slayer.shoulder_0",1),
("common.items.armor.cultist_slayer.belt",1), ("common.items.armor.cultist_slayer.belt",1),
("common.items.armor.cultist_slayer.back",1), ("common.items.armor.cultist_slayer.back",1),
], ],

View File

@ -1135,6 +1135,10 @@
"voxel.armor.cultist_slayer.pants", "voxel.armor.cultist_slayer.pants",
(0.0, 0.0, 0.0), (-90.0, 180.0, 0.0), 1.2, (0.0, 0.0, 0.0), (-90.0, 180.0, 0.0), 1.2,
), ),
Armor(Pants("CultistSlayer0")): VoxTrans(
"voxel.armor.cultist_slayer.pants_0",
(0.0, 0.0, 0.0), (-90.0, 180.0, 0.0), 1.2,
),
Armor(Belt("CultistSlayer")): VoxTrans( Armor(Belt("CultistSlayer")): VoxTrans(
"voxel.armor.cultist_slayer.belt", "voxel.armor.cultist_slayer.belt",
(0.0, 0.0, 0.0), (-90.0, 180.0, 0.0), 1.4, (0.0, 0.0, 0.0), (-90.0, 180.0, 0.0), 1.4,
@ -1151,6 +1155,10 @@
"voxel.armor.cultist_slayer.shoulder_r", "voxel.armor.cultist_slayer.shoulder_r",
(0.0, 0.0, 0.0), (-90.0, 180.0, 0.0), 1.2, (0.0, 0.0, 0.0), (-90.0, 180.0, 0.0), 1.2,
), ),
Armor(Shoulder("CultistSlayer0")): VoxTrans(
"voxel.armor.cultist_slayer.shoulder_l_0",
(0.0, 0.0, 0.0), (-90.0, 180.0, 0.0), 1.2,
),
Armor(Chest("CultistSlayer")): VoxTrans( Armor(Chest("CultistSlayer")): VoxTrans(
"voxel.armor.cultist_slayer.chest", "voxel.armor.cultist_slayer.chest",
(0.0, 0.0, 0.0), (-90.0, 180.0, 0.0), 1.2, (0.0, 0.0, 0.0), (-90.0, 180.0, 0.0), 1.2,

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

View File

@ -128,5 +128,9 @@
vox_spec: ("armor.cultist_slayer.pants", (-6.0, -3.1, 0.0)), vox_spec: ("armor.cultist_slayer.pants", (-6.0, -3.1, 0.0)),
color: None color: None
), ),
"CultistSlayer0": (
vox_spec: ("armor.cultist_slayer.pants_0", (-6.0, -3.5, -2.0)),
color: None
),
}, },
)) ))

View File

@ -301,5 +301,15 @@
color: None color: None
) )
), ),
"CultistSlayer0": (
left: (
vox_spec: ("armor.cultist_slayer.shoulder_l_0", (-7.0, -5.0 , -2.0)),
color: None
),
right: (
vox_spec: ("armor.cultist_slayer.shoulder_l_0", (-2.0, -5.0, -2.0)),
color: None
)
),
}, },
)) ))