craft_recipe - Uberi/MineTest-API GitHub Wiki
A recipe usable in the crafting grid to craft items.
-- shapeless
{
output = 'default:pick_stone',
recipe = {
{'default:cobble', 'default:cobble', 'default:cobble'},
{'', 'default:stick', ''},
{'', 'default:stick', ''}, -- Also groups; eg. 'group:crumbly'
},
replacements =
}
-- tool repair
{
type = "toolrepair",
additional_wear = -0.02,
}
-- cooking
{
type = "cooking",
output = "default:glass",
recipe = "default:sand",
cooktime = 3,
}
-- fuel
{
type = "fuel",
recipe = "default:leaves",
burntime = 1,
}