Skip to content

Commit

Permalink
change most blocks to not ground content
Browse files Browse the repository at this point in the history
  • Loading branch information
SwissalpS authored Feb 26, 2024
1 parent 4105569 commit 5bb6363
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions technic_worldgen/nodes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ else
minetest.register_node(":technic:granite_bricks", {
description = S("Granite Bricks"),
tiles = {"technic_granite_bricks.png"},
is_ground_content = true,
is_ground_content = false,
groups = {cracky=1},
sounds = technic.sounds.node_sound_stone_defaults(),
})
Expand All @@ -96,7 +96,7 @@ else
minetest.register_node(":technic:marble_bricks", {
description = S("Marble Bricks"),
tiles = {"technic_marble_bricks.png"},
is_ground_content = true,
is_ground_content = false,
groups = {cracky=3, pickaxey=1},
_mcl_hardness = 0.8,
_mcl_blast_resistance = 1,
Expand All @@ -107,7 +107,7 @@ end
minetest.register_node(":technic:uranium_block", {
description = S("Uranium Block"),
tiles = {"technic_uranium_block.png"},
is_ground_content = true,
is_ground_content = false,
groups = {uranium_block=1, cracky=1, level=has_mcl and 0 or 2, radioactive=2, pickaxey=4},
_mcl_hardness = 1,
_mcl_blast_resistance = 1,
Expand All @@ -117,7 +117,7 @@ minetest.register_node(":technic:uranium_block", {
minetest.register_node(":technic:chromium_block", {
description = S("Chromium Block"),
tiles = {"technic_chromium_block.png"},
is_ground_content = true,
is_ground_content = false,
groups = {cracky=1, level=has_mcl and 0 or 2, pickaxey=4},
_mcl_hardness = 1,
_mcl_blast_resistance = 1,
Expand All @@ -127,7 +127,7 @@ minetest.register_node(":technic:chromium_block", {
minetest.register_node(":technic:zinc_block", {
description = S("Zinc Block"),
tiles = {"technic_zinc_block.png"},
is_ground_content = true,
is_ground_content = false,
groups = {cracky=1, level=has_mcl and 0 or 2, pickaxey=4},
_mcl_hardness = 1,
_mcl_blast_resistance = 1,
Expand All @@ -137,7 +137,7 @@ minetest.register_node(":technic:zinc_block", {
minetest.register_node(":technic:lead_block", {
description = S("Lead Block"),
tiles = {"technic_lead_block.png"},
is_ground_content = true,
is_ground_content = false,
groups = {cracky=1, level=has_mcl and 0 or 2, pickaxey=4},
_mcl_hardness = 1,
_mcl_blast_resistance = 1,
Expand All @@ -147,7 +147,7 @@ minetest.register_node(":technic:lead_block", {
minetest.register_node(":technic:cast_iron_block", {
description = S("Cast Iron Block"),
tiles = {"technic_cast_iron_block.png"},
is_ground_content = true,
is_ground_content = false,
groups = {cracky=1, level=has_mcl and 0 or 2, pickaxey=4},
_mcl_hardness = 1,
_mcl_blast_resistance = 1,
Expand All @@ -157,7 +157,7 @@ minetest.register_node(":technic:cast_iron_block", {
minetest.register_node(":technic:carbon_steel_block", {
description = S("Carbon Steel Block"),
tiles = {"technic_carbon_steel_block.png"},
is_ground_content = true,
is_ground_content = false,
groups = {cracky=1, level=has_mcl and 0 or 2, pickaxey=4},
_mcl_hardness = 1,
_mcl_blast_resistance = 1,
Expand All @@ -167,7 +167,7 @@ minetest.register_node(":technic:carbon_steel_block", {
minetest.register_node(":technic:stainless_steel_block", {
description = S("Stainless Steel Block"),
tiles = {"technic_stainless_steel_block.png"},
is_ground_content = true,
is_ground_content = false,
groups = {cracky=1, level=has_mcl and 0 or 2, pickaxey=4},
_mcl_hardness = 1,
_mcl_blast_resistance = 1,
Expand All @@ -177,7 +177,7 @@ minetest.register_node(":technic:stainless_steel_block", {
minetest.register_node(":technic:sulfur_block", {
description = S("Sulfur Block"),
tiles = {"technic_sulfur_block.png"},
is_ground_content = true,
is_ground_content = false,
groups = {cracky = 3, pickaxey=1, handy=1},
_mcl_hardness = 1,
_mcl_blast_resistance = 1,
Expand Down

0 comments on commit 5bb6363

Please sign in to comment.