Powered Thingies :: Item Liquefier
Link to powered-thingies--item-liquefier
Importing
Link to importing
ZenScript Copyimport mods.poweredthingies.Tweaker.itemLiquefierTweaker as ilt;
Listing Keys, Removing Recipes by Key, Clearing
Link to listing-keys-removing-recipes-by-key-clearing
ZenScript Copyilt().logKeys()
ilt().removeRecipe('liquid:fluid_lava') // check <logKeys> output for valid keys
ilt().clear()
Adding Recipe
Link to adding-recipe
Signature
Link to signature
ZenScript CopyaddRecipe(input: IItemStack, output: ILiquidStack)
Пример
Link to пример
ZenScript Copyilt().addRecipe(<minecraft:bucket>, <liquid:lava> * 125);
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).