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

mods.steamagerevolution.Distiller

  • ILiquidStack output The result of the recipe.
  • IItemStack output The result of the recipe.
  • ILiquidStack 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.Distiller.addRecipe(ILiquidStack input, IItemStack outputStack, ILiquidStack output, int craftTime, int steamCost);
mods.steamagerevolution.Distiller.addRecipe(<liquid:bio_fuel>*1000, <minecraft:dirt>, <liquid:ethanol>*1000, 200, 200);
ZenScript
Copy
mods.steamagerevolution.Distiller.removeRecipe(IItemStack outputStack, ILiquidStack output);
mods.steamagerevolution.Distiller.removeRecipe(<minecraft:cobblestone>, <liquid:lava>);

mods.steamagerevolution.Distiller.removeAll();
``