ManualApplicationRecipe
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.ManualApplicationRecipe;
Extends
ManualApplicationRecipe extends ItemApplicationRecipe
.
Implements
ManualApplicationRecipe
implements the following interfaces:
Members
Getter
myManualApplicationRecipe.fluidIngredients
Return Type:
List<FluidIngredient>
fluidIngredients() as List<FluidIngredient>
Getter
myManualApplicationRecipe.fluidResults
Return Type:
List<IFluidStack>
fluidResults() as List<IFluidStack>
Getter
Gets the processed Item.script.zs
// ManualApplicationRecipe.processedItem as IIngredientmyManualApplicationRecipe.processedItem
Return Type:
IIngredient
processedItem() as IIngredient
Gets the processed Item.script.zs
Returns: The processed Item.
myManualApplicationRecipe.processedItem();
Return Type:
IIngredient
Getter
// ManualApplicationRecipe.processingDuration as intmyManualApplicationRecipe.processingDuration
Return Type:
int
processingDuration() as int
// ManualApplicationRecipe.processingDuration() as int;myManualApplicationRecipe.processingDuration();
Return Type:
int
Getter
// ManualApplicationRecipe.requiredHeat as HeatConditionmyManualApplicationRecipe.requiredHeat
Return Type:
HeatCondition
requiredHeat() as HeatCondition
Getter
Gets the required held item.script.zs
// ManualApplicationRecipe.requiredHeldItem as IIngredientmyManualApplicationRecipe.requiredHeldItem
Return Type:
IIngredient
requiredHeldItem() as IIngredient
Gets the required held item.script.zs
Returns: The required held item.
myManualApplicationRecipe.requiredHeldItem();
Return Type:
IIngredient
Getter
myManualApplicationRecipe.rollableResults
Return Type:
List<ProcessingOutput>
rollableResults() as List<ProcessingOutput>
Getter
myManualApplicationRecipe.rollableResultsAsItemStacks
Return Type:
List<IItemStack>
rollableResultsAsItemStacks() as List<IItemStack>
rollResults() as List<IItemStack>
Getter
Should the recipe keep the held item?script.zs
// ManualApplicationRecipe.shouldKeepHeldItem as boolmyManualApplicationRecipe.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.
// ManualApplicationRecipe.shouldKeepHeldItem() as bool;myManualApplicationRecipe.shouldKeepHeldItem();
Return Type:
bool