1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--[[
StreetsMod: Steel support for hanging signs on highways etc.
]]
minetest.register_node(":streets:steel_support",{
description = streets.S("Steel support"),
tiles = {"streets_support.png"},
groups = {cracky = 1},
drawtype = "glasslike_framed",
climbable = true,
sunlight_propagates = true,
paramtype = "light",
})
minetest.register_craft({
output = "streets:steel_support 5",
recipe = {
{"default:steel_ingot","","default:steel_ingot"},
{"","default:steel_ingot",""},
{"default:steel_ingot","","default:steel_ingot"}
}
})
|