CrushingRecipe

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

Extends

CrushingRecipe extends AbstractCrushingRecipe.

Implements

CrushingRecipe implements the following interfaces:

Recipe<Container>

Members

Getter
script.zs
// CrushingRecipe.fluidIngredients as List<FluidIngredient>
myCrushingRecipe.fluidIngredients

Return Type: List<FluidIngredient>

fluidIngredients() as List<FluidIngredient>
script.zs
// CrushingRecipe.fluidIngredients() as List<FluidIngredient>;
myCrushingRecipe.fluidIngredients();

Return Type: List<FluidIngredient>

Getter
script.zs
// CrushingRecipe.fluidResults as List<IFluidStack>
myCrushingRecipe.fluidResults

Return Type: List<IFluidStack>

fluidResults() as List<IFluidStack>
script.zs
// CrushingRecipe.fluidResults() as List<IFluidStack>;
myCrushingRecipe.fluidResults();

Return Type: List<IFluidStack>

Getter
script.zs
// CrushingRecipe.processingDuration as int
myCrushingRecipe.processingDuration

Return Type: int

processingDuration() as int
script.zs
// CrushingRecipe.processingDuration() as int;
myCrushingRecipe.processingDuration();

Return Type: int

Getter
script.zs
// CrushingRecipe.requiredHeat as HeatCondition
myCrushingRecipe.requiredHeat

Return Type: HeatCondition

requiredHeat() as HeatCondition
script.zs
// CrushingRecipe.requiredHeat() as HeatCondition;
myCrushingRecipe.requiredHeat();

Return Type: HeatCondition

Getter
script.zs
// CrushingRecipe.rollableResults as List<ProcessingOutput>
myCrushingRecipe.rollableResults

Return Type: List<ProcessingOutput>

rollableResults() as List<ProcessingOutput>
script.zs
// CrushingRecipe.rollableResults() as List<ProcessingOutput>;
myCrushingRecipe.rollableResults();

Return Type: List<ProcessingOutput>

Getter
script.zs
// CrushingRecipe.rollableResultsAsItemStacks as List<IItemStack>
myCrushingRecipe.rollableResultsAsItemStacks

Return Type: List<IItemStack>

rollableResultsAsItemStacks() as List<IItemStack>
script.zs
// CrushingRecipe.rollableResultsAsItemStacks() as List<IItemStack>;
myCrushingRecipe.rollableResultsAsItemStacks();

Return Type: List<IItemStack>

rollResults() as List<IItemStack>
script.zs
// CrushingRecipe.rollResults() as List<IItemStack>;
myCrushingRecipe.rollResults();

Return Type: List<IItemStack>