PressingRecipe

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

Extends

PressingRecipe extends ProcessingRecipe<RecipeWrapper>.

Implements

PressingRecipe implements the following interfaces:

IAssemblyRecipe,Recipe<Container>

Members

Getter
script.zs
// PressingRecipe.fluidIngredients as List<FluidIngredient>
myPressingRecipe.fluidIngredients

Return Type: List<FluidIngredient>

fluidIngredients() as List<FluidIngredient>
script.zs
// PressingRecipe.fluidIngredients() as List<FluidIngredient>;
myPressingRecipe.fluidIngredients();

Return Type: List<FluidIngredient>

Getter
script.zs
// PressingRecipe.fluidResults as List<IFluidStack>
myPressingRecipe.fluidResults

Return Type: List<IFluidStack>

fluidResults() as List<IFluidStack>
script.zs
// PressingRecipe.fluidResults() as List<IFluidStack>;
myPressingRecipe.fluidResults();

Return Type: List<IFluidStack>

Getter
script.zs
// PressingRecipe.processingDuration as int
myPressingRecipe.processingDuration

Return Type: int

processingDuration() as int
script.zs
// PressingRecipe.processingDuration() as int;
myPressingRecipe.processingDuration();

Return Type: int

Getter
script.zs
// PressingRecipe.requiredHeat as HeatCondition
myPressingRecipe.requiredHeat

Return Type: HeatCondition

requiredHeat() as HeatCondition
script.zs
// PressingRecipe.requiredHeat() as HeatCondition;
myPressingRecipe.requiredHeat();

Return Type: HeatCondition

Getter
script.zs
// PressingRecipe.rollableResults as List<ProcessingOutput>
myPressingRecipe.rollableResults

Return Type: List<ProcessingOutput>

rollableResults() as List<ProcessingOutput>
script.zs
// PressingRecipe.rollableResults() as List<ProcessingOutput>;
myPressingRecipe.rollableResults();

Return Type: List<ProcessingOutput>

Getter
script.zs
// PressingRecipe.rollableResultsAsItemStacks as List<IItemStack>
myPressingRecipe.rollableResultsAsItemStacks

Return Type: List<IItemStack>

rollableResultsAsItemStacks() as List<IItemStack>
script.zs
// PressingRecipe.rollableResultsAsItemStacks() as List<IItemStack>;
myPressingRecipe.rollableResultsAsItemStacks();

Return Type: List<IItemStack>

rollResults() as List<IItemStack>
script.zs
// PressingRecipe.rollResults() as List<IItemStack>;
myPressingRecipe.rollResults();

Return Type: List<IItemStack>

Getter
Does this recipe support being used in assembly processing.
script.zs
// PressingRecipe.supportsAssembly as bool
myPressingRecipe.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
// PressingRecipe.supportsAssembly() as bool;
myPressingRecipe.supportsAssembly();

Return Type: bool