Expand Up
@@ -147,7 +147,6 @@ default:nyancat_rainbow
minetest .register_node (" default:stone" , {
description = " Stone" ,
tiles = {" default_stone.png" },
is_ground_content = true ,
groups = {cracky = 3 , stone = 1 },
drop = ' default:cobble' ,
legacy_mineral = true ,
Expand All
@@ -157,22 +156,23 @@ minetest.register_node("default:stone", {
minetest .register_node (" default:cobble" , {
description = " Cobblestone" ,
tiles = {" default_cobble.png" },
is_ground_content = true ,
is_ground_content = false ,
groups = {cracky = 3 , stone = 2 },
sounds = default .node_sound_stone_defaults (),
})
minetest .register_node (" default:stonebrick" , {
description = " Stone Brick" ,
tiles = {" default_stone_brick.png" },
is_ground_content = false ,
groups = {cracky = 2 , stone = 1 },
sounds = default .node_sound_stone_defaults (),
})
minetest .register_node (" default:mossycobble" , {
description = " Mossy Cobblestone" ,
tiles = {" default_mossycobble.png" },
is_ground_content = true ,
is_ground_content = false ,
groups = {cracky = 3 , stone = 1 },
sounds = default .node_sound_stone_defaults (),
})
Expand All
@@ -182,7 +182,6 @@ minetest.register_node("default:mossycobble", {
minetest .register_node (" default:desert_stone" , {
description = " Desert Stone" ,
tiles = {" default_desert_stone.png" },
is_ground_content = true ,
groups = {cracky = 3 , stone = 1 },
drop = ' default:desert_cobble' ,
legacy_mineral = true ,
Expand All
@@ -192,14 +191,15 @@ minetest.register_node("default:desert_stone", {
minetest .register_node (" default:desert_cobble" , {
description = " Desert Cobblestone" ,
tiles = {" default_desert_cobble.png" },
is_ground_content = true ,
is_ground_content = false ,
groups = {cracky = 3 , stone = 2 },
sounds = default .node_sound_stone_defaults (),
})
minetest .register_node (" default:desert_stonebrick" , {
description = " Desert Stone Brick" ,
tiles = {" default_desert_stone_brick.png" },
is_ground_content = false ,
groups = {cracky = 2 , stone = 1 },
sounds = default .node_sound_stone_defaults (),
})
Expand All
@@ -209,15 +209,14 @@ minetest.register_node("default:desert_stonebrick", {
minetest .register_node (" default:sandstone" , {
description = " Sandstone" ,
tiles = {" default_sandstone.png" },
is_ground_content = true ,
groups = {crumbly = 2 ,cracky = 3 },
sounds = default .node_sound_stone_defaults (),
})
minetest .register_node (" default:sandstonebrick" , {
description = " Sandstone Brick" ,
tiles = {" default_sandstone_brick.png" },
is_ground_content = true ,
is_ground_content = false ,
groups = {cracky = 2 },
sounds = default .node_sound_stone_defaults (),
})
Expand All
@@ -227,14 +226,14 @@ minetest.register_node("default:sandstonebrick", {
minetest .register_node (" default:obsidian" , {
description = " Obsidian" ,
tiles = {" default_obsidian.png" },
is_ground_content = true ,
sounds = default .node_sound_stone_defaults (),
groups = {cracky = 1 ,level = 2 },
})
minetest .register_node (" default:obsidianbrick" , {
description = " Obsidian Brick" ,
tiles = {" default_obsidian_brick.png" },
is_ground_content = false ,
sounds = default .node_sound_stone_defaults (),
groups = {cracky = 1 ,level = 2 },
})
Expand All
@@ -246,15 +245,13 @@ minetest.register_node("default:obsidianbrick", {
minetest .register_node (" default:dirt" , {
description = " Dirt" ,
tiles = {" default_dirt.png" },
is_ground_content = true ,
groups = {crumbly = 3 ,soil = 1 },
sounds = default .node_sound_dirt_defaults (),
})
minetest .register_node (" default:dirt_with_grass" , {
description = " Dirt with Grass" ,
tiles = {" default_grass.png" , " default_dirt.png" , " default_dirt.png^default_grass_side.png" },
is_ground_content = true ,
groups = {crumbly = 3 ,soil = 1 },
drop = ' default:dirt' ,
sounds = default .node_sound_dirt_defaults ({
Expand All
@@ -265,7 +262,6 @@ minetest.register_node("default:dirt_with_grass", {
minetest .register_node (" default:dirt_with_grass_footsteps" , {
description = " Dirt with Grass and Footsteps" ,
tiles = {" default_grass_footsteps.png" , " default_dirt.png" , " default_dirt.png^default_grass_side.png" },
is_ground_content = true ,
groups = {crumbly = 3 ,soil = 1 ,not_in_creative_inventory = 1 },
drop = ' default:dirt' ,
sounds = default .node_sound_dirt_defaults ({
Expand All
@@ -276,7 +272,6 @@ minetest.register_node("default:dirt_with_grass_footsteps", {
minetest .register_node (" default:dirt_with_snow" , {
description = " Dirt with Snow" ,
tiles = {" default_snow.png" , " default_dirt.png" , " default_dirt.png^default_snow_side.png" },
is_ground_content = true ,
groups = {crumbly = 3 ,soil = 1 },
drop = ' default:dirt' ,
sounds = default .node_sound_dirt_defaults ({
Expand All
@@ -289,15 +284,13 @@ minetest.register_node("default:dirt_with_snow", {
minetest .register_node (" default:sand" , {
description = " Sand" ,
tiles = {" default_sand.png" },
is_ground_content = true ,
groups = {crumbly = 3 , falling_node = 1 , sand = 1 },
sounds = default .node_sound_sand_defaults (),
})
minetest .register_node (" default:desert_sand" , {
description = " Desert Sand" ,
tiles = {" default_desert_sand.png" },
is_ground_content = true ,
groups = {crumbly = 3 , falling_node = 1 , sand = 1 },
sounds = default .node_sound_sand_defaults (),
})
Expand All
@@ -307,7 +300,6 @@ minetest.register_node("default:desert_sand", {
minetest .register_node (" default:gravel" , {
description = " Gravel" ,
tiles = {" default_gravel.png" },
is_ground_content = true ,
groups = {crumbly = 2 , falling_node = 1 },
sounds = default .node_sound_dirt_defaults ({
footstep = {name = " default_gravel_footstep" , gain = 0.5 },
Expand All
@@ -320,7 +312,6 @@ minetest.register_node("default:gravel", {
minetest .register_node (" default:clay" , {
description = " Clay" ,
tiles = {" default_clay.png" },
is_ground_content = true ,
groups = {crumbly = 3 },
drop = ' default:clay_lump 4' ,
sounds = default .node_sound_dirt_defaults (),
Expand All
@@ -333,7 +324,6 @@ minetest.register_node("default:snow", {
tiles = {" default_snow.png" },
inventory_image = " default_snowball.png" ,
wield_image = " default_snowball.png" ,
is_ground_content = true ,
paramtype = " light" ,
buildable_to = true ,
drawtype = " nodebox" ,
Expand Down
Expand Up
@@ -361,7 +351,6 @@ minetest.register_node("default:snow", {
minetest .register_node (" default:snowblock" , {
description = " Snow Block" ,
tiles = {" default_snow.png" },
is_ground_content = true ,
groups = {crumbly = 3 },
sounds = default .node_sound_dirt_defaults ({
footstep = {name = " default_snow_footstep" , gain = 0.25 },
Expand Down
Expand Up
@@ -398,6 +387,7 @@ minetest.register_node("default:tree", {
minetest .register_node (" default:wood" , {
description = " Wooden Planks" ,
tiles = {" default_wood.png" },
is_ground_content = false ,
groups = {choppy = 2 ,oddly_breakable_by_hand = 2 ,flammable = 3 ,wood = 1 },
sounds = default .node_sound_wood_defaults (),
})
Expand All
@@ -412,7 +402,6 @@ minetest.register_node("default:sapling", {
paramtype = " light" ,
sunlight_propagates = true ,
walkable = false ,
is_ground_content = true ,
selection_box = {
type = " fixed" ,
fixed = {- 0.3 , - 0.5 , - 0.3 , 0.3 , 0.35 , 0.3 }
Expand Down
Expand Up
@@ -459,7 +448,7 @@ minetest.register_node("default:apple", {
paramtype = " light" ,
sunlight_propagates = true ,
walkable = false ,
is_ground_content = true ,
is_ground_content = false ,
selection_box = {
type = " fixed" ,
fixed = {- 0.2 , - 0.5 , - 0.2 , 0.2 , 0 , 0.2 }
Expand Down
Expand Up
@@ -491,6 +480,7 @@ minetest.register_node("default:jungletree", {
minetest .register_node (" default:junglewood" , {
description = " Junglewood Planks" ,
tiles = {" default_junglewood.png" },
is_ground_content = false ,
groups = {choppy = 2 ,oddly_breakable_by_hand = 2 ,flammable = 3 ,wood = 1 },
sounds = default .node_sound_wood_defaults (),
})
Expand Down
Expand Up
@@ -558,6 +548,7 @@ minetest.register_node("default:pinetree", {
minetest .register_node (" default:pinewood" , {
description = " Pinewood Planks" ,
tiles = {" default_pinewood.png" },
is_ground_content = false ,
groups = {choppy = 2 ,oddly_breakable_by_hand = 2 ,flammable = 3 ,wood = 1 },
sounds = default .node_sound_wood_defaults (),
})
Expand Down
Expand Up
@@ -600,7 +591,6 @@ minetest.register_node("default:pine_sapling", {
wield_image = " default_pine_sapling.png" ,
paramtype = " light" ,
walkable = false ,
is_ground_content = true ,
selection_box = {
type = " fixed" ,
fixed = {- 0.3 , - 0.5 , - 0.3 , 0.3 , 0.35 , 0.3 }
Expand All
@@ -616,7 +606,6 @@ minetest.register_node("default:pine_sapling", {
minetest .register_node (" default:stone_with_coal" , {
description = " Coal Ore" ,
tiles = {" default_stone.png^default_mineral_coal.png" },
is_ground_content = true ,
groups = {cracky = 3 },
drop = ' default:coal_lump' ,
sounds = default .node_sound_stone_defaults (),
Expand All
@@ -625,7 +614,7 @@ minetest.register_node("default:stone_with_coal", {
minetest .register_node (" default:coalblock" , {
description = " Coal Block" ,
tiles = {" default_coal_block.png" },
is_ground_content = true ,
is_ground_content = false ,
groups = {cracky = 3 },
sounds = default .node_sound_stone_defaults (),
})
Expand All
@@ -635,7 +624,6 @@ minetest.register_node("default:coalblock", {
minetest .register_node (" default:stone_with_iron" , {
description = " Iron Ore" ,
tiles = {" default_stone.png^default_mineral_iron.png" },
is_ground_content = true ,
groups = {cracky = 2 },
drop = ' default:iron_lump' ,
sounds = default .node_sound_stone_defaults (),
Expand All
@@ -644,7 +632,7 @@ minetest.register_node("default:stone_with_iron", {
minetest .register_node (" default:steelblock" , {
description = " Steel Block" ,
tiles = {" default_steel_block.png" },
is_ground_content = true ,
is_ground_content = false ,
groups = {cracky = 1 ,level = 2 },
sounds = default .node_sound_stone_defaults (),
})
Expand All
@@ -654,7 +642,6 @@ minetest.register_node("default:steelblock", {
minetest .register_node (" default:stone_with_copper" , {
description = " Copper Ore" ,
tiles = {" default_stone.png^default_mineral_copper.png" },
is_ground_content = true ,
groups = {cracky = 2 },
drop = ' default:copper_lump' ,
sounds = default .node_sound_stone_defaults (),
Expand All
@@ -663,15 +650,15 @@ minetest.register_node("default:stone_with_copper", {
minetest .register_node (" default:copperblock" , {
description = " Copper Block" ,
tiles = {" default_copper_block.png" },
is_ground_content = true ,
is_ground_content = false ,
groups = {cracky = 1 ,level = 2 },
sounds = default .node_sound_stone_defaults (),
})
minetest .register_node (" default:bronzeblock" , {
description = " Bronze Block" ,
tiles = {" default_bronze_block.png" },
is_ground_content = true ,
is_ground_content = false ,
groups = {cracky = 1 ,level = 2 },
sounds = default .node_sound_stone_defaults (),
})
Expand All
@@ -682,7 +669,6 @@ minetest.register_node("default:stone_with_mese", {
description = " Mese Ore" ,
tiles = {" default_stone.png^default_mineral_mese.png" },
paramtype = " light" ,
is_ground_content = true ,
groups = {cracky = 1 },
drop = " default:mese_crystal" ,
sounds = default .node_sound_stone_defaults (),
Expand All
@@ -693,7 +679,6 @@ minetest.register_node("default:mese", {
description = " Mese Block" ,
tiles = {" default_mese_block.png" },
paramtype = " light" ,
is_ground_content = true ,
groups = {cracky = 1 , level = 2 },
sounds = default .node_sound_stone_defaults (),
light_source = 3 ,
Expand All
@@ -705,7 +690,6 @@ minetest.register_node("default:mese", {
minetest .register_node (" default:stone_with_gold" , {
description = " Gold Ore" ,
tiles = {" default_stone.png^default_mineral_gold.png" },
is_ground_content = true ,
groups = {cracky = 2 },
drop = " default:gold_lump" ,
sounds = default .node_sound_stone_defaults (),
Expand All
@@ -714,7 +698,7 @@ minetest.register_node("default:stone_with_gold", {
minetest .register_node (" default:goldblock" , {
description = " Gold Block" ,
tiles = {" default_gold_block.png" },
is_ground_content = true ,
is_ground_content = false ,
groups = {cracky = 1 },
sounds = default .node_sound_stone_defaults (),
})
Expand All
@@ -724,7 +708,6 @@ minetest.register_node("default:goldblock", {
minetest .register_node (" default:stone_with_diamond" , {
description = " Diamond Ore" ,
tiles = {" default_stone.png^default_mineral_diamond.png" },
is_ground_content = true ,
groups = {cracky = 1 },
drop = " default:diamond" ,
sounds = default .node_sound_stone_defaults (),
Expand All
@@ -733,7 +716,7 @@ minetest.register_node("default:stone_with_diamond", {
minetest .register_node (" default:diamondblock" , {
description = " Diamond Block" ,
tiles = {" default_diamond_block.png" },
is_ground_content = true ,
is_ground_content = false ,
groups = {cracky = 1 ,level = 3 },
sounds = default .node_sound_stone_defaults (),
})
Expand All
@@ -746,7 +729,6 @@ minetest.register_node("default:cactus", {
description = " Cactus" ,
tiles = {" default_cactus_top.png" , " default_cactus_top.png" , " default_cactus_side.png" },
paramtype2 = " facedir" ,
is_ground_content = true ,
groups = {snappy = 1 ,choppy = 3 ,flammable = 2 },
sounds = default .node_sound_wood_defaults (),
on_place = minetest .rotate_node ,
Expand All
@@ -765,7 +747,6 @@ minetest.register_node("default:papyrus", {
paramtype = " light" ,
sunlight_propagates = true ,
walkable = false ,
is_ground_content = true ,
selection_box = {
type = " fixed" ,
fixed = {- 0.3 , - 0.5 , - 0.3 , 0.3 , 0.5 , 0.3 }
Expand All
@@ -789,7 +770,6 @@ minetest.register_node("default:dry_shrub", {
paramtype = " light" ,
sunlight_propagates = true ,
walkable = false ,
is_ground_content = true ,
buildable_to = true ,
groups = {snappy = 3 ,flammable = 3 ,attached_node = 1 },
sounds = default .node_sound_leaves_defaults (),
Expand All
@@ -811,7 +791,6 @@ minetest.register_node("default:junglegrass", {
sunlight_propagates = true ,
walkable = false ,
buildable_to = true ,
is_ground_content = true ,
groups = {snappy = 3 ,flammable = 2 ,flora = 1 ,attached_node = 1 },
sounds = default .node_sound_leaves_defaults (),
selection_box = {
Expand All
@@ -831,7 +810,6 @@ minetest.register_node("default:grass_1", {
paramtype = " light" ,
sunlight_propagates = true ,
walkable = false ,
is_ground_content = true ,
buildable_to = true ,
groups = {snappy = 3 ,flammable = 3 ,flora = 1 ,attached_node = 1 },
sounds = default .node_sound_leaves_defaults (),
Expand Down
Expand Up
@@ -860,7 +838,6 @@ for i=2,5 do
sunlight_propagates = true ,
walkable = false ,
buildable_to = true ,
is_ground_content = true ,
drop = " default:grass_1" ,
groups = {snappy = 3 ,flammable = 3 ,flora = 1 ,attached_node = 1 ,not_in_creative_inventory = 1 },
sounds = default .node_sound_leaves_defaults (),
Expand Down
Expand Up
@@ -1585,6 +1562,7 @@ minetest.register_node("default:meselamp", {
minetest .register_node (" default:cloud" , {
description = " Cloud" ,
tiles = {" default_cloud.png" },
is_ground_content = false ,
sounds = default .node_sound_defaults (),
groups = {not_in_creative_inventory = 1 },
})
Expand Down