The Crucible is a machine that converts an input item into an output fluid using steam.

mods.steamagerevolution.Crucible

  • ILiquidStack output The result of the recipe.
  • IIngredient input The input of the recipe.
  • int craftTime Crafting time for machine to process
  • int steamCost Cost of Steam for machine to process
ZenScript
Copy
mods.steamagerevolution.Crucible.addRecipe(IIngredient input, ILiquidStack output, int craftTime, int steamCost);
mods.steamagerevolution.Crucible.addRecipe(<minecraft:obsidian>, <liquid:lava>*1000, 200, 200);
ZenScript
Copy
mods.steamagerevolution.Crucible.removeRecipe(ILiquidStack);
mods.steamagerevolution.Crucible.removeRecipe(<liquid:lava>);

mods.steamagerevolution.Crucible.removeAll();