FillingRecipe

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

Extends

FillingRecipe extends ProcessingRecipe<RecipeWrapper>.

Implements

FillingRecipe implements the following interfaces:

IAssemblyRecipe,Recipe<Container>

Members

Getter
script.zs
// FillingRecipe.fluidIngredients as List<FluidIngredient>
myFillingRecipe.fluidIngredients

Return Type: List<FluidIngredient>

fluidIngredients() as List<FluidIngredient>
script.zs
// FillingRecipe.fluidIngredients() as List<FluidIngredient>;
myFillingRecipe.fluidIngredients();

Return Type: List<FluidIngredient>

Getter
script.zs
// FillingRecipe.fluidResults as List<IFluidStack>
myFillingRecipe.fluidResults

Return Type: List<IFluidStack>

fluidResults() as List<IFluidStack>
script.zs
// FillingRecipe.fluidResults() as List<IFluidStack>;
myFillingRecipe.fluidResults();

Return Type: List<IFluidStack>

Getter
script.zs
// FillingRecipe.processingDuration as int
myFillingRecipe.processingDuration

Return Type: int

processingDuration() as int
script.zs
// FillingRecipe.processingDuration() as int;
myFillingRecipe.processingDuration();

Return Type: int

Getter
script.zs
// FillingRecipe.requiredFluid as FluidIngredient
myFillingRecipe.requiredFluid

Return Type: FluidIngredient

requiredFluid() as FluidIngredient
script.zs
// FillingRecipe.requiredFluid() as FluidIngredient;
myFillingRecipe.requiredFluid();

Return Type: FluidIngredient

Getter
script.zs
// FillingRecipe.requiredHeat as HeatCondition
myFillingRecipe.requiredHeat

Return Type: HeatCondition

requiredHeat() as HeatCondition
script.zs
// FillingRecipe.requiredHeat() as HeatCondition;
myFillingRecipe.requiredHeat();

Return Type: HeatCondition

Getter
script.zs
// FillingRecipe.rollableResults as List<ProcessingOutput>
myFillingRecipe.rollableResults

Return Type: List<ProcessingOutput>

rollableResults() as List<ProcessingOutput>
script.zs
// FillingRecipe.rollableResults() as List<ProcessingOutput>;
myFillingRecipe.rollableResults();

Return Type: List<ProcessingOutput>

Getter
script.zs
// FillingRecipe.rollableResultsAsItemStacks as List<IItemStack>
myFillingRecipe.rollableResultsAsItemStacks

Return Type: List<IItemStack>

rollableResultsAsItemStacks() as List<IItemStack>
script.zs
// FillingRecipe.rollableResultsAsItemStacks() as List<IItemStack>;
myFillingRecipe.rollableResultsAsItemStacks();

Return Type: List<IItemStack>

rollResults() as List<IItemStack>
script.zs
// FillingRecipe.rollResults() as List<IItemStack>;
myFillingRecipe.rollResults();

Return Type: List<IItemStack>

Getter
Does this recipe support being used in assembly processing.
script.zs
// FillingRecipe.supportsAssembly as bool
myFillingRecipe.supportsAssembly

Return Type: bool

supportsAssembly() as bool
Does this recipe support being used in assembly processing.

Returns: True if it is supported. False otherwise.

script.zs
// FillingRecipe.supportsAssembly() as bool;
myFillingRecipe.supportsAssembly();

Return Type: bool