mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-04 23:31:05 +01:00
Add terrifying enderman noises
This commit is contained in:
parent
1ca89f699a
commit
0cbbe451d4
7 changed files with 12 additions and 2 deletions
|
@ -124,6 +124,14 @@ Origin of those models:
|
||||||
* `mobs_mc_enderman_teleport_*.ogg` (CC0)
|
* `mobs_mc_enderman_teleport_*.ogg` (CC0)
|
||||||
* Source 1: <https://opengameart.org/content/80-cc0-creature-sfx>
|
* Source 1: <https://opengameart.org/content/80-cc0-creature-sfx>
|
||||||
* Source 2: <https://opengameart.org/content/80-cc0-creture-sfx-2>
|
* Source 2: <https://opengameart.org/content/80-cc0-creture-sfx-2>
|
||||||
|
* [Soundscapes55](https://freesound.org/people/Soundscapes55/)
|
||||||
|
* `mobs_mc_enderman_random.1.ogg` (CC0)
|
||||||
|
* Source: <https://freesound.org/people/Soundscapes55/sounds/434973/>
|
||||||
|
* [griffinjennings](https://freesound.org/people/griffinjennings/)
|
||||||
|
* `mobs_mc_enderman_death.*.ogg` (CC BY 3.0)
|
||||||
|
* `mobs_mc_enderman_hurt.*.ogg` (CC BY 3.0)
|
||||||
|
* Sounds were heavily modified
|
||||||
|
* Source: <https://freesound.org/people/griffinjennings/sounds/463972/>
|
||||||
* [pointparkcinema](https://freesound.org/people/pointparkcinema/)
|
* [pointparkcinema](https://freesound.org/people/pointparkcinema/)
|
||||||
* `mobs_mc_guardian_random.1.ogg` (CC0)
|
* `mobs_mc_guardian_random.1.ogg` (CC0)
|
||||||
* Source: <https://freesound.org/people/pointparkcinema/sounds/407252/>
|
* Source: <https://freesound.org/people/pointparkcinema/sounds/407252/>
|
||||||
|
|
|
@ -205,9 +205,11 @@ mobs:register_mob("mobs_mc:enderman", {
|
||||||
visual_size = {x=3, y=3},
|
visual_size = {x=3, y=3},
|
||||||
makes_footstep_sound = true,
|
makes_footstep_sound = true,
|
||||||
sounds = {
|
sounds = {
|
||||||
|
-- TODO: Custom war cry sound
|
||||||
war_cry = "mobs_sandmonster",
|
war_cry = "mobs_sandmonster",
|
||||||
death = "green_slime_death",
|
death = {name="mobs_mc_enderman_death", gain=0.7},
|
||||||
-- TODO: damage, random
|
damage = {name="mobs_mc_enderman_hurt", gain=0.5},
|
||||||
|
random = {name="mobs_mc_enderman_random", gain=0.5},
|
||||||
distance = 16,
|
distance = 16,
|
||||||
},
|
},
|
||||||
walk_velocity = 0.2,
|
walk_velocity = 0.2,
|
||||||
|
|
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_enderman_death.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_enderman_death.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_enderman_hurt.1.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_enderman_hurt.1.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_enderman_hurt.2.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_enderman_hurt.2.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_enderman_hurt.3.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_enderman_hurt.3.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_enderman_random.1.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_enderman_random.1.ogg
Normal file
Binary file not shown.
Loading…
Reference in a new issue