Mold Crafting Station
A machine that can create molds.
Import
import mods.foundry.MoldStation;
Methods
// Adds a recipe with input grid, dimensions of the grid, and an output item/cast to the mold stationMoldStation.addRecipe(IItemStack output, int width, int height, int[] grid);
// Removes a recipe with the given grid from the mold stationMoldStation.removeRecipe(int[] grid);
// Removes a recipe with the given output item/cast from the mold stationMoldStation.removeRecipe(IItemStack output);
// Clears all recipes from the mold stationCasting.clear();