14 lines
552 B
Lua
14 lines
552 B
Lua
-- Nodes other than machines.
|
|
|
|
minetest.register_node("elepower_machines:machine_block", {
|
|
description = "Machine Block\nSafe for decoration",
|
|
tiles = {"elepower_machine_top.png", "elepower_machine_base.png", "elepower_machine_side.png"},
|
|
groups = {oddly_breakable_by_hand = 1, cracky = 1},
|
|
})
|
|
|
|
minetest.register_node("elepower_machines:advanced_machine_block", {
|
|
description = "Advanced Machine Block\nSafe for decoration",
|
|
tiles = {"elepower_advblock_combined.png"},
|
|
groups = {oddly_breakable_by_hand = 1, cracky = 1},
|
|
})
|