MillingRecipe

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

Extends

MillingRecipe extends AbstractCrushingRecipe.

Implements

MillingRecipe implements the following interfaces:

Recipe<Container>

Members

Getter
script.zs
// MillingRecipe.fluidIngredients as List<FluidIngredient>
myMillingRecipe.fluidIngredients

Return Type: List<FluidIngredient>

fluidIngredients() as List<FluidIngredient>
script.zs
// MillingRecipe.fluidIngredients() as List<FluidIngredient>;
myMillingRecipe.fluidIngredients();

Return Type: List<FluidIngredient>

Getter
script.zs
// MillingRecipe.fluidResults as List<IFluidStack>
myMillingRecipe.fluidResults

Return Type: List<IFluidStack>

fluidResults() as List<IFluidStack>
script.zs
// MillingRecipe.fluidResults() as List<IFluidStack>;
myMillingRecipe.fluidResults();

Return Type: List<IFluidStack>

Getter
script.zs
// MillingRecipe.processingDuration as int
myMillingRecipe.processingDuration

Return Type: int

processingDuration() as int
script.zs
// MillingRecipe.processingDuration() as int;
myMillingRecipe.processingDuration();

Return Type: int

Getter
script.zs
// MillingRecipe.requiredHeat as HeatCondition
myMillingRecipe.requiredHeat

Return Type: HeatCondition

requiredHeat() as HeatCondition
script.zs
// MillingRecipe.requiredHeat() as HeatCondition;
myMillingRecipe.requiredHeat();

Return Type: HeatCondition

Getter
script.zs
// MillingRecipe.rollableResults as List<ProcessingOutput>
myMillingRecipe.rollableResults

Return Type: List<ProcessingOutput>

rollableResults() as List<ProcessingOutput>
script.zs
// MillingRecipe.rollableResults() as List<ProcessingOutput>;
myMillingRecipe.rollableResults();

Return Type: List<ProcessingOutput>

Getter
script.zs
// MillingRecipe.rollableResultsAsItemStacks as List<IItemStack>
myMillingRecipe.rollableResultsAsItemStacks

Return Type: List<IItemStack>

rollableResultsAsItemStacks() as List<IItemStack>
script.zs
// MillingRecipe.rollableResultsAsItemStacks() as List<IItemStack>;
myMillingRecipe.rollableResultsAsItemStacks();

Return Type: List<IItemStack>

rollResults() as List<IItemStack>
script.zs
// MillingRecipe.rollResults() as List<IItemStack>;
myMillingRecipe.rollResults();

Return Type: List<IItemStack>