mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-04 15:21:06 +01:00
Add parrot sounds
This commit is contained in:
parent
1d0ecd5708
commit
389135f87f
6 changed files with 12 additions and 4 deletions
|
@ -84,9 +84,12 @@ Origin of those models:
|
|||
* [AGFX](http://www.freesound.org/people/DrMinky/sounds/) (CC0)
|
||||
* `mobs_mc_chicken_child.ogg`
|
||||
* Source: <https://freesound.org/people/AGFX/sounds/43380/>
|
||||
* [evsecrets](https://freesound.org/people/evsecrets/sounds/346961/) (CC0)
|
||||
* `mobs_mc_chicken_buck.*.ogg`
|
||||
* `mobs_mc_chicken_hurt.ogg`
|
||||
* [evsecrets](https://freesound.org/people/evsecrets/sounds/) (CC0)
|
||||
* `mobs_mc_chicken_*.ogg`
|
||||
* Source: <https://freesound.org/people/evsecrets/sounds/346961/>
|
||||
* [contramundum](https://freesound.org/people/contramundum/sounds/)
|
||||
* `mobs_mc_parrot_*.ogg`
|
||||
* Source: <https://freesound.org/people/contramundum/sounds/388417/>
|
||||
* Randomation (CC0)
|
||||
* `green_slime_damage.ogg`
|
||||
* `green_slime_attack.ogg`
|
||||
|
|
|
@ -24,7 +24,12 @@ mobs:register_mob("mobs_mc:parrot", {
|
|||
visual_size = {x=3, y=3},
|
||||
walk_velocity = 3,
|
||||
run_velocity = 5,
|
||||
-- TODO: sounds
|
||||
sounds = {
|
||||
random = "mobs_mc_parrot_random",
|
||||
damage = {name="mobs_mc_parrot_hurt", gain=0.3},
|
||||
death = {name="mobs_mc_parrot_death", gain=0.6},
|
||||
distance = 16,
|
||||
},
|
||||
drops = {
|
||||
{name = mobs_mc.items.feather,
|
||||
chance = 1,
|
||||
|
|
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_parrot_death.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_parrot_death.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_parrot_hurt.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_parrot_hurt.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_parrot_random.1.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_parrot_random.1.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_parrot_random.2.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_parrot_random.2.ogg
Normal file
Binary file not shown.
Loading…
Reference in a new issue