minetest.register_node("compressednether:rack", { description = ("Compressed Netherrack"), tiles = {"nether_compressed_rack.png"}, is_ground_content = true, groups = {cracky = 3, level = 2, workable_with_nether_tools = 3}, sounds = default.node_sound_stone_defaults(), }) minetest.register_node("compressednether:rack_deep", { description = ("Compressed Deep Netherrack"), tiles = {"nether_compressed_rack_deep.png"}, is_ground_content = true, groups = {cracky = 3, level = 2, workable_with_nether_tools = 3}, sounds = default.node_sound_stone_defaults(), }) minetest.register_craft({ type = "shaped", output = "compressednether:rack", recipe = { {"nether:rack", "nether:rack", "nether:rack"}, {"nether:rack", "nether:rack", "nether:rack"}, {"nether:rack", "nether:rack", "nether:rack"} } }) minetest.register_craft({ type = "shapeless", output = "nether:rack 9", recipe = { "compressednether:rack" }, }) minetest.register_craft({ type = "shaped", output = "compressednether:rack_deep", recipe = { {"nether:rack_deep", "nether:rack_deep", "nether:rack_deep"}, {"nether:rack_deep", "nether:rack_deep", "nether:rack_deep"}, {"nether:rack_deep", "nether:rack_deep", "nether:rack_deep"} } }) minetest.register_craft({ type = "shapeless", output = "nether:rack_deep 9", recipe = { "compressednether:rack_deep" }, })