Crafting and Crafting

This commit is contained in:
ConfidentOwl 2022-12-27 22:01:18 +03:00
parent 56edaf2eba
commit 94c1ed1b15
1 changed files with 10 additions and 0 deletions

View File

@ -100,4 +100,14 @@ minetest.register_node("owl_tech:steam_quarry", {
set_formspect_steam_quarry(meta)
timer:start(0.2)
end
})
--Crafte controller
minetest.register_craft({
type = "shaped",
output = "owl_tech:steam_quarry",
recipe = {
{"owl_tech:bronze_plate","owl_tech:bronze_plate","owl_tech:bronze_plate"},
{"owl_tech:bronze_plate","owl_tech:bronze_frames","owl_tech:bronze_plate"},
{"owl_tech:steam_vertical_miner","owl_tech:steam_vertical_miner","owl_tech:steam_vertical_miner"}
}
})