Powered Thingies :: Powder Maker
Link to powered-thingies--powder-maker
Importing
Link to importing
ZenScript Copyimport mods.poweredthingies.Tweaker.powderMakerTweaker as pmt;
Listing Keys, Removing Recipes by Key, Clearing
Link to listing-keys-removing-recipes-by-key-clearing
ZenScript Copypmt().logKeys()
pmt().removeRecipe('minecraft:gravel') // check <logKeys> output for valid keys
pmt().clear()
Adding Recipe
Link to adding-recipe
Signature
Link to signature
ZenScript CopyaddRecipe(input: IItemStack, outputs: Array<WeightedItemStack>)
Пример
Link to пример
ZenScript Copypmt().addRecipe(<minecraft:bucket>, [<minecraft:iron_ingot> % 100, <minecraft:iron_ingot> % 12, <minecraft:iron_ingot> % 12]);
Notes
Link to 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).