mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-04 15:21:06 +01:00
Add creeper and vex sounds
This commit is contained in:
parent
8b38a169e6
commit
fd33d9d2ec
7 changed files with 16 additions and 5 deletions
|
@ -144,5 +144,16 @@ Origin of those models:
|
|||
* [ERH](https://freesound.org/people/ERH/)
|
||||
* `mobs_mc_horse_random.2.ogg` (CC BY 3.0)
|
||||
* Source: <https://freesound.org/people/ERH/sounds/32043/>
|
||||
* [j1987](https://freesound.org/people/j1987/)
|
||||
* `mobs_mc_creeper_death.ogg` (CC0)
|
||||
* Source: <https://freesound.org/people/j1987/sounds/111325>
|
||||
* [themightyglider](https://opengameart.org/users/themightyglider)
|
||||
* `mobs_mc_creeper_hurt.ogg` (CC0)
|
||||
* Source: <https://opengameart.org/content/simple-fuse-sound>
|
||||
* [pauliw](https://opengameart.org/users/pauliw)
|
||||
* `mobs_mc_vex_hurt.ogg` (CC0)
|
||||
* Source: <https://opengameart.org/content/some-kind-of-beings-soundsx>
|
||||
* `mobs_mc_vex_death.ogg` (CC0)
|
||||
* Source: <https://opengameart.org/content/some-kind-of-beings-sounds7>
|
||||
|
||||
Note: Many of these sounds have been more or less modified to fit the game.
|
||||
|
|
|
@ -28,8 +28,8 @@ mobs:register_mob("mobs_mc:creeper", {
|
|||
visual_size = {x=3, y=3},
|
||||
sounds = {
|
||||
attack = "tnt_ignite",
|
||||
--TODO: death = "",
|
||||
--TODO: damage = "",
|
||||
death = "mobs_mc_creeper_death",
|
||||
damage = "mobs_mc_creeper_hurt",
|
||||
fuse = "tnt_ignite",
|
||||
explode = "tnt_explode",
|
||||
distance = 16,
|
||||
|
|
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_creeper_death.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_creeper_death.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_creeper_hurt.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_creeper_hurt.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_vex_death.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_vex_death.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_vex_hurt.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/mobs_mc_vex_hurt.ogg
Normal file
Binary file not shown.
|
@ -36,9 +36,9 @@ mobs:register_mob("mobs_mc:vex", {
|
|||
run_velocity = 5.9,
|
||||
attack_type = "dogfight",
|
||||
sounds = {
|
||||
random = "mobs_rat",
|
||||
death = "green_slime_death",
|
||||
-- TODO: Sounds: random (better), death (better), damage
|
||||
-- TODO: random
|
||||
death = "mobs_mc_vex_death",
|
||||
damage = "mobs_mc_vex_hurt",
|
||||
distance = 16,
|
||||
},
|
||||
animation = {
|
||||
|
|
Loading…
Reference in a new issue