craft_recipe - Uberi/MineTest-API GitHub Wiki

craft_recipe

Description

A recipe usable in the crafting grid to craft items.

Syntax

-- 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,
}
⚠️ **GitHub.com Fallback** ⚠️