summaryrefslogtreecommitdiff
path: root/steelsupport/init.lua
blob: 56cc084a5d5cd568c4ec93062c5f09b44dc4aaeb (plain)
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"}
	}
})