ItemApplicationRecipe

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

Extends

ItemApplicationRecipe extends ProcessingRecipe<RecipeWrapper>.

Implements

ItemApplicationRecipe implements the following interfaces:

Recipe<Container>

Members

Getter
script.zs
// ItemApplicationRecipe.fluidIngredients as List<FluidIngredient>
myItemApplicationRecipe.fluidIngredients

Return Type: List<FluidIngredient>

fluidIngredients() as List<FluidIngredient>
script.zs
// ItemApplicationRecipe.fluidIngredients() as List<FluidIngredient>;
myItemApplicationRecipe.fluidIngredients();

Return Type: List<FluidIngredient>

Getter
script.zs
// ItemApplicationRecipe.fluidResults as List<IFluidStack>
myItemApplicationRecipe.fluidResults

Return Type: List<IFluidStack>

fluidResults() as List<IFluidStack>
script.zs
// ItemApplicationRecipe.fluidResults() as List<IFluidStack>;
myItemApplicationRecipe.fluidResults();

Return Type: List<IFluidStack>

Getter
Gets the processed Item.
script.zs
// ItemApplicationRecipe.processedItem as IIngredient
myItemApplicationRecipe.processedItem

Return Type: IIngredient

processedItem() as IIngredient
Gets the processed Item.

Returns: The processed Item.

script.zs
// ItemApplicationRecipe.processedItem() as IIngredient;
myItemApplicationRecipe.processedItem();

Return Type: IIngredient

Getter
script.zs
// ItemApplicationRecipe.processingDuration as int
myItemApplicationRecipe.processingDuration

Return Type: int

processingDuration() as int
script.zs
// ItemApplicationRecipe.processingDuration() as int;
myItemApplicationRecipe.processingDuration();

Return Type: int

Getter
script.zs
// ItemApplicationRecipe.requiredHeat as HeatCondition
myItemApplicationRecipe.requiredHeat

Return Type: HeatCondition

requiredHeat() as HeatCondition
script.zs
// ItemApplicationRecipe.requiredHeat() as HeatCondition;
myItemApplicationRecipe.requiredHeat();

Return Type: HeatCondition

Getter
Gets the required held item.
script.zs
// ItemApplicationRecipe.requiredHeldItem as IIngredient
myItemApplicationRecipe.requiredHeldItem

Return Type: IIngredient

requiredHeldItem() as IIngredient
Gets the required held item.

Returns: The required held item.

script.zs
// ItemApplicationRecipe.requiredHeldItem() as IIngredient;
myItemApplicationRecipe.requiredHeldItem();

Return Type: IIngredient

Getter
script.zs
// ItemApplicationRecipe.rollableResults as List<ProcessingOutput>
myItemApplicationRecipe.rollableResults

Return Type: List<ProcessingOutput>

rollableResults() as List<ProcessingOutput>
script.zs
// ItemApplicationRecipe.rollableResults() as List<ProcessingOutput>;
myItemApplicationRecipe.rollableResults();

Return Type: List<ProcessingOutput>

Getter
script.zs
// ItemApplicationRecipe.rollableResultsAsItemStacks as List<IItemStack>
myItemApplicationRecipe.rollableResultsAsItemStacks

Return Type: List<IItemStack>

rollableResultsAsItemStacks() as List<IItemStack>
script.zs
// ItemApplicationRecipe.rollableResultsAsItemStacks() as List<IItemStack>;
myItemApplicationRecipe.rollableResultsAsItemStacks();

Return Type: List<IItemStack>

rollResults() as List<IItemStack>
script.zs
// ItemApplicationRecipe.rollResults() as List<IItemStack>;
myItemApplicationRecipe.rollResults();

Return Type: List<IItemStack>

Getter
Should the recipe keep the held item?
script.zs
// ItemApplicationRecipe.shouldKeepHeldItem as bool
myItemApplicationRecipe.shouldKeepHeldItem

Return Type: bool

shouldKeepHeldItem() as bool
Should the recipe keep the held item?

Returns: True if the recipe keeps the held item. False otherwise.

script.zs
// ItemApplicationRecipe.shouldKeepHeldItem() as bool;
myItemApplicationRecipe.shouldKeepHeldItem();

Return Type: bool