new sounds

master
Juraj Vajda 2018-10-18 00:25:23 -04:00
parent 8f8ea3075f
commit 6452530b47
70 changed files with 27 additions and 19 deletions

View File

@ -199,7 +199,7 @@ if minetest.get_modpath("mobs") ~= nil then
dummy_mesh = "spawners_mobs_mummy.b3d",
dummy_texture = {"spawners_mobs_mummy.png"},
night_only = true,
sound_custom = "spawners_mobs_mummy"
sound_custom = "spawners_mobs_mummy_neutral"
},
{
name = "bunny_evil",
@ -219,7 +219,7 @@ if minetest.get_modpath("mobs") ~= nil then
dummy_mesh = "spawners_mobs_character.b3d",
dummy_texture = {"spawners_mobs_uruk_hai.png", "spawners_mobs_trans.png","spawners_mobs_galvornsword.png", "spawners_mobs_trans.png"},
night_only = true,
sound_custom = "spawners_mobs_barbarian_yell2",
sound_custom = "spawners_mobs_uruk_hai_neutral",
env = true
},
{
@ -230,7 +230,7 @@ if minetest.get_modpath("mobs") ~= nil then
dummy_mesh = "spawners_mobs_balrog.b3d",
dummy_texture = {"spawners_mobs_balrog.png"},
night_only = "disable",
sound_custom = "spawners_mobs_howl",
sound_custom = "spawners_mobs_balrog_neutral",
env = true,
boss = true
}

View File

@ -180,9 +180,9 @@ MOBS_PROPS = {
}
}
--
--
-- check for 3rd party dependencies
--
--
-- include mummy mobs redo addon (spawner)
if minetest.get_modpath("mobs") ~= nil then
@ -199,7 +199,7 @@ if minetest.get_modpath("mobs") ~= nil then
dummy_mesh = "spawners_mobs_mummy.b3d",
dummy_texture = {"spawners_mobs_mummy.png"},
night_only = true,
sound_custom = "spawners_mobs_mummy"
sound_custom = "spawners_mobs_mummy_neutral"
},
{
name = "bunny_evil",
@ -219,7 +219,7 @@ if minetest.get_modpath("mobs") ~= nil then
dummy_mesh = "spawners_mobs_character.b3d",
dummy_texture = {"spawners_mobs_uruk_hai.png", "spawners_mobs_trans.png","spawners_mobs_galvornsword.png", "spawners_mobs_trans.png"},
night_only = true,
sound_custom = "spawners_mobs_barbarian_yell2",
sound_custom = "spawners_mobs_uruk_hai_neutral",
env = true
},
{
@ -230,7 +230,7 @@ if minetest.get_modpath("mobs") ~= nil then
dummy_mesh = "spawners_mobs_balrog.b3d",
dummy_texture = {"spawners_mobs_balrog.png"},
night_only = "disable",
sound_custom = "spawners_mobs_howl",
sound_custom = "spawners_mobs_balrog_neutral",
env = true,
boss = true
}

View File

@ -27,9 +27,12 @@ local balrog_def = {
blood_texture = "fire_basic_flame.png",
makes_footstep_sound = true,
sounds = {
death = "spawners_mobs_howl",
attack = "spawners_mobs_stone_death",
shoot_attack = "spawners_mobs_fireball",
death = "spawners_mobs_balrog_death",
attack = "spawners_mobs_balrog_attack",
shoot_attack = "spawners_mobs_balrog_fireball",
damage = "spawners_mobs_balrog_hit",
random = "spawners_mobs_balrog_neutral",
distance = 15
},
walk_velocity = 3,
run_velocity = 4,
@ -103,7 +106,7 @@ local balrog_def = {
water_damage = 0,
lava_damage = 0,
light_damage = 0,
fear_height = 3,
fear_height = 2,
animation = {
stand_start = 0,
stand_end = 240,

View File

@ -24,7 +24,7 @@ local bunny_evil_def = {
makes_footstep_sound = false,
walk_velocity = 1.5,
run_velocity = 4,
view_range = 5,
view_range = 10,
jump = true,
floats = 1,
drops = {

View File

@ -24,13 +24,16 @@ local mummy_def = {
},
makes_footstep_sound = true,
sounds = {
random = "spawners_mobs_mummy",
random = "spawners_mobs_mummy_neutral",
damage = "spawners_mobs_mummy_hit",
shoot_attack = "spawners_mobs_mummy_shoot",
attack = "spawners_mobs_mummy_attack",
death = "spawners_mobs_mummy_death",
distance = 15
},
walk_velocity = .75,
run_velocity = 1.5,
view_range = 5,
view_range = 10,
jump = true,
floats = 1,
drops = {

View File

@ -24,13 +24,15 @@ local uruk_hai_def = {
},
makes_footstep_sound = true,
sounds = {
random = "spawners_mobs_barbarian_yell2",
death = "spawners_mobs_death2",
attack = "spawners_mobs_slash_attack",
random = "spawners_mobs_uruk_hai_neutral",
death = "spawners_mobs_uruk_hai_death",
attack = "spawners_mobs_uruk_hai_attack",
damage = "spawners_mobs_uruk_hai_hit",
distance = 15
},
walk_velocity = 1,
run_velocity = 3,
view_range = 5,
view_range = 10,
jump = true,
floats = 1,
drops = {

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.