forked from mtcontrib/pipeworks
added crafting recipes for mese pneumatic tubes
This commit is contained in:
parent
b82aac1ed2
commit
e235dae9d1
35
crafts.lua
35
crafts.lua
@ -90,13 +90,34 @@ if io.open(minetest.get_modpath("pipeworks").."/../technic/init.lua", "r") == ni
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
output = "pipeworks:entry_panel 2",
|
output = "pipeworks:mese_tube_000000 2",
|
||||||
recipe = {
|
recipe = {
|
||||||
{ "", "default:steel_ingot", "" },
|
{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
|
||||||
{ "", "pipeworks:pipe_110000_empty", "" },
|
{ "", "default:mese_crystal", "" },
|
||||||
{ "", "default:steel_ingot", "" },
|
{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }
|
||||||
},
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft( {
|
||||||
|
type = "shapeless",
|
||||||
|
output = "pipeworks:mese_tube_000000",
|
||||||
|
recipe = {
|
||||||
|
"pipeworks:tube_000000",
|
||||||
|
"default:mese_crystal_fragment",
|
||||||
|
"default:mese_crystal_fragment",
|
||||||
|
"default:mese_crystal_fragment",
|
||||||
|
"default:mese_crystal_fragment"
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft( {
|
||||||
|
output = "pipeworks:entry_panel 2",
|
||||||
|
recipe = {
|
||||||
|
{ "", "default:steel_ingot", "" },
|
||||||
|
{ "", "pipeworks:pipe_110000_empty", "" },
|
||||||
|
{ "", "default:steel_ingot", "" },
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user