diff options
Diffstat (limited to 'steelsupport')
-rw-r--r-- | steelsupport/depends.txt | 2 | ||||
-rw-r--r-- | steelsupport/init.lua | 20 | ||||
-rw-r--r-- | steelsupport/textures/streets_support.png | bin | 0 -> 2793 bytes |
3 files changed, 22 insertions, 0 deletions
diff --git a/steelsupport/depends.txt b/steelsupport/depends.txt new file mode 100644 index 0000000..48ef5e1 --- /dev/null +++ b/steelsupport/depends.txt @@ -0,0 +1,2 @@ +default +streetsmod
\ No newline at end of file diff --git a/steelsupport/init.lua b/steelsupport/init.lua new file mode 100644 index 0000000..b6b6f10 --- /dev/null +++ b/steelsupport/init.lua @@ -0,0 +1,20 @@ +--[[ + StreetsMod: Steel support for hanging signs on highways etc. +]] +minetest.register_node(":streets:steel_support",{ + description = "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"} + } +})
\ No newline at end of file diff --git a/steelsupport/textures/streets_support.png b/steelsupport/textures/streets_support.png Binary files differnew file mode 100644 index 0000000..e92a88d --- /dev/null +++ b/steelsupport/textures/streets_support.png |