24 lines
895 B
Lua
24 lines
895 B
Lua
xdecor.register("moonbrick", {
|
|
description = "Moonbrick", tiles = {"xdecor_moonbrick.png"},
|
|
groups = {snappy=3}, sounds = default.node_sound_stone_defaults()
|
|
})
|
|
|
|
xdecor.register("wood_tile", {
|
|
description = "Wood tile", tiles = {"xdecor_wood_tile.png"},
|
|
groups = {snappy=3}, sounds = default.node_sound_wood_defaults()
|
|
})
|
|
|
|
xdecor.register("coalstone_tile", {
|
|
description = "Coalstone tile", tiles = {"xdecor_coalstone_tile.png"},
|
|
groups = {snappy=3}, sounds = default.node_sound_stone_defaults()
|
|
})
|
|
|
|
fencematerial = {"brass", "wrought_iron"}
|
|
for _, m in ipairs(fencematerial) do
|
|
xdecor.register("fence_"..m, {
|
|
description = "Fence ("..m..")", drawtype = "fencelike", tiles = {"xdecor_"..m..".png"},
|
|
inventory_image = "default_fence_overlay.png^xdecor_"..m..".png^default_fence_overlay.png^[makealpha:255,126,126",
|
|
groups = {snappy=3}, sounds = default.node_sound_wood_defaults()
|
|
})
|
|
end
|