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