Oven CT - eerussianguy/firmalife GitHub Wiki
Oven Crafttweaker support:
import mods.firmalife.Oven;
// Oven.addRecipe(string recipe_name, IIngredient input, ItemStack output, int duration);
Oven.addRecipe("test", <minecraft:stone>, <minecraft:dirt>, 2000);
// Oven.removeRecipe(string recipe_name);
// Oven.removeRecipe(IItemStack output);
// you can remove by recipe name or by the Output.
Oven.removeRecipe("firmalife:recipe_name");
Oven.removeRecipe(<firmalife:something>);