diff --git a/technic_worldgen/crafts.lua b/technic_worldgen/crafts.lua index 0590e70..eb717e5 100644 --- a/technic_worldgen/crafts.lua +++ b/technic_worldgen/crafts.lua @@ -95,6 +95,7 @@ register_block("technic:lead_block", "technic:lead_ingot") register_block("technic:cast_iron_block", "technic:cast_iron_ingot") register_block("technic:carbon_steel_block", "technic:carbon_steel_ingot") register_block("technic:stainless_steel_block", "technic:stainless_steel_ingot") +register_block("technic:sulfur_block", "technic:sulfur_lump") minetest.register_craft({ type = 'cooking', diff --git a/technic_worldgen/nodes.lua b/technic_worldgen/nodes.lua index d4d3e4c..5adeb53 100644 --- a/technic_worldgen/nodes.lua +++ b/technic_worldgen/nodes.lua @@ -133,6 +133,14 @@ minetest.register_node(":technic:stainless_steel_block", { sounds = default.node_sound_stone_defaults() }) +minetest.register_node(":technic:sulfur_block", { + description = S("Sulfur Block"), + tiles = { "technic_sulfur_block.png" }, + is_ground_content = true, + groups = {cracky = 3}, + sounds = default.node_sound_stone_defaults() +}) + minetest.register_craft({ output = 'technic:marble_bricks 4', recipe = { diff --git a/technic_worldgen/textures/technic_sulfur_block.png b/technic_worldgen/textures/technic_sulfur_block.png new file mode 100644 index 0000000..82c824b Binary files /dev/null and b/technic_worldgen/textures/technic_sulfur_block.png differ