Powered Thingies :: Item Compound Producer
Importing
import mods.poweredthingies.Tweaker.itemCompoundProducerTweaker as icp;
Listing Keys, Removing Recipes by Key, Clearing
icp().logKeys()icp().removeRecipe('minecraft:mossy_cobblestone') // check <logKeys> output for valid keysicp().clear()
Adding Recipe
Signature
addRecipe(inputStack: IItemStack, inputFluid: ILiquidStack, result: IItemStack)
Example
icp().addRecipe(<minecraft:cobblestone>, <liquid:water> * 125, <minecraft:mossy_cobblestone>);
Notes
All of these actions will get cached and ran after the default registry for this machine has finished registering all recipes (including the ones from the custom jsons).