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

View File

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

View File

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

View File

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

View File

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

View File

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