Merge branch 'snowram/arthropods' into 'master'

Snowram/arthropods

See merge request veloren/veloren!3071
This commit is contained in:
Samuel Keiffer 2022-01-20 00:20:24 +00:00
commit 7052aad11b
155 changed files with 4753 additions and 30 deletions

View File

@ -39,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Interation hints now appear for sprites and entities
- Players can now mount and ride pets
- Experimental shaders, that can be enabled in Voxygen's settings (see the book for more information)
- Added arthropods
### Changed

View File

@ -228,6 +228,30 @@
secondary: "common.abilities.custom.theropodbasic.dash",
abilities: [],
),
Custom("Arthropod Basic"): (
primary: "common.abilities.custom.arthropodbasic.singlestrike",
secondary: "common.abilities.custom.arthropodbasic.ensnaringweb",
abilities: [],
),
Custom("Arthropod Leap"): (
primary: "common.abilities.custom.arthropodbasic.singlestrike",
secondary: "common.abilities.custom.arthropodbasic.ensnaringweb",
abilities: [
(None, "common.abilities.custom.arthropodbasic.leap"),
],
),
Custom("Arthropod Ranged"): (
primary: "common.abilities.custom.arthropodranged.singlestrike",
secondary: "common.abilities.custom.arthropodranged.ensnaringweb",
abilities: [
(None, "common.abilities.custom.arthropodranged.poisonball"),
],
),
Custom("Arthropod Charge"): (
primary: "common.abilities.custom.arthropodcharge.singlestrike",
secondary: "common.abilities.custom.arthropodcharge.charge",
abilities: [],
),
Custom("Turret"): (
primary: "common.abilities.custom.turret.arrows",
secondary: "common.abilities.custom.turret.arrows",

View File

@ -0,0 +1,8 @@
SpriteSummon(
buildup_duration: 0.6,
cast_duration: 0.4,
recover_duration: 0.3,
sprite: EnsnaringWeb,
summon_distance: (0, 8),
sparseness: 0.67,
)

View File

@ -0,0 +1,19 @@
LeapMelee(
energy_cost: 0,
buildup_duration: 0.5,
movement_duration: 0.4,
swing_duration: 0.075,
recover_duration: 0.2,
melee_constructor: (
kind: Bash(
damage: 120.0,
poise: 60.0,
knockback: 4.0,
energy_regen: 0.0,
),
range: 4.5,
angle: 180.0,
),
forward_leap_strength: 40.0,
vertical_leap_strength: 10.0,
)

View File

@ -0,0 +1,34 @@
ComboMelee(
stage_data: [
(
stage: 1,
base_damage: 40,
damage_increase: 0,
base_poise_damage: 15,
poise_damage_increase: 0,
knockback: 3.0,
range: 3.0,
angle: 60.0,
base_buildup_duration: 0.4,
base_swing_duration: 0.1,
hit_timing: 0.5,
base_recover_duration: 0.4,
forward_movement: 1.0,
damage_kind: Crushing,
damage_effect: Some(Buff((
kind: Poisoned,
dur_secs: 10.0,
strength: DamageFraction(1.0),
chance: 1.0,
))),
),
],
initial_energy_gain: 0,
max_energy_gain: 0,
energy_increase: 0,
speed_increase: 0.0,
max_speed_increase: 0.0,
scales_from_combo: 0,
is_interruptible: false,
ori_modifier: 0.7,
)

View File

@ -0,0 +1,28 @@
DashMelee(
energy_cost: 0,
melee_constructor: (
kind: Stab(
damage: 12.0,
poise: 25.0,
knockback: 10.0,
energy_regen: 0.0,
),
scaled: Some(Stab(
damage: 50.0,
poise: 100.0,
knockback: 30.0,
energy_regen: 0.0,
)),
range: 5.0,
angle: 90.0,
),
energy_drain: 0,
forward_speed: 5.0,
buildup_duration: 0.3,
charge_duration: 4.0,
swing_duration: 0.1,
recover_duration: 0.4,
ori_modifier: 0.3,
charge_through: false,
is_interruptible: false,
)

View File

@ -0,0 +1,34 @@
ComboMelee(
stage_data: [
(
stage: 1,
base_damage: 70,
damage_increase: 0,
base_poise_damage: 28,
poise_damage_increase: 0,
knockback: 3.0,
range: 3.0,
angle: 60.0,
base_buildup_duration: 0.4,
base_swing_duration: 0.1,
hit_timing: 0.5,
base_recover_duration: 0.4,
forward_movement: 1.0,
damage_kind: Crushing,
damage_effect: Some(Buff((
kind: Poisoned,
dur_secs: 10.0,
strength: DamageFraction(1.0),
chance: 1.0,
))),
),
],
initial_energy_gain: 0,
max_energy_gain: 0,
energy_increase: 0,
speed_increase: 0.0,
max_speed_increase: 0.0,
scales_from_combo: 0,
is_interruptible: false,
ori_modifier: 0.7,
)

View File

@ -0,0 +1,8 @@
SpriteSummon(
buildup_duration: 0.6,
cast_duration: 0.4,
recover_duration: 0.3,
sprite: EnsnaringWeb,
summon_distance: (0, 8),
sparseness: 0.67,
)

View File

@ -0,0 +1,19 @@
BasicRanged(
energy_cost: 0,
buildup_duration: 0.8,
recover_duration: 0.35,
projectile: Poisonball(
damage: 26.0,
radius: 5.0,
energy_regen: 0,
min_falloff: 0.5,
),
projectile_body: Object(SpitPoison),
/*projectile_light: Some(LightEmitter {
col: (1.0, 0.75, 0.11).into(),
..Default::default()
}),*/
projectile_speed: 70.0,
num_projectiles: 3,
projectile_spread: 0.2,
)

View File

@ -0,0 +1,34 @@
ComboMelee(
stage_data: [
(
stage: 1,
base_damage: 60,
damage_increase: 0,
base_poise_damage: 28,
poise_damage_increase: 0,
knockback: 3.0,
range: 3.0,
angle: 60.0,
base_buildup_duration: 0.4,
base_swing_duration: 0.1,
hit_timing: 0.5,
base_recover_duration: 0.4,
forward_movement: 1.0,
damage_kind: Crushing,
damage_effect: Some(Buff((
kind: Poisoned,
dur_secs: 10.0,
strength: DamageFraction(1.0),
chance: 1.0,
))),
),
],
initial_energy_gain: 0,
max_energy_gain: 0,
energy_increase: 0,
speed_increase: 0.0,
max_speed_increase: 0.0,
scales_from_combo: 0,
is_interruptible: false,
ori_modifier: 0.7,
)

View File

@ -7,7 +7,7 @@ BasicRanged(
radius: 5.0,
min_falloff: 0.5,
),
projectile_body: Object(BoltFire), // TODO: Get ice projectile model
projectile_body: Object(BoltIcicle),
/*projectile_light: Some(LightEmitter {
col: (1.0, 0.75, 0.11).into(),
..Default::default()

View File

@ -0,0 +1,11 @@
EntityConfig (
name: Automatic,
body: RandomWith("antlion"),
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.creature.arthropod.carapace"),
hands: Uninit,
meta: [],
)

View File

@ -0,0 +1,11 @@
EntityConfig (
name: Automatic,
body: RandomWith("black_widow"),
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.creature.arthropod.venom"),
hands: Uninit,
meta: [],
)

View File

@ -0,0 +1,11 @@
EntityConfig (
name: Automatic,
body: RandomWith("cave_spider"),
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.creature.arthropod.web"),
hands: Uninit,
meta: [],
)

View File

@ -0,0 +1,11 @@
EntityConfig (
name: Automatic,
body: RandomWith("horn_beetle"),
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.creature.arthropod.carapace"),
hands: Uninit,
meta: [],
)

View File

@ -0,0 +1,11 @@
EntityConfig (
name: Automatic,
body: RandomWith("stag_beetle"),
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.creature.arthropod.carapace"),
hands: Uninit,
meta: [],
)

View File

@ -0,0 +1,11 @@
EntityConfig (
name: Automatic,
body: RandomWith("tarantula"),
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.creature.arthropod.web"),
hands: Uninit,
meta: [],
)

View File

@ -0,0 +1,11 @@
EntityConfig (
name: Automatic,
body: RandomWith("weevil"),
alignment: Alignment(Enemy),
loot: LootTable("common.loot_tables.creature.arthropod.leaf"),
hands: Uninit,
meta: [],
)

View File

@ -0,0 +1,11 @@
EntityConfig (
name: Automatic,
body: RandomWith("crawler_molten"),
alignment: Alignment(Wild),
loot: LootTable("common.loot_tables.creature.arthropod.ooze"),
hands: Uninit,
meta: [],
)

View File

@ -0,0 +1,11 @@
EntityConfig (
name: Automatic,
body: RandomWith("crawler_moss"),
alignment: Alignment(Wild),
loot: LootTable("common.loot_tables.creature.arthropod.ooze"),
hands: Uninit,
meta: [],
)

View File

@ -0,0 +1,11 @@
EntityConfig (
name: Automatic,
body: RandomWith("crawler_sand"),
alignment: Alignment(Wild),
loot: LootTable("common.loot_tables.creature.arthropod.ooze"),
hands: Uninit,
meta: [],
)

View File

@ -0,0 +1,11 @@
EntityConfig (
name: Automatic,
body: RandomWith("leaf_beetle"),
alignment: Alignment(Wild),
loot: LootTable("common.loot_tables.creature.arthropod.leaf"),
hands: Uninit,
meta: [],
)

View File

@ -0,0 +1,13 @@
ItemDef(
name: "Arthropod Armor",
description: "Worn by arthropods.",
kind: Armor((
kind: Chest("Arthropod"),
stats: (
protection: Some(Normal(100.0)),
poise_resilience: Some(Normal(1.0)),
),
)),
quality: Legendary,
tags: [],
)

View File

@ -0,0 +1,21 @@
ItemDef(
name: "Arthropod Basic",
description: "testing123",
kind: Tool((
kind: Natural,
hands: Two,
stats: Direct((
equip_time_secs: 0.01,
power: 1.0,
effect_power: 1.0,
speed: 1.0,
crit_chance: 0.1,
range: 1.0,
energy_efficiency: 1.0,
buff_strength: 1.0,
)),
)),
quality: Low,
tags: [],
ability_spec: Some(Custom("Arthropod Basic")),
)

View File

@ -0,0 +1,21 @@
ItemDef(
name: "Arthropod Charge",
description: "testing123",
kind: Tool((
kind: Natural,
hands: Two,
stats: Direct((
equip_time_secs: 0.01,
power: 1.0,
effect_power: 1.0,
speed: 1.0,
crit_chance: 0.1,
range: 1.0,
energy_efficiency: 1.0,
buff_strength: 1.0,
)),
)),
quality: Low,
tags: [],
ability_spec: Some(Custom("Arthropod Charge")),
)

View File

@ -0,0 +1,21 @@
ItemDef(
name: "Arthropod Leap",
description: "testing123",
kind: Tool((
kind: Natural,
hands: Two,
stats: Direct((
equip_time_secs: 0.01,
power: 1.0,
effect_power: 1.0,
speed: 1.0,
crit_chance: 0.1,
range: 1.0,
energy_efficiency: 1.0,
buff_strength: 1.0,
)),
)),
quality: Low,
tags: [],
ability_spec: Some(Custom("Arthropod Leap")),
)

View File

@ -0,0 +1,21 @@
ItemDef(
name: "Arthropod Ranged",
description: "testing123",
kind: Tool((
kind: Natural,
hands: Two,
stats: Direct((
equip_time_secs: 0.01,
power: 1.0,
effect_power: 1.0,
speed: 1.0,
crit_chance: 0.1,
range: 1.0,
energy_efficiency: 1.0,
buff_strength: 1.0,
)),
)),
quality: Low,
tags: [],
ability_spec: Some(Custom("Arthropod Ranged")),
)

View File

@ -0,0 +1,3 @@
[
(1.0, ItemQuantity("common.items.crafting_ing.hide.carapace", 1, 3)),
]

View File

@ -0,0 +1,5 @@
[
(1.0, ItemQuantity("common.items.flowers.plant_fiber", 1, 3)),
(0.5, ItemQuantity("common.items.crafting_ing.twigs", 1, 3)),
(0.5, ItemQuantity("common.items.crafting_ing.animal_misc.viscous_ooze", 1, 1)),
]

View File

@ -0,0 +1,4 @@
[
(1.0, ItemQuantity("common.items.crafting_ing.sticky_thread", 1, 3)),
(0.5, ItemQuantity("common.items.crafting_ing.animal_misc.viscous_ooze", 1, 1)),
]

View File

@ -0,0 +1,4 @@
[
(1.0, ItemQuantity("common.items.crafting_ing.sticky_thread", 1, 3)),
(0.5, ItemQuantity("common.items.crafting_ing.animal_misc.venom_sac", 1, 1)),
]

View File

@ -0,0 +1,3 @@
[
(1.0, ItemQuantity("common.items.crafting_ing.sticky_thread", 1, 3)),
]

View File

@ -1207,5 +1207,59 @@
generic: "Deadwood"
),
)
)
),
arthropod: (
body: (
keyword: "arthropod",
names_0: [
"Shelob"
]
),
species: (
tarantula: (
keyword: "tarantula",
generic: "Tarantula"
),
black_widow: (
keyword: "black_widow",
generic: "Blackwidow"
),
antlion: (
keyword: "antlion",
generic: "Antlion"
),
horn_beetle: (
keyword: "horn_beetle",
generic: "Horn Beetle"
),
leaf_beetle: (
keyword: "leaf_beetle",
generic: "Leaf Beetle"
),
stag_beetle: (
keyword: "stag_beetle",
generic: "Stag Beetle"
),
weevil: (
keyword: "weevil",
generic: "Weevil"
),
cave_spider: (
keyword: "cave_spider",
generic: "Cave Spider"
),
crawler_molten: (
keyword: "crawler_molten",
generic: "Molten Crawler"
),
crawler_moss: (
keyword: "crawler_moss",
generic: "Moss Crawler"
),
crawler_sand: (
keyword: "crawler_sand",
generic: "Sand Crawler"
),
)
),
)

BIN
assets/voxygen/element/de_buffs/debuff_poisoned_0.png (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,222 @@
({
(Tarantula, Male): (
head: (
offset: (-4.5, 0.0, -2.5),
central: ("npc.tarantula.male.head"),
),
chest: (
offset: (-5.5, -7.0, -4.0),
central: ("npc.tarantula.male.chest"),
),
),
(Tarantula, Female): (
head: (
offset: (-4.5, 0.0, -2.5),
central: ("npc.tarantula.male.head"),
),
chest: (
offset: (-5.5, -7.0, -4.0),
central: ("npc.tarantula.male.chest"),
),
),
(Blackwidow, Male): (
head: (
offset: (-4.5, 0.0, -3.0),
central: ("npc.black_widow.male.head"),
),
chest: (
offset: (-4.5, -7.5, -6.0),
central: ("npc.black_widow.male.chest"),
),
),
(Blackwidow, Female): (
head: (
offset: (-4.5, 0.0, -3.0),
central: ("npc.black_widow.male.head"),
),
chest: (
offset: (-4.5, -7.5, -6.0),
central: ("npc.black_widow.male.chest"),
),
),
(Antlion, Male): (
head: (
offset: (-6.5, 0.0, -5.5),
central: ("npc.antlion.male.head"),
),
chest: (
offset: (-5.5, -7.5, -5.5),
central: ("npc.antlion.male.chest"),
),
),
(Antlion, Female): (
head: (
offset: (-6.5, 0.0, -5.5),
central: ("npc.antlion.male.head"),
),
chest: (
offset: (-5.5, -7.5, -5.5),
central: ("npc.antlion.male.chest"),
),
),
(Hornbeetle, Male): (
head: (
offset: (-5.5, 0.0, -7.5),
central: ("npc.horn_beetle.male.head"),
),
chest: (
offset: (-4.5, -6.0, -3.5),
central: ("npc.horn_beetle.male.chest"),
),
),
(Hornbeetle, Female): (
head: (
offset: (-5.5, 0.0, -7.5),
central: ("npc.horn_beetle.male.head"),
),
chest: (
offset: (-4.5, -6.0, -3.5),
central: ("npc.horn_beetle.male.chest"),
),
),
(Leafbeetle, Male): (
head: (
offset: (-5.5, 0.0, -3.0),
central: ("npc.leaf_beetle.male.head"),
),
chest: (
offset: (-4.5, -5.0, -3.0),
central: ("npc.leaf_beetle.male.chest"),
),
),
(Leafbeetle, Female): (
head: (
offset: (-5.5, 0.0, -3.0),
central: ("npc.leaf_beetle.male.head"),
),
chest: (
offset: (-4.5, -5.0, -3.0),
central: ("npc.leaf_beetle.male.chest"),
),
),
(Stagbeetle, Male): (
head: (
offset: (-8.5, 0.0, -4.5),
central: ("npc.stag_beetle.male.head"),
),
chest: (
offset: (-4.5, -6.0, -3.5),
central: ("npc.stag_beetle.male.chest"),
),
),
(Stagbeetle, Female): (
head: (
offset: (-8.5, 0.0, -4.5),
central: ("npc.stag_beetle.male.head"),
),
chest: (
offset: (-4.5, -6.0, -3.5),
central: ("npc.stag_beetle.male.chest"),
),
),
(Weevil, Male): (
head: (
offset: (-4.5, 0.0, -3.0),
central: ("npc.weevil.male.head"),
),
chest: (
offset: (-4.5, -5.0, -3.0),
central: ("npc.weevil.male.chest"),
),
),
(Weevil, Female): (
head: (
offset: (-4.5, 0.0, -3.0),
central: ("npc.weevil.male.head"),
),
chest: (
offset: (-4.5, -5.0, -3.0),
central: ("npc.weevil.male.chest"),
),
),
(Cavespider, Male): (
head: (
offset: (-4.5, 0.0, -2.5),
central: ("npc.cave_spider.male.head"),
),
chest: (
offset: (-5.5, -7.0, -4.0),
central: ("npc.cave_spider.male.chest"),
),
),
(Cavespider, Female): (
head: (
offset: (-4.5, 0.0, -2.5),
central: ("npc.cave_spider.male.head"),
),
chest: (
offset: (-5.5, -7.0, -4.0),
central: ("npc.cave_spider.male.chest"),
),
),
(Moltencrawler, Male): (
head: (
offset: (-7.5, 0.0, -4.0),
central: ("npc.crawler_molten.male.head"),
),
chest: (
offset: (-4.5, -5.0, -5.0),
central: ("npc.crawler_molten.male.chest"),
),
),
(Moltencrawler, Female): (
head: (
offset: (-7.5, 0.0, -4.0),
central: ("npc.crawler_molten.male.head"),
),
chest: (
offset: (-4.5, -5.0, -5.0),
central: ("npc.crawler_molten.male.chest"),
),
),
(Mosscrawler, Male): (
head: (
offset: (-5.5, 0.0, -4.0),
central: ("npc.crawler_moss.male.head"),
),
chest: (
offset: (-3.5, -5.0, -5.5),
central: ("npc.crawler_moss.male.chest"),
),
),
(Mosscrawler, Female): (
head: (
offset: (-5.5, 0.0, -4.0),
central: ("npc.crawler_moss.male.head"),
),
chest: (
offset: (-3.5, -5.0, -5.5),
central: ("npc.crawler_moss.male.chest"),
),
),
(Sandcrawler, Male): (
head: (
offset: (-5.5, 0.0, -4.0),
central: ("npc.crawler_sand.male.head"),
),
chest: (
offset: (-3.5, -5.0, -5.0),
central: ("npc.crawler_sand.male.chest"),
),
),
(Sandcrawler, Female): (
head: (
offset: (-5.5, 0.0, -4.0),
central: ("npc.crawler_sand.male.head"),
),
chest: (
offset: (-3.5, -5.0, -5.0),
central: ("npc.crawler_sand.male.chest"),
),
),
})

File diff suppressed because it is too large Load Diff

BIN
assets/voxygen/voxel/npc/antlion/male/chest.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/antlion/male/head.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/antlion/male/leg_bcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/antlion/male/leg_fcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/antlion/male/leg_fr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/antlion/male/mandible_r.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/black_widow/male/chest.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/black_widow/male/head.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/black_widow/male/leg_bcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/black_widow/male/leg_br.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/black_widow/male/leg_fcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/black_widow/male/leg_fr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/black_widow/male/mandible_r.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/cave_spider/male/chest.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/cave_spider/male/head.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/cave_spider/male/leg_bcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/cave_spider/male/leg_br.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/cave_spider/male/leg_fcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/cave_spider/male/leg_fr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/cave_spider/male/mandible_r.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/crawler_molten/male/chest.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/crawler_molten/male/head.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/crawler_molten/male/leg_bcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/crawler_molten/male/leg_fcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/crawler_molten/male/leg_fr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/crawler_moss/male/chest.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/crawler_moss/male/head.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/crawler_moss/male/leg_bcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/crawler_moss/male/leg_fcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/crawler_moss/male/leg_fr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/crawler_sand/male/chest.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/crawler_sand/male/head.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/crawler_sand/male/leg_bcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/crawler_sand/male/leg_fcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/crawler_sand/male/leg_fr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/horn_beetle/male/chest.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/horn_beetle/male/head.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/horn_beetle/male/leg_bcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/horn_beetle/male/leg_fcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/horn_beetle/male/leg_fr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/horn_beetle/male/wing_br.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/horn_beetle/male/wing_fr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/leaf_beetle/male/chest.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/leaf_beetle/male/head.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/leaf_beetle/male/leg_bcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/leaf_beetle/male/leg_fcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/leaf_beetle/male/leg_fr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/leaf_beetle/male/wing_br.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/leaf_beetle/male/wing_fr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/stag_beetle/male/chest.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/stag_beetle/male/head.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/stag_beetle/male/leg_bcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/stag_beetle/male/leg_fcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/stag_beetle/male/leg_fr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/stag_beetle/male/mandible_r.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/stag_beetle/male/wing_br.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/stag_beetle/male/wing_fr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/tarantula/male/chest.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/tarantula/male/head.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/tarantula/male/leg_bcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/tarantula/male/leg_br.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/tarantula/male/leg_fcr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/tarantula/male/leg_fr.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/npc/tarantula/male/mandible_r.vox (Stored with Git LFS) Normal file

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More