forked from VoxeLibre/VoxeLibre
Add creeper and vex sounds
This commit is contained in:
parent
8b38a169e6
commit
fd33d9d2ec
|
@ -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,
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 New Issue