

	mods.jei.JEI.removeAndHide();

	recipes.removeByRecipeName("");

	<minecraft:chest>.displayName = "";

recipes.addShaped("ct_",output,	[
	[null, null, null],
	[null, null, null],
	[null, null, null]]);


//Recommended 1.12 syntax
recipes.addShapeless(name,output,inputs,function,action);

mods.betterwithmods.Anvil.addShaped(<minecraft:dirt>, [
	[null, null, null, null],
	[null, null, null, null],
	[null, null, null, null],
	[null, null, null, null]]);


mods.betterwithmods.Crucible.addStoked(IIngredient[] inputs, IItemStack[] outputs);


mods.primal.Smelter.addRecipe(
    String recipe_name, 
    int cook_time, 
    IIngredient[] item_inputs, 
    IItemStack[] item_outputs
);

recipes.addShapeless("name",out,[in]);













