elepower/elepower_machines/nodes.lua

14 lines
552 B
Lua
Raw Normal View History

2018-06-18 07:09:43 +00:00
-- Nodes other than machines.
minetest.register_node("elepower_machines:machine_block", {
2018-06-21 08:09:01 +00:00
description = "Machine Block\nSafe for decoration",
2018-06-18 07:09:43 +00:00
tiles = {"elepower_machine_top.png", "elepower_machine_base.png", "elepower_machine_side.png"},
groups = {oddly_breakable_by_hand = 1, cracky = 1},
})
2018-09-15 18:44:20 +00:00
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},
})