From 105b8a068f1c0095685cbe375d70f480ee7622c8 Mon Sep 17 00:00:00 2001 From: FaceDeer Date: Fri, 6 Jan 2017 19:34:51 -0700 Subject: Various structural panels --- recipes.lua | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 52 insertions(+), 4 deletions(-) (limited to 'recipes.lua') diff --git a/recipes.lua b/recipes.lua index d4786c4..52ebf47 100644 --- a/recipes.lua +++ b/recipes.lua @@ -93,6 +93,17 @@ minetest.register_craft({ } }) +minetest.register_craft({ + output = "digtron:pusher", + recipe = { + {"","default:coal_lump",""}, + {"default:coal_lump","digtron:digtron_core","default:coal_lump"}, + {"","default:coal_lump",""} + } +}) + +-- Structural + minetest.register_craft({ output = "digtron:structure", recipe = { @@ -103,11 +114,29 @@ minetest.register_craft({ }) minetest.register_craft({ - output = "digtron:pusher", + output = "digtron:panel", recipe = { - {"","default:coal_lump",""}, - {"default:coal_lump","digtron:digtron_core","default:coal_lump"}, - {"","default:coal_lump",""} + {"","",""}, + {"","digtron:digtron_core",""}, + {"","default:steel_ingot",""} + } +}) + +minetest.register_craft({ + output = "digtron:edge_panel", + recipe = { + {"","",""}, + {"","digtron:digtron_core","default:steel_ingot"}, + {"","default:steel_ingot",""} + } +}) + +minetest.register_craft({ + output = "digtron:corner_panel", + recipe = { + {"","",""}, + {"default:steel_ingot","digtron:digtron_core","default:steel_ingot"}, + {"","","default:steel_ingot"} } }) @@ -145,6 +174,25 @@ minetest.register_craft({ {"digtron:structure"}, } }) +minetest.register_craft({ + output = "digtron:digtron_core", + recipe = { + {"digtron:panel"}, + } +}) +minetest.register_craft({ + output = "digtron:digtron_core", + recipe = { + {"digtron:corner_panel"}, + } +}) +minetest.register_craft({ + output = "digtron:digtron_core", + recipe = { + {"digtron:edge_panel"}, + } +}) + minetest.register_craft({ output = "digtron:digtron_core", -- cgit v1.2.3