Nut CT - eerussianguy/firmalife GitHub Wiki

Nut Crafttweaker support:

import mods.firmalife.Nut;

// Nut.addRecipe(string recipe_name, IItemStack log, IItemStack leaf, ItemStack output);
// /!\ It uses the IItemStack bracket but the Log and the Leaf must be a block! It will crash if you give it non blocks.
Nut.addRecipe("test", <firmalife:oven>, <minecraft:dirt>, <firmalife:cinnamon_fence>);

// Nut.removeRecipe(string recipe_name);
// Nut.removeRecipe(IItemStack output);
// you can remove by a recipe name or by an Output.
Nut.removeRecipe("firmalife:recipe_name");
Nut.removeRecipe(<minecraft:leather>);