DeployerApplicationRecipe

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

Extends

DeployerApplicationRecipe extends ItemApplicationRecipe.

Implements

DeployerApplicationRecipe implements the following interfaces:

IAssemblyRecipe,Recipe<Container>

Members

Getter
script.zs
// DeployerApplicationRecipe.fluidIngredients as List<FluidIngredient>
myDeployerApplicationRecipe.fluidIngredients

Return Type: List<FluidIngredient>

fluidIngredients() as List<FluidIngredient>
script.zs
// DeployerApplicationRecipe.fluidIngredients() as List<FluidIngredient>;
myDeployerApplicationRecipe.fluidIngredients();

Return Type: List<FluidIngredient>

Getter
script.zs
// DeployerApplicationRecipe.fluidResults as List<IFluidStack>
myDeployerApplicationRecipe.fluidResults

Return Type: List<IFluidStack>

fluidResults() as List<IFluidStack>
script.zs
// DeployerApplicationRecipe.fluidResults() as List<IFluidStack>;
myDeployerApplicationRecipe.fluidResults();

Return Type: List<IFluidStack>

Getter
Gets the processed Item.
script.zs
// DeployerApplicationRecipe.processedItem as IIngredient
myDeployerApplicationRecipe.processedItem

Return Type: IIngredient

processedItem() as IIngredient
Gets the processed Item.

Returns: The processed Item.

script.zs
// DeployerApplicationRecipe.processedItem() as IIngredient;
myDeployerApplicationRecipe.processedItem();

Return Type: IIngredient

Getter
script.zs
// DeployerApplicationRecipe.processingDuration as int
myDeployerApplicationRecipe.processingDuration

Return Type: int

processingDuration() as int
script.zs
// DeployerApplicationRecipe.processingDuration() as int;
myDeployerApplicationRecipe.processingDuration();

Return Type: int

Getter
script.zs
// DeployerApplicationRecipe.requiredHeat as HeatCondition
myDeployerApplicationRecipe.requiredHeat

Return Type: HeatCondition

requiredHeat() as HeatCondition
script.zs
// DeployerApplicationRecipe.requiredHeat() as HeatCondition;
myDeployerApplicationRecipe.requiredHeat();

Return Type: HeatCondition

Getter
Gets the required held item.
script.zs
// DeployerApplicationRecipe.requiredHeldItem as IIngredient
myDeployerApplicationRecipe.requiredHeldItem

Return Type: IIngredient

requiredHeldItem() as IIngredient
Gets the required held item.

Returns: The required held item.

script.zs
// DeployerApplicationRecipe.requiredHeldItem() as IIngredient;
myDeployerApplicationRecipe.requiredHeldItem();

Return Type: IIngredient

Getter
script.zs
// DeployerApplicationRecipe.rollableResults as List<ProcessingOutput>
myDeployerApplicationRecipe.rollableResults

Return Type: List<ProcessingOutput>

rollableResults() as List<ProcessingOutput>
script.zs
// DeployerApplicationRecipe.rollableResults() as List<ProcessingOutput>;
myDeployerApplicationRecipe.rollableResults();

Return Type: List<ProcessingOutput>

Getter
script.zs
// DeployerApplicationRecipe.rollableResultsAsItemStacks as List<IItemStack>
myDeployerApplicationRecipe.rollableResultsAsItemStacks

Return Type: List<IItemStack>

rollableResultsAsItemStacks() as List<IItemStack>
script.zs
// DeployerApplicationRecipe.rollableResultsAsItemStacks() as List<IItemStack>;
myDeployerApplicationRecipe.rollableResultsAsItemStacks();

Return Type: List<IItemStack>

rollResults() as List<IItemStack>
script.zs
// DeployerApplicationRecipe.rollResults() as List<IItemStack>;
myDeployerApplicationRecipe.rollResults();

Return Type: List<IItemStack>

Getter
Should the recipe keep the held item?
script.zs
// DeployerApplicationRecipe.shouldKeepHeldItem as bool
myDeployerApplicationRecipe.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
// DeployerApplicationRecipe.shouldKeepHeldItem() as bool;
myDeployerApplicationRecipe.shouldKeepHeldItem();

Return Type: bool

Getter
Does this recipe support being used in assembly processing.
script.zs
// DeployerApplicationRecipe.supportsAssembly as bool
myDeployerApplicationRecipe.supportsAssembly

Return Type: bool

supportsAssembly() as bool
Does this recipe support being used in assembly processing.

Returns: True if it is supported. False otherwise.

script.zs
// DeployerApplicationRecipe.supportsAssembly() as bool;
myDeployerApplicationRecipe.supportsAssembly();

Return Type: bool