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;
ItemApplicationRecipe extends ProcessingRecipe <RecipeWrapper >
.
ItemApplicationRecipe
implements the following interfaces:
Recipe <Container >
myItemApplicationRecipe . fluidIngredients
Return Type:
List <FluidIngredient >
myItemApplicationRecipe . fluidIngredients();
Return Type:
List <FluidIngredient >
// ItemApplicationRecipe.fluidResults as List< IFluidStack > myItemApplicationRecipe . fluidResults
Return Type:
List <IFluidStack >
// ItemApplicationRecipe.fluidResults() as List< IFluidStack >; myItemApplicationRecipe . fluidResults();
Return Type:
List <IFluidStack >
Gets the processed Item. myItemApplicationRecipe . processedItem
Return Type:
IIngredient
Gets the processed Item. Returns : The processed Item.
// ItemApplicationRecipe.processedItem() as IIngredient ; myItemApplicationRecipe . processedItem();
Return Type:
IIngredient
// ItemApplicationRecipe.processingDuration as int
myItemApplicationRecipe . processingDuration
Return Type:
int
// ItemApplicationRecipe.processingDuration() as int;
myItemApplicationRecipe . processingDuration();
Return Type:
int
myItemApplicationRecipe . requiredHeat();
Return Type:
HeatCondition
Gets the required held item. // ItemApplicationRecipe.requiredHeldItem as IIngredient myItemApplicationRecipe . requiredHeldItem
Return Type:
IIngredient
Gets the required held item. Returns : The required held item.
// ItemApplicationRecipe.requiredHeldItem() as IIngredient ; myItemApplicationRecipe . requiredHeldItem();
Return Type:
IIngredient
// ItemApplicationRecipe.rollableResultsAsItemStacks as List< IItemStack > myItemApplicationRecipe . rollableResultsAsItemStacks
Return Type:
List <IItemStack >
// ItemApplicationRecipe.rollableResultsAsItemStacks() as List< IItemStack >; myItemApplicationRecipe . rollableResultsAsItemStacks();
Return Type:
List <IItemStack >
// ItemApplicationRecipe.rollResults() as List< IItemStack >; myItemApplicationRecipe . rollResults();
Return Type:
List <IItemStack >
Should the recipe keep the held item? // ItemApplicationRecipe.shouldKeepHeldItem as bool
myItemApplicationRecipe . shouldKeepHeldItem
Return Type:
bool
Should the recipe keep the held item? Returns : True if the recipe keeps the held item. False otherwise.
// ItemApplicationRecipe.shouldKeepHeldItem() as bool;
myItemApplicationRecipe . shouldKeepHeldItem();
Return Type:
bool