Powered Thingies :: Item Compound Producer

Link to powered-thingies--item-compound-producer

ZenScript
Copy
import mods.poweredthingies.Tweaker.itemCompoundProducerTweaker as icp;

Listing Keys, Removing Recipes by Key, Clearing

Link to listing-keys-removing-recipes-by-key-clearing

ZenScript
Copy
icp().logKeys()
icp().removeRecipe('minecraft:mossy_cobblestone') // check <logKeys> output for valid keys 
icp().clear()
ZenScript
Copy
addRecipe(inputStack: IItemStack, inputFluid: ILiquidStack, result: IItemStack)
ZenScript
Copy
icp().addRecipe(<minecraft:cobblestone>, <liquid:water> * 125, <minecraft:mossy_cobblestone>);

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).