CuttingRecipe

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

Extends

CuttingRecipe extends ProcessingRecipe<RecipeWrapper>.

Implements

CuttingRecipe implements the following interfaces:

IAssemblyRecipe,Recipe<Container>

Members

Getter
script.zs
// CuttingRecipe.fluidIngredients as List<FluidIngredient>
myCuttingRecipe.fluidIngredients

Return Type: List<FluidIngredient>

fluidIngredients() as List<FluidIngredient>
script.zs
// CuttingRecipe.fluidIngredients() as List<FluidIngredient>;
myCuttingRecipe.fluidIngredients();

Return Type: List<FluidIngredient>

Getter
script.zs
// CuttingRecipe.fluidResults as List<IFluidStack>
myCuttingRecipe.fluidResults

Return Type: List<IFluidStack>

fluidResults() as List<IFluidStack>
script.zs
// CuttingRecipe.fluidResults() as List<IFluidStack>;
myCuttingRecipe.fluidResults();

Return Type: List<IFluidStack>

Getter
script.zs
// CuttingRecipe.processingDuration as int
myCuttingRecipe.processingDuration

Return Type: int

processingDuration() as int
script.zs
// CuttingRecipe.processingDuration() as int;
myCuttingRecipe.processingDuration();

Return Type: int

Getter
script.zs
// CuttingRecipe.requiredHeat as HeatCondition
myCuttingRecipe.requiredHeat

Return Type: HeatCondition

requiredHeat() as HeatCondition
script.zs
// CuttingRecipe.requiredHeat() as HeatCondition;
myCuttingRecipe.requiredHeat();

Return Type: HeatCondition

Getter
script.zs
// CuttingRecipe.rollableResults as List<ProcessingOutput>
myCuttingRecipe.rollableResults

Return Type: List<ProcessingOutput>

rollableResults() as List<ProcessingOutput>
script.zs
// CuttingRecipe.rollableResults() as List<ProcessingOutput>;
myCuttingRecipe.rollableResults();

Return Type: List<ProcessingOutput>

Getter
script.zs
// CuttingRecipe.rollableResultsAsItemStacks as List<IItemStack>
myCuttingRecipe.rollableResultsAsItemStacks

Return Type: List<IItemStack>

rollableResultsAsItemStacks() as List<IItemStack>
script.zs
// CuttingRecipe.rollableResultsAsItemStacks() as List<IItemStack>;
myCuttingRecipe.rollableResultsAsItemStacks();

Return Type: List<IItemStack>

rollResults() as List<IItemStack>
script.zs
// CuttingRecipe.rollResults() as List<IItemStack>;
myCuttingRecipe.rollResults();

Return Type: List<IItemStack>

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

Return Type: bool