Powered Thingies :: Powder Maker

Link to powered-thingies--powder-maker

ZenScript
Copy
import mods.poweredthingies.Tweaker.powderMakerTweaker as pmt;

Listing Keys, Removing Recipes by Key, Clearing

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

ZenScript
Copy
pmt().logKeys()
pmt().removeRecipe('minecraft:gravel') // check <logKeys> output for valid keys
pmt().clear()
ZenScript
Copy
addRecipe(input: IItemStack, outputs: Array<WeightedItemStack>)
ZenScript
Copy
pmt().addRecipe(<minecraft:bucket>, [<minecraft:iron_ingot> % 100, <minecraft:iron_ingot> % 12, <minecraft:iron_ingot> % 12]);

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