forked from VoxeLibre/VoxeLibre
Add wolf sounds
This commit is contained in:
parent
22a0b107ba
commit
376e1c32c5
|
@ -216,6 +216,13 @@ Origin of those models:
|
||||||
* [ebcrosby](https://freesound.org/people/ebcrosby/)
|
* [ebcrosby](https://freesound.org/people/ebcrosby/)
|
||||||
* `mobs_mc_ocelot_hurt.ogg` (CC BY 3.0)
|
* `mobs_mc_ocelot_hurt.ogg` (CC BY 3.0)
|
||||||
* Source: <https://freesound.org/people/ebcrosby/sounds/332979/>
|
* Source: <https://freesound.org/people/ebcrosby/sounds/332979/>
|
||||||
|
* Hybrid Dog (forum.minetest.net)
|
||||||
|
* `mobs_mc_wolf_hurt.*.ogg` (CC0)
|
||||||
|
* `mobs_mc_wolf_bark.*.ogg` (CC0)
|
||||||
|
* `mobs_mc_wolf_death.*.ogg` (CC0)
|
||||||
|
* `mobs_mc_wolf_growl.*.ogg` (CC0)
|
||||||
|
* Sounds modified and simplified
|
||||||
|
* Source: "dogblocks" mod by Hybrid Dog <https://github.com/HybridDog/dogblocks/>
|
||||||
* [Inocodum](https://forum.minetest.net/memberlist.php?mode=viewprofile&u=3115)
|
* [Inocodum](https://forum.minetest.net/memberlist.php?mode=viewprofile&u=3115)
|
||||||
* `mobs_mc_silverfish_hurt.ogg` (CC BY-SA 4.0)
|
* `mobs_mc_silverfish_hurt.ogg` (CC BY-SA 4.0)
|
||||||
* `mobs_mc_silverfish_death.ogg` (CC BY-SA 4.0)
|
* `mobs_mc_silverfish_death.ogg` (CC BY-SA 4.0)
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -34,7 +34,13 @@ local wolf = {
|
||||||
},
|
},
|
||||||
visual_size = {x=3, y=3},
|
visual_size = {x=3, y=3},
|
||||||
makes_footstep_sound = true,
|
makes_footstep_sound = true,
|
||||||
-- TODO: sounds
|
sounds = {
|
||||||
|
attack = "mobs_mc_wolf_bark",
|
||||||
|
war_cry = "mobs_mc_wolf_growl",
|
||||||
|
damage = {name = "mobs_mc_wolf_hurt", gain=0.6},
|
||||||
|
death = {name = "mobs_mc_wolf_death", gain=0.6},
|
||||||
|
distance = 16,
|
||||||
|
},
|
||||||
pathfinding = 1,
|
pathfinding = 1,
|
||||||
floats = 1,
|
floats = 1,
|
||||||
view_range = 16,
|
view_range = 16,
|
||||||
|
|
Loading…
Reference in New Issue