From 7bda846ea7f8c3ad127b167e6c7a797bfd46f73f Mon Sep 17 00:00:00 2001 From: Christian Danscheid Date: Sat, 10 Aug 2013 19:23:52 +0200 Subject: Initial commit --- steelsupport/depends.txt | 2 ++ steelsupport/init.lua | 20 ++++++++++++++++++++ steelsupport/textures/streets_support.png | Bin 0 -> 2793 bytes 3 files changed, 22 insertions(+) create mode 100644 steelsupport/depends.txt create mode 100644 steelsupport/init.lua create mode 100644 steelsupport/textures/streets_support.png (limited to 'steelsupport') 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 new file mode 100644 index 0000000..e92a88d Binary files /dev/null and b/steelsupport/textures/streets_support.png differ -- cgit v1.2.3