51 lines
1.4 KiB
Lua
Raw Normal View History

2023-08-11 16:42:25 -04:00
minetest.register_node("compressednether:rack", {
2023-10-26 19:48:10 -04:00
description = ("Compressed Netherrack"),
2023-08-11 16:42:25 -04:00
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", {
2023-10-26 19:48:10 -04:00
description = ("Compressed Deep Netherrack"),
2023-08-11 16:42:25 -04:00
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"
},
})