Cracking CT - eerussianguy/firmalife GitHub Wiki
Cracking Crafttweaker support :
import mods.firmalife.Cracking;
// Cracking.addRecipe(IIngredient input, ItemStack output, float chance);
Cracking.addRecipe(<minecraft:stone>, <minecraft:dirt>, 0.5);
// Cracking.removeRecipe(string recipe_name);
// Cracking.removeRecipe(IItemStack output);
// you can remove by recipe name or by the Output.
Cracking.removeRecipe("firmalife:recipe_name");
Cracking.removeRecipe(<minecraft:leather>);