Powered Thingies :: Compound Maker
Importing
import mods.poweredthingies.Tweaker.compoundTweaker as ct;
Listing Keys, Removing Recipes by Key, Clearing
ct().logKeys()ct().removeRecipe('minecraft:stone') // check <logKeys> output for valid keysct().clear()
Adding Recipe
Signature
addRecipe(output: IItemStack, left: ILiquidStack?, top: Array<IItemStack>?, right: ILiquidStack?, bottom: Array<IItemStack>?)
Example
ct().addRecipe(<minecraft:obsidian>, <liquid:lava> * 250, [<minecraft:cobblestone>, <minecraft:cobblestone>], null, [<minecraft:cobblestone>, <minecraft: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).