Planter CT - eerussianguy/firmalife GitHub Wiki
Planter Crafttweaker support:
It will search in the game files for textures under firmalife:textures/crops/(name)_(stage) from 0 -> max stage. This means you need a resource pack. The rest is taken care of for you
import mods.firmalife.Planter;
// Planter.addRecipe(IIngredient input, ItemStack output, int stages, boolean large);
Planter.addRecipe(<minecraft:stone>, <minecraft:dirt>, 5, false);
// Planter.removeRecipe(string recipe_name);
// Planter.removeRecipe(IItemStack output);
// you can remove by recipe name or by the Output.
Planter.removeRecipe("firmalife:recipe_name");
Planter.removeRecipe(<firmalife:something>);