SplashingRecipe

Importing the class

If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.

script.zs
import mods.createtweaker.SplashingRecipe;

Extends

SplashingRecipe extends ProcessingRecipe<SplashingWrapper>.

Implements

SplashingRecipe implements the following interfaces:

Recipe<Container>

Members

Getter
script.zs
// SplashingRecipe.fluidIngredients as List<FluidIngredient>
mySplashingRecipe.fluidIngredients

Return Type: List<FluidIngredient>

fluidIngredients() as List<FluidIngredient>
script.zs
// SplashingRecipe.fluidIngredients() as List<FluidIngredient>;
mySplashingRecipe.fluidIngredients();

Return Type: List<FluidIngredient>

Getter
script.zs
// SplashingRecipe.fluidResults as List<IFluidStack>
mySplashingRecipe.fluidResults

Return Type: List<IFluidStack>

fluidResults() as List<IFluidStack>
script.zs
// SplashingRecipe.fluidResults() as List<IFluidStack>;
mySplashingRecipe.fluidResults();

Return Type: List<IFluidStack>

Getter
script.zs
// SplashingRecipe.processingDuration as int
mySplashingRecipe.processingDuration

Return Type: int

processingDuration() as int
script.zs
// SplashingRecipe.processingDuration() as int;
mySplashingRecipe.processingDuration();

Return Type: int

Getter
script.zs
// SplashingRecipe.requiredHeat as HeatCondition
mySplashingRecipe.requiredHeat

Return Type: HeatCondition

requiredHeat() as HeatCondition
script.zs
// SplashingRecipe.requiredHeat() as HeatCondition;
mySplashingRecipe.requiredHeat();

Return Type: HeatCondition

Getter
script.zs
// SplashingRecipe.rollableResults as List<ProcessingOutput>
mySplashingRecipe.rollableResults

Return Type: List<ProcessingOutput>

rollableResults() as List<ProcessingOutput>
script.zs
// SplashingRecipe.rollableResults() as List<ProcessingOutput>;
mySplashingRecipe.rollableResults();

Return Type: List<ProcessingOutput>

Getter
script.zs
// SplashingRecipe.rollableResultsAsItemStacks as List<IItemStack>
mySplashingRecipe.rollableResultsAsItemStacks

Return Type: List<IItemStack>

rollableResultsAsItemStacks() as List<IItemStack>
script.zs
// SplashingRecipe.rollableResultsAsItemStacks() as List<IItemStack>;
mySplashingRecipe.rollableResultsAsItemStacks();

Return Type: List<IItemStack>

rollResults() as List<IItemStack>
script.zs
// SplashingRecipe.rollResults() as List<IItemStack>;
mySplashingRecipe.rollResults();

Return Type: List<IItemStack>