mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-25 20:11:06 +01:00
Merge pull request 'villager_anims_and_sounds' (#2279) from villager_anims_and_sounds into master
Reviewed-on: https://git.minetest.land/MineClone2/MineClone2/pulls/2279
This commit is contained in:
commit
5c561b951c
10 changed files with 7 additions and 4 deletions
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_villager_accept.1.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_villager_accept.1.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_villager_accept.2.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_villager_accept.2.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_villager_hurt.1.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_villager_hurt.1.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_villager_hurt.2.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_villager_hurt.2.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_villager_trade.1.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_villager_trade.1.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_villager_trade.2.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_villager_trade.2.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_villager_trade.3.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_villager_trade.3.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_villager_trade.4.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_villager_trade.4.ogg
Normal file
Binary file not shown.
|
@ -1227,6 +1227,7 @@ mcl_mobs:register_mob("mobs_mc:villager", {
|
||||||
-- TODO: sounds
|
-- TODO: sounds
|
||||||
sounds = {
|
sounds = {
|
||||||
random = "mobs_mc_villager",
|
random = "mobs_mc_villager",
|
||||||
|
damage = "mobs_mc_villager_hurt",
|
||||||
distance = 10,
|
distance = 10,
|
||||||
},
|
},
|
||||||
animation = {
|
animation = {
|
||||||
|
@ -1239,10 +1240,12 @@ mcl_mobs:register_mob("mobs_mc:villager", {
|
||||||
run_speed = 25,
|
run_speed = 25,
|
||||||
run_start = 0,
|
run_start = 0,
|
||||||
run_end = 40,
|
run_end = 40,
|
||||||
die_speed = 15,
|
head_shake_start = 210,
|
||||||
die_start = 210,
|
head_shake_end = 220,
|
||||||
die_end = 220,
|
head_shake_loop = false,
|
||||||
die_loop = false,
|
head_nod_start = 210,
|
||||||
|
head_nod_end = 220,
|
||||||
|
head_nod_loop = false,
|
||||||
},
|
},
|
||||||
follow = pick_up,
|
follow = pick_up,
|
||||||
nofollow = true,
|
nofollow = true,
|
||||||
|
|
Loading…
Reference in a new issue