Casting Table
A “machine” that can cast blocks, ingots, plates, or rods from liquids.
Import
import mods.foundry.CastingTable;
Methods
Replace X
with Block
, Ingot
, Plate
, or Rod
depending on the type of casting table you want to manipulate.
// Adds a recipe with input liquid and output item to the specified casting table typeCastingTable.addXRecipe(IItemStack output, ILiquidStack input);
// Removes a recipe with input liquid from the specified casting table typeCastingTable.removeXRecipe(ILiquidStack input);
// Clears all recipes from the specified casting table typeCastingTable.clearXs();
// Clears all recipes from all casting table typesCastingTable.clearAll();