basic gliders

This commit is contained in:
Sarra 2021-01-12 15:20:11 -05:00
parent 0511563e35
commit 14b344469a
7 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ItemDef(
name: "Red Cloth Glider",
description: "Simple, but classy.",
kind: Glider(
(
kind: "RedCloth",
),
),
quality: Moderate,
)

View File

@ -0,0 +1,10 @@
ItemDef(
name: "Plain Cloth Glider",
description: "Simple, but classy.",
kind: Glider(
(
kind: "PlainCloth",
),
),
quality: Moderate,
)

View File

@ -154,6 +154,26 @@
("common.items.crafting_ing.honey", 1),
],
),
"Plain Cloth Glider": (
("common.items.glider.glider_basic_white", 1),
[
("common.items.crafting_ing.twigs", 5),
("common.items.crafting_ing.cloth_scraps", 10),
("common.items.ore.velorite", 3),
("common.items.crafting_tools.craftsman_hammer", 0),
("common.items.crafting_tools.sewing_set", 0),
],
),
"Red Cloth Glider": (
("common.items.glider.glider_basic_red", 1),
[
("common.items.crafting_ing.twigs", 5),
("common.items.crafting_ing.cloth_scraps_red", 10),
("common.items.ore.velorite", 3),
("common.items.crafting_tools.craftsman_hammer", 0),
("common.items.crafting_tools.sewing_set", 0),
],
),
"Leaves Glider": (
("common.items.glider.glider_leaves", 1),
[

View File

@ -1624,6 +1624,14 @@
"voxel.glider.glider_starter",
(-2.0, 0.0, 0.0), (-50.0, 30.0, 20.0), 0.9,
),
Glider("PlainCloth"): VoxTrans(
"voxel.glider.glider_basic_white",
(-2.0, 0.0, 0.0), (-50.0, 30.0, 20.0), 0.9,
),
Glider("RedCloth"): VoxTrans(
"voxel.glider.glider_basic_red",
(-2.0, 0.0, 0.0), (-50.0, 30.0, 20.0), 0.9,
),
Glider("Blue0"): VoxTrans(
"voxel.glider.glider_blue",
(6.0, 0.0, 0.0), (-50.0, 30.0, 20.0), 1.1,

BIN
assets/voxygen/voxel/glider/glider_basic_red.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/glider/glider_basic_white.vox (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -8,6 +8,14 @@
vox_spec: ("glider.glider_starter", (-15.0, -5.0, -5.0)),
color: None
),
"PlainCloth": (
vox_spec: ("glider.glider_basic_white", (-25.0, -20.0, -5.0)),
color: None
),
"RedCloth": (
vox_spec: ("glider.glider_basic_red", (-25.0, -20.0, -5.0)),
color: None
),
"Blue0": (
vox_spec: ("glider.glider_blue", (-26.0, -26.0, -5.0)),
color: None