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.
import mods.createtweaker.ItemApplicationRecipe;
Extends
ItemApplicationRecipe extends ProcessingRecipe<RecipeWrapper>
.
Implements
ItemApplicationRecipe
implements the following interfaces:
Members
Getter
myItemApplicationRecipe.fluidIngredients
Return Type:
List<FluidIngredient>
fluidIngredients() as List<FluidIngredient>
Getter
myItemApplicationRecipe.fluidResults
Return Type:
List<IFluidStack>
fluidResults() as List<IFluidStack>
Getter
Gets the processed Item.script.zs
// ItemApplicationRecipe.processedItem as IIngredientmyItemApplicationRecipe.processedItem
Return Type:
IIngredient
processedItem() as IIngredient
Gets the processed Item.script.zs
Returns: The processed Item.
myItemApplicationRecipe.processedItem();
Return Type:
IIngredient
Getter
// ItemApplicationRecipe.processingDuration as intmyItemApplicationRecipe.processingDuration
Return Type:
int
processingDuration() as int
// ItemApplicationRecipe.processingDuration() as int;myItemApplicationRecipe.processingDuration();
Return Type:
int
Getter
// ItemApplicationRecipe.requiredHeat as HeatConditionmyItemApplicationRecipe.requiredHeat
Return Type:
HeatCondition
requiredHeat() as HeatCondition
Getter
Gets the required held item.script.zs
// ItemApplicationRecipe.requiredHeldItem as IIngredientmyItemApplicationRecipe.requiredHeldItem
Return Type:
IIngredient
requiredHeldItem() as IIngredient
Gets the required held item.script.zs
Returns: The required held item.
myItemApplicationRecipe.requiredHeldItem();
Return Type:
IIngredient
Getter
myItemApplicationRecipe.rollableResults
Return Type:
List<ProcessingOutput>
rollableResults() as List<ProcessingOutput>
Getter
myItemApplicationRecipe.rollableResultsAsItemStacks
Return Type:
List<IItemStack>
rollableResultsAsItemStacks() as List<IItemStack>
rollResults() as List<IItemStack>
Getter
Should the recipe keep the held item?script.zs
// ItemApplicationRecipe.shouldKeepHeldItem as boolmyItemApplicationRecipe.shouldKeepHeldItem
Return Type:
bool
shouldKeepHeldItem() as bool
Should the recipe keep the held item?script.zs
Returns: True if the recipe keeps the held item. False otherwise.
// ItemApplicationRecipe.shouldKeepHeldItem() as bool;myItemApplicationRecipe.shouldKeepHeldItem();
Return Type:
bool