|
|
|
@ -363,7 +363,7 @@ minetest.register_node("mcl_core:dirt_with_grass", {
|
|
|
|
|
color = "#55aa60",
|
|
|
|
|
is_ground_content = true,
|
|
|
|
|
stack_max = 64,
|
|
|
|
|
groups = {handy=1,shovely=1,dirt=2,grass_block=1, grass_block_no_snow=1, soil=1, soil_sapling=2, soil_sugarcane=1, cultivatable=2, spreading_dirt_type=1, enderman_takable=1, building_block=1},
|
|
|
|
|
groups = {handy=1,shovely=1,dirt=2,grass_block=1, grass_block_no_snow=1, soil=1, soil_sapling=2, soil_sugarcane=1, cultivatable=2, spreading_dirt_type=1, enderman_takable=1, building_block=1, path_creation_possible=1},
|
|
|
|
|
drop = 'mcl_core:dirt',
|
|
|
|
|
sounds = mcl_sounds.node_sound_dirt_defaults({
|
|
|
|
|
footstep = {name="default_grass_footstep", gain=0.1},
|
|
|
|
@ -416,7 +416,7 @@ minetest.register_node("mcl_core:mycelium", {
|
|
|
|
|
tiles = {"mcl_core_mycelium_top.png", "default_dirt.png", {name="mcl_core_mycelium_side.png", tileable_vertical=false}},
|
|
|
|
|
is_ground_content = true,
|
|
|
|
|
stack_max = 64,
|
|
|
|
|
groups = {handy=1,shovely=1, dirt=2,spreading_dirt_type=1, enderman_takable=1, building_block=1},
|
|
|
|
|
groups = {handy=1,shovely=1, dirt=2,spreading_dirt_type=1, enderman_takable=1, building_block=1, path_creation_possible=1},
|
|
|
|
|
drop = 'mcl_core:dirt',
|
|
|
|
|
sounds = mcl_sounds.node_sound_dirt_defaults({
|
|
|
|
|
footstep = {name="default_grass_footstep", gain=0.1},
|
|
|
|
@ -436,7 +436,7 @@ minetest.register_node("mcl_core:podzol", {
|
|
|
|
|
tiles = {"mcl_core_dirt_podzol_top.png", "default_dirt.png", {name="mcl_core_dirt_podzol_side.png", tileable_vertical=false}},
|
|
|
|
|
is_ground_content = true,
|
|
|
|
|
stack_max = 64,
|
|
|
|
|
groups = {handy=1,shovely=3, dirt=2,soil=1, soil_sapling=2, soil_sugarcane=1, enderman_takable=1, building_block=1},
|
|
|
|
|
groups = {handy=1,shovely=3, dirt=2,soil=1, soil_sapling=2, soil_sugarcane=1, enderman_takable=1, building_block=1, path_creation_possible=1},
|
|
|
|
|
drop = 'mcl_core:dirt',
|
|
|
|
|
sounds = mcl_sounds.node_sound_dirt_defaults(),
|
|
|
|
|
on_construct = mcl_core.on_snowable_construct,
|
|
|
|
@ -454,7 +454,7 @@ minetest.register_node("mcl_core:dirt", {
|
|
|
|
|
tiles = {"default_dirt.png"},
|
|
|
|
|
is_ground_content = true,
|
|
|
|
|
stack_max = 64,
|
|
|
|
|
groups = {handy=1,shovely=1, dirt=1,soil=1, soil_sapling=2, soil_sugarcane=1, cultivatable=2, enderman_takable=1, building_block=1},
|
|
|
|
|
groups = {handy=1,shovely=1, dirt=1,soil=1, soil_sapling=2, soil_sugarcane=1, cultivatable=2, enderman_takable=1, building_block=1, path_creation_possible=1},
|
|
|
|
|
sounds = mcl_sounds.node_sound_dirt_defaults(),
|
|
|
|
|
_mcl_blast_resistance = 0.5,
|
|
|
|
|
_mcl_hardness = 0.5,
|
|
|
|
@ -466,7 +466,7 @@ minetest.register_node("mcl_core:coarse_dirt", {
|
|
|
|
|
tiles = {"mcl_core_coarse_dirt.png"},
|
|
|
|
|
is_ground_content = true,
|
|
|
|
|
stack_max = 64,
|
|
|
|
|
groups = {handy=1,shovely=1, dirt=3,soil=1, soil_sugarcane=1, cultivatable=1, enderman_takable=1, building_block=1},
|
|
|
|
|
groups = {handy=1,shovely=1, dirt=3,soil=1, soil_sugarcane=1, cultivatable=1, enderman_takable=1, building_block=1, path_creation_possible=1},
|
|
|
|
|
sounds = mcl_sounds.node_sound_dirt_defaults(),
|
|
|
|
|
_mcl_blast_resistance = 0.5,
|
|
|
|
|
_mcl_hardness = 0.5,
|
|
|
|
|