diff options
author | FaceDeer <derksenmobile@gmail.com> | 2017-01-06 19:34:51 -0700 |
---|---|---|
committer | FaceDeer <derksenmobile@gmail.com> | 2017-01-06 19:34:51 -0700 |
commit | 105b8a068f1c0095685cbe375d70f480ee7622c8 (patch) | |
tree | c6a984df6d4252fb94677ea28e0275cfa7fcce8b /recipes.lua | |
parent | 795fc6ea931d91a826f2f913019a791263b8f62b (diff) |
Various structural panels
Diffstat (limited to 'recipes.lua')
-rw-r--r-- | recipes.lua | 56 |
1 files changed, 52 insertions, 4 deletions
diff --git a/recipes.lua b/recipes.lua index d4786c4..52ebf47 100644 --- a/recipes.lua +++ b/recipes.lua @@ -94,6 +94,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 = { {"default:stick","","default:stick"}, @@ -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", |