elepower/elepower_machines/nodes.lua

14 lines
552 B
Lua
Raw Normal View History

2018-06-18 09:09:43 +02:00
-- Nodes other than machines.
minetest.register_node("elepower_machines:machine_block", {
2018-06-21 10:09:01 +02:00
description = "Machine Block\nSafe for decoration",
2018-06-18 09:09:43 +02: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 20:44:20 +02: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},
})