VoxeLibre/mods/ITEMS/mcl_cherry_blossom/crafting.lua

24 lines
661 B
Lua
Raw Normal View History

2023-04-30 23:18:53 +02:00
-- Crafting
minetest.register_craft({
output = "mcl_cherry_blossom:cherrytree_bark 3",
recipe = {
{ "mcl_cherry_blossom:cherrytree", "mcl_cherry_blossom:cherrytree" },
{ "mcl_cherry_blossom:cherrytree", "mcl_cherry_blossom:cherrytree" },
}
})
minetest.register_craft({
output = "mcl_cherry_blossom:stripped_cherrytree_bark 3",
recipe = {
{ "mcl_cherry_blossom:stripped_cherrytree", "mcl_cherry_blossom:stripped_cherrytree" },
{ "mcl_cherry_blossom:stripped_cherrytree", "mcl_cherry_blossom:stripped_cherrytree" },
}
})
minetest.register_craft({
output = "mcl_cherry_blossom:cherrywood 4",
recipe = {
{"mcl_cherry_blossom:cherrytree"},
}
})