mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-04 15:21:06 +01:00
Merge pull request 'Add missing Hoglin/Zoglin sounds' (#4082) from Bakawun/MineClone2:hoglin_sounds into master
Reviewed-on: https://git.minetest.land/MineClone2/MineClone2/pulls/4082 Reviewed-by: the-real-herowl <the-real-herowl@noreply.git.minetest.land>
This commit is contained in:
commit
324fd0dc4a
5 changed files with 11 additions and 1 deletions
|
@ -305,6 +305,9 @@ Origin of those models:
|
|||
* `mobs_mc_rabbit_random.*.ogg` (CC0)
|
||||
* Changes were made.
|
||||
* Source: <https://freesound.org/people/Alshred/>
|
||||
* [epCode]
|
||||
* `extra_mobs_hoglin*.ogg` (LGPL 3.0)
|
||||
* Source: <https://git.minetest.land/epCode/extra_mobs/src/branch/master/sounds>
|
||||
|
||||
Note: Many of these sounds have been more or less modified to fit the game.
|
||||
|
||||
|
|
|
@ -31,8 +31,9 @@ local hoglin = {
|
|||
} },
|
||||
visual_size = {x=3, y=3},
|
||||
sounds = {
|
||||
random = "extra_mobs_hoglin",
|
||||
random = "extra_mobs_hoglin.1",
|
||||
damage = "extra_mobs_hoglin_hurt",
|
||||
death = "extra_mobs_hoglin_hurt",
|
||||
distance = 16,
|
||||
},
|
||||
jump = true,
|
||||
|
@ -92,6 +93,12 @@ local zoglin = table.copy(hoglin)
|
|||
zoglin.description = S("Zoglin")
|
||||
zoglin.fire_resistant = 1
|
||||
zoglin.textures = {"extra_mobs_zoglin.png"}
|
||||
sounds = {
|
||||
random = "extra_mobs_hoglin.2",
|
||||
damage = "extra_mobs_hoglin_hurt",
|
||||
death = "extra_mobs_hoglin_hurt",
|
||||
distance = 16,
|
||||
}
|
||||
zoglin.do_custom = function()
|
||||
return
|
||||
end
|
||||
|
|
BIN
mods/ENTITIES/mobs_mc/sounds/extra_mobs_hoglin.1.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/extra_mobs_hoglin.1.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/extra_mobs_hoglin.2.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/extra_mobs_hoglin.2.ogg
Normal file
Binary file not shown.
BIN
mods/ENTITIES/mobs_mc/sounds/extra_mobs_hoglin_hurt.ogg
Normal file
BIN
mods/ENTITIES/mobs_mc/sounds/extra_mobs_hoglin_hurt.ogg
Normal file
Binary file not shown.
Loading…
Reference in a new issue