New node sounds: water, metal, plant/leaves
This commit is contained in:
parent
f4b607b280
commit
5e614b4436
18 changed files with 358 additions and 12 deletions
|
@ -1545,6 +1545,7 @@ minetest.register_node("mcl_core:water_flowing", {
|
|||
animation={type="vertical_frames", aspect_w=64, aspect_h=64, length=2.0}
|
||||
},
|
||||
},
|
||||
sounds = mcl_sounds.node_sound_water_defaults(table),
|
||||
alpha = WATER_ALPHA,
|
||||
paramtype = "light",
|
||||
paramtype2 = "flowingliquid",
|
||||
|
@ -1589,6 +1590,7 @@ Water interacts with lava in various ways:
|
|||
backface_culling = false,
|
||||
}
|
||||
},
|
||||
sounds = mcl_sounds.node_sound_water_defaults(table),
|
||||
alpha = WATER_ALPHA,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
|
@ -1746,7 +1748,7 @@ minetest.register_node("mcl_core:ironblock", {
|
|||
is_ground_content = false,
|
||||
stack_max = 64,
|
||||
groups = {pickaxey=2, building_block=1},
|
||||
sounds = mcl_sounds.node_sound_stone_defaults(),
|
||||
sounds = mcl_sounds.node_sound_metal_defaults(),
|
||||
_mcl_blast_resistance = 30,
|
||||
_mcl_hardness = 5,
|
||||
})
|
||||
|
@ -1758,7 +1760,7 @@ minetest.register_node("mcl_core:goldblock", {
|
|||
is_ground_content = false,
|
||||
stack_max = 64,
|
||||
groups = {pickaxey=4, building_block=1},
|
||||
sounds = mcl_sounds.node_sound_stone_defaults(),
|
||||
sounds = mcl_sounds.node_sound_metal_defaults(),
|
||||
_mcl_blast_resistance = 30,
|
||||
_mcl_hardness = 5,
|
||||
})
|
||||
|
|
|
@ -19,7 +19,7 @@ minetest.register_node("mcl_minecarts:rail", {
|
|||
},
|
||||
stack_max = 64,
|
||||
groups = {handy=1,pickaxey=1, attached_node=1,rail=1,connect_to_raillike=1,dig_by_water=1,destroy_by_lava_flow=1,transport=1},
|
||||
sounds = mcl_sounds.node_sound_defaults(),
|
||||
sounds = mcl_sounds.node_sound_metal_defaults(),
|
||||
_mcl_blast_resistance = 3.5,
|
||||
_mcl_hardness = 0.7,
|
||||
})
|
||||
|
@ -57,7 +57,7 @@ minetest.register_node("mcl_minecarts:golden_rail", {
|
|||
minetest.get_meta(pos):set_string("cart_acceleration", "0.5")
|
||||
end
|
||||
end,
|
||||
sounds = mcl_sounds.node_sound_defaults(),
|
||||
sounds = mcl_sounds.node_sound_metal_defaults(),
|
||||
mesecons = {
|
||||
effector = {
|
||||
action_on = function(pos, node)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue