mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Merge branch 'snowram/new-npcs' into 'master'
Snowram/new npcs See merge request veloren/veloren!1896
This commit is contained in:
commit
a558d42da7
19
assets/common/abilities/unique/theropodbasic/dash.ron
Normal file
19
assets/common/abilities/unique/theropodbasic/dash.ron
Normal file
@ -0,0 +1,19 @@
|
||||
DashMelee(
|
||||
energy_cost: 0,
|
||||
base_damage: 150,
|
||||
scaled_damage: 40,
|
||||
base_poise_damage: 0,
|
||||
scaled_poise_damage: 0,
|
||||
base_knockback: 8.0,
|
||||
scaled_knockback: 17.0,
|
||||
range: 4.0,
|
||||
angle: 45.0,
|
||||
energy_drain: 0,
|
||||
forward_speed: 2.0,
|
||||
buildup_duration: 0.5,
|
||||
charge_duration: 1.2,
|
||||
swing_duration: 0.1,
|
||||
recover_duration: 1.1,
|
||||
infinite_charge: true,
|
||||
is_interruptible: false,
|
||||
)
|
@ -184,6 +184,11 @@
|
||||
secondary: "common.abilities.unique.theropodbird.triplestrike",
|
||||
abilities: [],
|
||||
),
|
||||
Unique(TheropodCharge): (
|
||||
primary: "common.abilities.unique.theropodbird.triplestrike",
|
||||
secondary: "common.abilities.unique.theropodbasic.dash",
|
||||
abilities: [],
|
||||
),
|
||||
Unique(ObjectTurret): (
|
||||
primary: "common.abilities.unique.turret.arrows",
|
||||
secondary: "common.abilities.unique.turret.arrows",
|
||||
|
18
assets/common/items/npc_weapons/axe/oni_blue_axe.ron
Normal file
18
assets/common/items/npc_weapons/axe/oni_blue_axe.ron
Normal file
@ -0,0 +1,18 @@
|
||||
ItemDef(
|
||||
name: "Blue Oni Axe",
|
||||
description: "Placeholder",
|
||||
kind: Tool((
|
||||
kind: AxeSimple,
|
||||
hands: Two,
|
||||
stats: Direct((
|
||||
equip_time_secs: 0.5,
|
||||
power: 1.6,
|
||||
poise_strength: 1.0,
|
||||
speed: 1.1,
|
||||
crit_chance: 0.18,
|
||||
crit_mult: 2.8,
|
||||
)),
|
||||
)),
|
||||
quality: Low,
|
||||
tags: [],
|
||||
)
|
18
assets/common/items/npc_weapons/hammer/oni_red_hammer.ron
Normal file
18
assets/common/items/npc_weapons/hammer/oni_red_hammer.ron
Normal file
@ -0,0 +1,18 @@
|
||||
ItemDef(
|
||||
name: "Red Oni Hammer",
|
||||
description: "Placeholder",
|
||||
kind: Tool((
|
||||
kind: HammerSimple,
|
||||
hands: Two,
|
||||
stats: Direct((
|
||||
equip_time_secs: 0.5,
|
||||
power: 1.0,
|
||||
poise_strength: 1.0,
|
||||
speed: 1.0,
|
||||
crit_chance: 0.1,
|
||||
crit_mult: 2.0,
|
||||
)),
|
||||
)),
|
||||
quality: Low,
|
||||
tags: [],
|
||||
)
|
18
assets/common/items/npc_weapons/unique/theropodcharge.ron
Normal file
18
assets/common/items/npc_weapons/unique/theropodcharge.ron
Normal file
@ -0,0 +1,18 @@
|
||||
ItemDef(
|
||||
name: "Theropod Charge",
|
||||
description: "testing123",
|
||||
kind: Tool((
|
||||
kind: Unique(TheropodCharge),
|
||||
hands: Two,
|
||||
stats: Direct((
|
||||
equip_time_secs: 0.01,
|
||||
power: 1.0,
|
||||
poise_strength: 1.0,
|
||||
speed: 1.0,
|
||||
crit_chance: 0.1,
|
||||
crit_mult: 2.0,
|
||||
)),
|
||||
)),
|
||||
quality: Low,
|
||||
tags: [],
|
||||
)
|
@ -534,6 +534,18 @@
|
||||
bear: (
|
||||
keyword: "bear",
|
||||
generic: "Bear"
|
||||
),
|
||||
dreadhorn: (
|
||||
keyword: "dreadhorn",
|
||||
generic: "Dreadhorn"
|
||||
),
|
||||
moose: (
|
||||
keyword: "moose",
|
||||
generic: "Moose"
|
||||
),
|
||||
snowleopard: (
|
||||
keyword: "snowleopard",
|
||||
generic: "Snow Leopard"
|
||||
)
|
||||
)
|
||||
),
|
||||
@ -749,6 +761,10 @@
|
||||
dog: (
|
||||
keyword: "dog",
|
||||
generic: "Dog"
|
||||
),
|
||||
goat: (
|
||||
keyword: "goat",
|
||||
generic: "Goat"
|
||||
)
|
||||
)
|
||||
),
|
||||
@ -857,7 +873,15 @@
|
||||
harvester: (
|
||||
keyword: "harvester",
|
||||
generic: "Harvester"
|
||||
)
|
||||
),
|
||||
oni_blue: (
|
||||
keyword: "oni_blue",
|
||||
generic: "Blue Oni"
|
||||
),
|
||||
oni_red: (
|
||||
keyword: "oni_red",
|
||||
generic: "Red Oni"
|
||||
),
|
||||
)
|
||||
),
|
||||
golem: (
|
||||
@ -913,6 +937,14 @@
|
||||
sunlizard: (
|
||||
keyword: "sunlizard",
|
||||
generic: "Sun Lizard"
|
||||
),
|
||||
yale: (
|
||||
keyword: "yale",
|
||||
generic: "Yale"
|
||||
),
|
||||
ntouka: (
|
||||
keyword: "ntouka",
|
||||
generic: "Ntouka"
|
||||
)
|
||||
)
|
||||
),
|
||||
@ -1016,6 +1048,10 @@
|
||||
marlin: (
|
||||
keyword: "marlin",
|
||||
generic: "Marlin"
|
||||
),
|
||||
icepike: (
|
||||
keyword: "icepike",
|
||||
generic: "Icepike"
|
||||
)
|
||||
)
|
||||
),
|
||||
|
@ -728,4 +728,108 @@
|
||||
central: ("armor.empty"),
|
||||
)
|
||||
),
|
||||
(Blueoni, Male): (
|
||||
head: (
|
||||
offset: (-7.5, -1.0, -9.0),
|
||||
central: ("npc.oni_blue.male.head"),
|
||||
),
|
||||
torso_upper: (
|
||||
offset: (-8.5, -12.0, -10.0),
|
||||
central: ("npc.oni_blue.male.torso_upper"),
|
||||
),
|
||||
torso_lower: (
|
||||
offset: (-6.5, -5.5, -13.0),
|
||||
central: ("npc.oni_blue.male.torso_lower"),
|
||||
),
|
||||
jaw: (
|
||||
offset: (-5.5, 0.0, -8.0),
|
||||
central: ("npc.oni_blue.male.jaw"),
|
||||
),
|
||||
tail: (
|
||||
offset: (0.0, 0.0, 0.0),
|
||||
central: ("armor.empty"),
|
||||
),
|
||||
second: (
|
||||
offset: (0.0, 0.0, 0.0),
|
||||
central: ("armor.empty"),
|
||||
)
|
||||
),
|
||||
(Blueoni, Female): (
|
||||
head: (
|
||||
offset: (-7.5, -1.0, -9.0),
|
||||
central: ("npc.oni_blue.male.head"),
|
||||
),
|
||||
torso_upper: (
|
||||
offset: (-8.5, -12.0, -10.0),
|
||||
central: ("npc.oni_blue.male.torso_upper"),
|
||||
),
|
||||
torso_lower: (
|
||||
offset: (-6.5, -5.5, -13.0),
|
||||
central: ("npc.oni_blue.male.torso_lower"),
|
||||
),
|
||||
jaw: (
|
||||
offset: (-5.5, 0.0, -8.0),
|
||||
central: ("npc.oni_blue.male.jaw"),
|
||||
),
|
||||
tail: (
|
||||
offset: (0.0, 0.0, 0.0),
|
||||
central: ("armor.empty"),
|
||||
),
|
||||
second: (
|
||||
offset: (0.0, 0.0, 0.0),
|
||||
central: ("armor.empty"),
|
||||
)
|
||||
),
|
||||
(Redoni, Male): (
|
||||
head: (
|
||||
offset: (-7.5, -1.0, -9.0),
|
||||
central: ("npc.oni_red.male.head"),
|
||||
),
|
||||
torso_upper: (
|
||||
offset: (-8.5, -12.0, -10.0),
|
||||
central: ("npc.oni_red.male.torso_upper"),
|
||||
),
|
||||
torso_lower: (
|
||||
offset: (-6.5, -5.5, -13.0),
|
||||
central: ("npc.oni_red.male.torso_lower"),
|
||||
),
|
||||
jaw: (
|
||||
offset: (-5.5, 0.0, -8.0),
|
||||
central: ("npc.oni_red.male.jaw"),
|
||||
),
|
||||
tail: (
|
||||
offset: (0.0, 0.0, 0.0),
|
||||
central: ("armor.empty"),
|
||||
),
|
||||
second: (
|
||||
offset: (0.0, 0.0, 0.0),
|
||||
central: ("armor.empty"),
|
||||
)
|
||||
),
|
||||
(Redoni, Female): (
|
||||
head: (
|
||||
offset: (-7.5, -1.0, -9.0),
|
||||
central: ("npc.oni_red.male.head"),
|
||||
),
|
||||
torso_upper: (
|
||||
offset: (-8.5, -12.0, -10.0),
|
||||
central: ("npc.oni_red.male.torso_upper"),
|
||||
),
|
||||
torso_lower: (
|
||||
offset: (-6.5, -5.5, -13.0),
|
||||
central: ("npc.oni_red.male.torso_lower"),
|
||||
),
|
||||
jaw: (
|
||||
offset: (-5.5, 0.0, -8.0),
|
||||
central: ("npc.oni_red.male.jaw"),
|
||||
),
|
||||
tail: (
|
||||
offset: (0.0, 0.0, 0.0),
|
||||
central: ("armor.empty"),
|
||||
),
|
||||
second: (
|
||||
offset: (0.0, 0.0, 0.0),
|
||||
central: ("armor.empty"),
|
||||
)
|
||||
),
|
||||
})
|
@ -951,4 +951,140 @@
|
||||
lateral: ("npc.harvester.male.foot_r"),
|
||||
)
|
||||
),
|
||||
(Blueoni, Male): (
|
||||
shoulder_l: (
|
||||
offset: (-4.0, -4.5, -5.0),
|
||||
lateral: ("npc.oni_blue.male.shoulder_l"),
|
||||
),
|
||||
shoulder_r: (
|
||||
offset: (-4.0, -4.5, -5.0),
|
||||
lateral: ("npc.oni_blue.male.shoulder_r"),
|
||||
),
|
||||
hand_l: (
|
||||
offset: (-4.5, -4.0, -12.0),
|
||||
lateral: ("npc.oni_blue.male.hand_l"),
|
||||
),
|
||||
hand_r: (
|
||||
offset: (-4.5, -4.0, -12.0),
|
||||
lateral: ("npc.oni_blue.male.hand_r"),
|
||||
),
|
||||
leg_l: (
|
||||
offset: (-2.5, -4.0, -3.5),
|
||||
lateral: ("npc.oni_blue.male.leg_l"),
|
||||
),
|
||||
leg_r: (
|
||||
offset: (-2.5, -4.0, -3.5),
|
||||
lateral: ("npc.oni_blue.male.leg_r"),
|
||||
),
|
||||
foot_l: (
|
||||
offset: (-3.0, -5.0, -4.5),
|
||||
lateral: ("npc.oni_blue.male.foot_l"),
|
||||
),
|
||||
foot_r: (
|
||||
offset: (-3.0, -5.0, -4.5),
|
||||
lateral: ("npc.oni_blue.male.foot_r"),
|
||||
)
|
||||
),
|
||||
(Blueoni, Female): (
|
||||
shoulder_l: (
|
||||
offset: (-4.0, -4.5, -5.0),
|
||||
lateral: ("npc.oni_blue.male.shoulder_l"),
|
||||
),
|
||||
shoulder_r: (
|
||||
offset: (-4.0, -4.5, -5.0),
|
||||
lateral: ("npc.oni_blue.male.shoulder_r"),
|
||||
),
|
||||
hand_l: (
|
||||
offset: (-4.5, -4.0, -12.0),
|
||||
lateral: ("npc.oni_blue.male.hand_l"),
|
||||
),
|
||||
hand_r: (
|
||||
offset: (-4.5, -4.0, -12.0),
|
||||
lateral: ("npc.oni_blue.male.hand_r"),
|
||||
),
|
||||
leg_l: (
|
||||
offset: (-2.5, -4.0, -3.5),
|
||||
lateral: ("npc.oni_blue.male.leg_l"),
|
||||
),
|
||||
leg_r: (
|
||||
offset: (-2.5, -4.0, -3.5),
|
||||
lateral: ("npc.oni_blue.male.leg_r"),
|
||||
),
|
||||
foot_l: (
|
||||
offset: (-3.0, -5.0, -4.5),
|
||||
lateral: ("npc.oni_blue.male.foot_l"),
|
||||
),
|
||||
foot_r: (
|
||||
offset: (-3.0, -5.0, -4.5),
|
||||
lateral: ("npc.oni_blue.male.foot_r"),
|
||||
)
|
||||
),
|
||||
(Redoni, Male): (
|
||||
shoulder_l: (
|
||||
offset: (-4.0, -4.5, -5.0),
|
||||
lateral: ("npc.oni_red.male.shoulder_l"),
|
||||
),
|
||||
shoulder_r: (
|
||||
offset: (-4.0, -4.5, -5.0),
|
||||
lateral: ("npc.oni_red.male.shoulder_r"),
|
||||
),
|
||||
hand_l: (
|
||||
offset: (-4.5, -4.0, -12.0),
|
||||
lateral: ("npc.oni_red.male.hand_l"),
|
||||
),
|
||||
hand_r: (
|
||||
offset: (-4.5, -4.0, -12.0),
|
||||
lateral: ("npc.oni_red.male.hand_r"),
|
||||
),
|
||||
leg_l: (
|
||||
offset: (-2.5, -4.0, -3.5),
|
||||
lateral: ("npc.oni_red.male.leg_l"),
|
||||
),
|
||||
leg_r: (
|
||||
offset: (-2.5, -4.0, -3.5),
|
||||
lateral: ("npc.oni_red.male.leg_r"),
|
||||
),
|
||||
foot_l: (
|
||||
offset: (-3.0, -5.0, -4.5),
|
||||
lateral: ("npc.oni_red.male.foot_l"),
|
||||
),
|
||||
foot_r: (
|
||||
offset: (-3.0, -5.0, -4.5),
|
||||
lateral: ("npc.oni_red.male.foot_r"),
|
||||
)
|
||||
),
|
||||
(Redoni, Female): (
|
||||
shoulder_l: (
|
||||
offset: (-4.0, -4.5, -5.0),
|
||||
lateral: ("npc.oni_red.male.shoulder_l"),
|
||||
),
|
||||
shoulder_r: (
|
||||
offset: (-4.0, -4.5, -5.0),
|
||||
lateral: ("npc.oni_red.male.shoulder_r"),
|
||||
),
|
||||
hand_l: (
|
||||
offset: (-4.5, -4.0, -12.0),
|
||||
lateral: ("npc.oni_red.male.hand_l"),
|
||||
),
|
||||
hand_r: (
|
||||
offset: (-4.5, -4.0, -12.0),
|
||||
lateral: ("npc.oni_red.male.hand_r"),
|
||||
),
|
||||
leg_l: (
|
||||
offset: (-2.5, -4.0, -3.5),
|
||||
lateral: ("npc.oni_red.male.leg_l"),
|
||||
),
|
||||
leg_r: (
|
||||
offset: (-2.5, -4.0, -3.5),
|
||||
lateral: ("npc.oni_red.male.leg_r"),
|
||||
),
|
||||
foot_l: (
|
||||
offset: (-3.0, -5.0, -4.5),
|
||||
lateral: ("npc.oni_red.male.foot_l"),
|
||||
),
|
||||
foot_r: (
|
||||
offset: (-3.0, -5.0, -4.5),
|
||||
lateral: ("npc.oni_red.male.foot_r"),
|
||||
)
|
||||
),
|
||||
})
|
@ -989,6 +989,14 @@
|
||||
vox_spec: ("weapon.hammer.2hhammer_harvester", (-1.5, -7.5, -6.0)),
|
||||
color: None
|
||||
),
|
||||
"common.items.npc_weapons.axe.oni_blue_axe": (
|
||||
vox_spec: ("weapon.axe.2haxe_oni_blue", (-1.5, -2.0, -12.0)),
|
||||
color: None
|
||||
),
|
||||
"common.items.npc_weapons.hammer.oni_red_hammer": (
|
||||
vox_spec: ("weapon.hammer.2hhammer_oni_red", (-3.0, -4.5, -12.0)),
|
||||
color: None
|
||||
),
|
||||
//BIPEDSMALL
|
||||
"common.items.npc_weapons.biped_small.adlet.adlet_bow": (
|
||||
vox_spec: ("weapon.biped_small.bow.adlet", (-1.5, -3.0, -5.0)),
|
||||
|
@ -29,29 +29,29 @@
|
||||
),
|
||||
(Chicken, Male): (
|
||||
head: (
|
||||
offset: (-1.5, -2.0, -3.5),
|
||||
offset: (-1.5, -3.0, -3.0),
|
||||
central: ("npc.chicken.male.head"),
|
||||
),
|
||||
torso: (
|
||||
offset: (-2.5, -3.0, -2.0),
|
||||
offset: (-2.5, -4.5, -3.5),
|
||||
central: ("npc.chicken.male.torso"),
|
||||
),
|
||||
tail: (
|
||||
offset: (-1.5, -2.5, -3.5),
|
||||
offset: (-1.5, -2.0, -3.0),
|
||||
central: ("npc.chicken.male.tail"),
|
||||
)
|
||||
),
|
||||
(Chicken, Female): (
|
||||
head: (
|
||||
offset: (-1.5, -2.0, -2.5),
|
||||
offset: (-1.5, -3.0, -4.0),
|
||||
central: ("npc.chicken.female.head"),
|
||||
),
|
||||
torso: (
|
||||
offset: (-2.5, -3.0, -2.0),
|
||||
offset: (-2.5, -5.0, -3.5),
|
||||
central: ("npc.chicken.female.torso"),
|
||||
),
|
||||
tail: (
|
||||
offset: (-1.5, -0.5, -2.5),
|
||||
offset: (-1.5, -3.5, -3.5),
|
||||
central: ("npc.chicken.female.tail"),
|
||||
)
|
||||
),
|
||||
|
@ -37,37 +37,37 @@
|
||||
),
|
||||
(Chicken, Male): (
|
||||
wing_l: (
|
||||
offset: (-0.5, -2.5, -3.0),
|
||||
offset: (-0.5, -2.5, -4.0),
|
||||
lateral: ("npc.chicken.male.wing"),
|
||||
),
|
||||
wing_r: (
|
||||
offset: (-0.5, -2.5, -3.0),
|
||||
offset: (-0.5, -2.5, -4.0),
|
||||
lateral: ("npc.chicken.male.wing"),
|
||||
),
|
||||
foot_l: (
|
||||
offset: (-1.0, 0.0, -4.0),
|
||||
offset: (-1.5, -2.5, -6.0),
|
||||
lateral: ("npc.chicken.male.leg_r"),
|
||||
),
|
||||
foot_r: (
|
||||
offset: (-1.0, 0.0, -4.0),
|
||||
offset: (-1.5, -2.5, -6.0),
|
||||
lateral: ("npc.chicken.male.leg_r"),
|
||||
)
|
||||
),
|
||||
(Chicken, Female): (
|
||||
wing_l: (
|
||||
offset: (-0.5, -2.5, -3.0),
|
||||
offset: (-0.5, -2.5, -4.0),
|
||||
lateral: ("npc.chicken.female.wing"),
|
||||
),
|
||||
wing_r: (
|
||||
offset: (-0.5, -2.5, -3.0),
|
||||
offset: (-0.5, -2.5, -4.0),
|
||||
lateral: ("npc.chicken.female.wing"),
|
||||
),
|
||||
foot_l: (
|
||||
offset: (-1.0, 0.0, -4.0),
|
||||
offset: (-1.5, -2.5, -6.0),
|
||||
lateral: ("npc.chicken.female.leg_r"),
|
||||
),
|
||||
foot_r: (
|
||||
offset: (-1.0, 0.0, -4.0),
|
||||
offset: (-1.5, -2.5, -6.0),
|
||||
lateral: ("npc.chicken.female.leg_r"),
|
||||
)
|
||||
),
|
||||
|
@ -43,4 +43,48 @@
|
||||
central: ("npc.marlin.male.tail"),
|
||||
),
|
||||
),
|
||||
(Icepike, Male): (
|
||||
head: (
|
||||
offset: (-2.5, 0.0, -6.0),
|
||||
central: ("npc.icepike.male.head"),
|
||||
),
|
||||
jaw: (
|
||||
offset: (-1.5, 0.0, -4.0),
|
||||
central: ("npc.icepike.male.jaw"),
|
||||
),
|
||||
chest_front: (
|
||||
offset: (-2.5, -4.0, -7.0),
|
||||
central: ("npc.icepike.male.chest_front"),
|
||||
),
|
||||
chest_back: (
|
||||
offset: (-1.5, -1.5, -3.0),
|
||||
central: ("npc.icepike.male.chest_back"),
|
||||
),
|
||||
tail: (
|
||||
offset: (-0.5, -10.0, -4.5),
|
||||
central: ("npc.icepike.male.tail"),
|
||||
),
|
||||
),
|
||||
(Icepike, Female): (
|
||||
head: (
|
||||
offset: (-2.5, 0.0, -6.0),
|
||||
central: ("npc.icepike.male.head"),
|
||||
),
|
||||
jaw: (
|
||||
offset: (-1.5, 0.0, -4.0),
|
||||
central: ("npc.icepike.male.jaw"),
|
||||
),
|
||||
chest_front: (
|
||||
offset: (-2.5, -4.0, -7.0),
|
||||
central: ("npc.icepike.male.chest_front"),
|
||||
),
|
||||
chest_back: (
|
||||
offset: (-1.5, -1.5, -3.0),
|
||||
central: ("npc.icepike.male.chest_back"),
|
||||
),
|
||||
tail: (
|
||||
offset: (-0.5, -10.0, -4.5),
|
||||
central: ("npc.icepike.male.tail"),
|
||||
),
|
||||
),
|
||||
})
|
||||
|
@ -19,4 +19,24 @@
|
||||
lateral: ("npc.marlin.male.fin_r"),
|
||||
),
|
||||
),
|
||||
(Icepike, Male): (
|
||||
fin_l: (
|
||||
offset: (-1.0, -7.0, -3.0),
|
||||
lateral: ("npc.icepike.male.fin_r"),
|
||||
),
|
||||
fin_r: (
|
||||
offset: (-1.0, -7.0, -3.0),
|
||||
lateral: ("npc.icepike.male.fin_r"),
|
||||
),
|
||||
),
|
||||
(Icepike, Female): (
|
||||
fin_l: (
|
||||
offset: (-1.0, -7.0, -3.0),
|
||||
lateral: ("npc.icepike.male.fin_r"),
|
||||
),
|
||||
fin_r: (
|
||||
offset: (-1.0, -7.0, -3.0),
|
||||
lateral: ("npc.icepike.male.fin_r"),
|
||||
),
|
||||
),
|
||||
})
|
||||
|
BIN
assets/voxygen/voxel/npc/chicken/female/head.vox
(Stored with Git LFS)
BIN
assets/voxygen/voxel/npc/chicken/female/head.vox
(Stored with Git LFS)
Binary file not shown.
BIN
assets/voxygen/voxel/npc/chicken/female/leg_r.vox
(Stored with Git LFS)
BIN
assets/voxygen/voxel/npc/chicken/female/leg_r.vox
(Stored with Git LFS)
Binary file not shown.
BIN
assets/voxygen/voxel/npc/chicken/female/tail.vox
(Stored with Git LFS)
BIN
assets/voxygen/voxel/npc/chicken/female/tail.vox
(Stored with Git LFS)
Binary file not shown.
BIN
assets/voxygen/voxel/npc/chicken/female/torso.vox
(Stored with Git LFS)
BIN
assets/voxygen/voxel/npc/chicken/female/torso.vox
(Stored with Git LFS)
Binary file not shown.
BIN
assets/voxygen/voxel/npc/chicken/female/wing.vox
(Stored with Git LFS)
BIN
assets/voxygen/voxel/npc/chicken/female/wing.vox
(Stored with Git LFS)
Binary file not shown.
BIN
assets/voxygen/voxel/npc/chicken/male/head.vox
(Stored with Git LFS)
BIN
assets/voxygen/voxel/npc/chicken/male/head.vox
(Stored with Git LFS)
Binary file not shown.
BIN
assets/voxygen/voxel/npc/chicken/male/leg_r.vox
(Stored with Git LFS)
BIN
assets/voxygen/voxel/npc/chicken/male/leg_r.vox
(Stored with Git LFS)
Binary file not shown.
BIN
assets/voxygen/voxel/npc/chicken/male/tail.vox
(Stored with Git LFS)
BIN
assets/voxygen/voxel/npc/chicken/male/tail.vox
(Stored with Git LFS)
Binary file not shown.
BIN
assets/voxygen/voxel/npc/chicken/male/torso.vox
(Stored with Git LFS)
BIN
assets/voxygen/voxel/npc/chicken/male/torso.vox
(Stored with Git LFS)
Binary file not shown.
BIN
assets/voxygen/voxel/npc/chicken/male/wing.vox
(Stored with Git LFS)
BIN
assets/voxygen/voxel/npc/chicken/male/wing.vox
(Stored with Git LFS)
Binary file not shown.
BIN
assets/voxygen/voxel/npc/dreadhorn/male/foot_br.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/dreadhorn/male/foot_br.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/dreadhorn/male/foot_fr.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/dreadhorn/male/foot_fr.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/dreadhorn/male/head.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/dreadhorn/male/head.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/dreadhorn/male/jaw.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/dreadhorn/male/jaw.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/dreadhorn/male/leg_br.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/dreadhorn/male/leg_br.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/dreadhorn/male/leg_fr.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/dreadhorn/male/leg_fr.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/dreadhorn/male/neck.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/dreadhorn/male/neck.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/dreadhorn/male/tail.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/dreadhorn/male/tail.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/dreadhorn/male/torso_back.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/dreadhorn/male/torso_back.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/dreadhorn/male/torso_front.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/dreadhorn/male/torso_front.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/goat/male/chest.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/goat/male/chest.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/goat/male/foot_br.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/goat/male/foot_br.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/goat/male/foot_fr.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/goat/male/foot_fr.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/goat/male/head.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/goat/male/head.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/goat/male/tail.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/goat/male/tail.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/icepike/male/chest_back.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/icepike/male/chest_back.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/icepike/male/chest_front.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/icepike/male/chest_front.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/icepike/male/fin_r.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/icepike/male/fin_r.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/icepike/male/head.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/icepike/male/head.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/icepike/male/jaw.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/icepike/male/jaw.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/icepike/male/tail.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/icepike/male/tail.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/female/ears.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/female/ears.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/female/foot_br.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/female/foot_br.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/female/foot_fr.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/female/foot_fr.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/female/head.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/female/head.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/female/jaw.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/female/jaw.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/female/leg_br.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/female/leg_br.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/female/leg_fr.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/female/leg_fr.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/female/neck.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/female/neck.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/female/tail.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/female/tail.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/female/torso_back.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/female/torso_back.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/female/torso_front.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/female/torso_front.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/male/ears.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/male/ears.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/male/foot_br.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/male/foot_br.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/male/foot_fr.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/male/foot_fr.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/male/head.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/male/head.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/male/jaw.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/male/jaw.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/male/leg_br.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/male/leg_br.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/male/leg_fr.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/male/leg_fr.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/male/neck.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/male/neck.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/male/tail.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/male/tail.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/male/torso_back.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/male/torso_back.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/moose/male/torso_front.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/moose/male/torso_front.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/ntouka/male/chest_back.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/ntouka/male/chest_back.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/ntouka/male/chest_front.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/ntouka/male/chest_front.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/ntouka/male/foot_r.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/ntouka/male/foot_r.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/ntouka/male/hand_r.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/ntouka/male/hand_r.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/ntouka/male/head.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/ntouka/male/head.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/ntouka/male/jaw.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/ntouka/male/jaw.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/ntouka/male/leg_r.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/ntouka/male/leg_r.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/ntouka/male/neck.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/ntouka/male/neck.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/ntouka/male/tail_back.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/ntouka/male/tail_back.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/ntouka/male/tail_front.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/ntouka/male/tail_front.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_blue/male/foot_l.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_blue/male/foot_l.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_blue/male/foot_r.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_blue/male/foot_r.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_blue/male/hand_l.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_blue/male/hand_l.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_blue/male/hand_r.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_blue/male/hand_r.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_blue/male/head.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_blue/male/head.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_blue/male/jaw.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_blue/male/jaw.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_blue/male/leg_l.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_blue/male/leg_l.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_blue/male/leg_r.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_blue/male/leg_r.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_blue/male/main_hand.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_blue/male/main_hand.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_blue/male/shoulder_l.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_blue/male/shoulder_l.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_blue/male/shoulder_r.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_blue/male/shoulder_r.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_blue/male/torso_lower.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_blue/male/torso_lower.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_blue/male/torso_upper.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_blue/male/torso_upper.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_red/male/foot_l.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_red/male/foot_l.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_red/male/foot_r.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_red/male/foot_r.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_red/male/hand_l.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_red/male/hand_l.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_red/male/hand_r.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_red/male/hand_r.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_red/male/head.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_red/male/head.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_red/male/jaw.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_red/male/jaw.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_red/male/leg_l.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_red/male/leg_l.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_red/male/leg_r.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_red/male/leg_r.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_red/male/main_hand.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_red/male/main_hand.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_red/male/shoulder_l.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_red/male/shoulder_l.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
assets/voxygen/voxel/npc/oni_red/male/shoulder_r.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/npc/oni_red/male/shoulder_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
Loading…
Reference in New Issue
Block a user