//合金炉
//添加合成

mods.metallurgy,Alloyer.addRecipe(<minecraft:water_bucket>,<minecraft:lava_bucket>,<minecraft:obsidian>);

mods.metallurgy.Alloyer.addRecipe(输入物品1 , 输入物品2 , 输出物品);

//删除合成

mods.metallurgy.Alloyer.removeRecipe(<Metallurgy:bronze.ingot>);

mods.metallurgy.Alloyer.removeRecipe(输出物品);


//碎石机

//添加合成

mods.metallurgy.Crusher.addRecipe(<minecraft:cactus>, <minecraft:dye:2>);
mods.metallurgy.Crusher.addRecipe(输入物品, 输出物品);

//删除合成

mods.metallurgy.Crusher.removeRecipe(<minecraft:iron_ore>);
mods.metallurgy.Crusher.removeRecipe(输入物品);