From da66780a569712c23ae4f2996cfb4608a9f9d69d Mon Sep 17 00:00:00 2001
From: Vanessa Ezekowitz <vanessaezekowitz@gmail.com>
Date: Fri, 1 Apr 2016 20:02:19 -0400
Subject: copy all standard Dreambuilder mods in from the old subgame (exactly
 as last supplied there, updates to these mods will follow later)

---
 streets/steelsupport/depends.txt |  2 ++
 streets/steelsupport/init.lua    | 20 ++++++++++++++++++++
 2 files changed, 22 insertions(+)
 create mode 100644 streets/steelsupport/depends.txt
 create mode 100644 streets/steelsupport/init.lua

(limited to 'streets/steelsupport')

diff --git a/streets/steelsupport/depends.txt b/streets/steelsupport/depends.txt
new file mode 100644
index 0000000..48ef5e1
--- /dev/null
+++ b/streets/steelsupport/depends.txt
@@ -0,0 +1,2 @@
+default
+streetsmod
\ No newline at end of file
diff --git a/streets/steelsupport/init.lua b/streets/steelsupport/init.lua
new file mode 100644
index 0000000..56cc084
--- /dev/null
+++ b/streets/steelsupport/init.lua
@@ -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"}
+	}
+})
\ No newline at end of file
-- 
cgit v1.2.3