Powered Thingies :: Incinerator

Link to powered-thingies--incinerator

ZenScript
Copy
import mods.poweredthingies.Tweaker.incineratorTweaker as it;

Listing Keys, Removing Recipes by Key, Clearing

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

ZenScript
Copy
it().logKeys()
it().removeRecipe('minecraft:log') // check <logKeys> output for valid keys
it().clear()
ZenScript
Copy
addRecipe(input: IItemStack, power: Long, outputs: Array<WeightedItemStack>)

power represents the total number of power units (RF, T, or FE) the input item will generate.

ZenScript
Copy
it().addRecipe(<minecraft:bucket>, 3600, [<minecraft:iron_ingot> % 15]);

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