EmptyingRecipe

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.EmptyingRecipe;

Extends

EmptyingRecipe extends ProcessingRecipe<RecipeWrapper>.

Implements

EmptyingRecipe implements the following interfaces:

Recipe<Container>

Members

Getter
script.zs
// EmptyingRecipe.fluidIngredients as List<FluidIngredient>
myEmptyingRecipe.fluidIngredients

Return Type: List<FluidIngredient>

fluidIngredients() as List<FluidIngredient>
script.zs
// EmptyingRecipe.fluidIngredients() as List<FluidIngredient>;
myEmptyingRecipe.fluidIngredients();

Return Type: List<FluidIngredient>

Getter
script.zs
// EmptyingRecipe.fluidResults as List<IFluidStack>
myEmptyingRecipe.fluidResults

Return Type: List<IFluidStack>

fluidResults() as List<IFluidStack>
script.zs
// EmptyingRecipe.fluidResults() as List<IFluidStack>;
myEmptyingRecipe.fluidResults();

Return Type: List<IFluidStack>

Getter
script.zs
// EmptyingRecipe.processingDuration as int
myEmptyingRecipe.processingDuration

Return Type: int

processingDuration() as int
script.zs
// EmptyingRecipe.processingDuration() as int;
myEmptyingRecipe.processingDuration();

Return Type: int

Getter
script.zs
// EmptyingRecipe.requiredHeat as HeatCondition
myEmptyingRecipe.requiredHeat

Return Type: HeatCondition

requiredHeat() as HeatCondition
script.zs
// EmptyingRecipe.requiredHeat() as HeatCondition;
myEmptyingRecipe.requiredHeat();

Return Type: HeatCondition

Getter
script.zs
// EmptyingRecipe.resultingFluid as IFluidStack
myEmptyingRecipe.resultingFluid

Return Type: IFluidStack

resultingFluid() as IFluidStack
script.zs
// EmptyingRecipe.resultingFluid() as IFluidStack;
myEmptyingRecipe.resultingFluid();

Return Type: IFluidStack

Getter
script.zs
// EmptyingRecipe.rollableResults as List<ProcessingOutput>
myEmptyingRecipe.rollableResults

Return Type: List<ProcessingOutput>

rollableResults() as List<ProcessingOutput>
script.zs
// EmptyingRecipe.rollableResults() as List<ProcessingOutput>;
myEmptyingRecipe.rollableResults();

Return Type: List<ProcessingOutput>

Getter
script.zs
// EmptyingRecipe.rollableResultsAsItemStacks as List<IItemStack>
myEmptyingRecipe.rollableResultsAsItemStacks

Return Type: List<IItemStack>

rollableResultsAsItemStacks() as List<IItemStack>
script.zs
// EmptyingRecipe.rollableResultsAsItemStacks() as List<IItemStack>;
myEmptyingRecipe.rollableResultsAsItemStacks();

Return Type: List<IItemStack>

rollResults() as List<IItemStack>
script.zs
// EmptyingRecipe.rollResults() as List<IItemStack>;
myEmptyingRecipe.rollResults();

Return Type: List<IItemStack>