From 888b0ebfec8c2eff9015163549a7e47443cb8665 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Fri, 1 Apr 2016 21:00:20 -0400 Subject: "explode" all modpacks into their individual components (you can't have a modpack buried inside a modpack) --- steelsupport/depends.txt | 2 ++ steelsupport/init.lua | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 steelsupport/depends.txt create mode 100644 steelsupport/init.lua (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..56cc084 --- /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 = 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