Initial commit (version 0.1-test)
This commit is contained in:
3
mods/roads/steelsupport/depends.txt
Normal file
3
mods/roads/steelsupport/depends.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
default?
|
||||
sounds
|
||||
streetsmod
|
||||
20
mods/roads/steelsupport/init.lua
Normal file
20
mods/roads/steelsupport/init.lua
Normal file
@@ -0,0 +1,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"}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user