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/)
|
||||
* `mobs_mc_ocelot_hurt.ogg` (CC BY 3.0)
|
||||
* 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)
|
||||
* `mobs_mc_silverfish_hurt.ogg` (CC BY-SA 4.0)
|
||||
* `mobs_mc_silverfish_death.ogg` (CC BY-SA 4.0)
|
||||
|
|
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_wolf_bark.1.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_wolf_bark.1.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_wolf_bark.2.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_wolf_bark.2.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_wolf_bark.3.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_wolf_bark.3.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_wolf_death.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_wolf_death.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_wolf_growl.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_wolf_growl.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_wolf_hurt.1.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_wolf_hurt.1.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_wolf_hurt.2.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_wolf_hurt.2.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_wolf_hurt.3.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_wolf_hurt.3.ogg
Normal file
Binary file not shown.
|
@ -34,7 +34,13 @@ local wolf = {
|
|||
},
|
||||
visual_size = {x=3, y=3},
|
||||
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,
|
||||
floats = 1,
|
||||
view_range = 16,
|
||||
|
|
Loading…
Reference in New Issue
Block a user