AbstractCookingRecipe

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 crafttweaker.api.recipe.type.AbstractCookingRecipe;

Implements

AbstractCookingRecipe implements the following interfaces:

Recipe<Container>

Members

canCraftInDimensions(var1 as int, var2 as int) as bool
script.zs
// AbstractCookingRecipe.canCraftInDimensions(var1 as int, var2 as int) as bool;
myAbstractCookingRecipe.canCraftInDimensions(myInt, myInt);

Parameters:

var1 Type: int
var2 Type: int

Return Type: bool

Getter
script.zs
// AbstractCookingRecipe.cookingTime as int
myAbstractCookingRecipe.cookingTime

Return Type: int

cookingTime() as int
script.zs
// AbstractCookingRecipe.cookingTime() as int;
myAbstractCookingRecipe.cookingTime();

Return Type: int

Getter
script.zs
// AbstractCookingRecipe.experience as float
myAbstractCookingRecipe.experience

Return Type: float

experience() as float
script.zs
// AbstractCookingRecipe.experience() as float;
myAbstractCookingRecipe.experience();

Return Type: float

Getter
script.zs
// AbstractCookingRecipe.group as string
myAbstractCookingRecipe.group

Return Type: string

group() as string
script.zs
// AbstractCookingRecipe.group() as string;
myAbstractCookingRecipe.group();

Return Type: string

Getter
script.zs
// AbstractCookingRecipe.ingredients as List<IIngredient>
myAbstractCookingRecipe.ingredients

Return Type: List<IIngredient>

ingredients() as List<IIngredient>
script.zs
// AbstractCookingRecipe.ingredients() as List<IIngredient>;
myAbstractCookingRecipe.ingredients();

Return Type: List<IIngredient>

Getter
script.zs
// AbstractCookingRecipe.isIncomplete as bool
myAbstractCookingRecipe.isIncomplete

Return Type: bool

isIncomplete() as bool
script.zs
// AbstractCookingRecipe.isIncomplete() as bool;
myAbstractCookingRecipe.isIncomplete();

Return Type: bool

Getter
script.zs
// AbstractCookingRecipe.isSpecial as bool
myAbstractCookingRecipe.isSpecial

Return Type: bool

isSpecial() as bool
script.zs
// AbstractCookingRecipe.isSpecial() as bool;
myAbstractCookingRecipe.isSpecial();

Return Type: bool

Getter
script.zs
// AbstractCookingRecipe.resultItem as IItemStack
myAbstractCookingRecipe.resultItem

Return Type: IItemStack

resultItem() as IItemStack
script.zs
// AbstractCookingRecipe.resultItem() as IItemStack;
myAbstractCookingRecipe.resultItem();

Return Type: IItemStack

Getter
script.zs
// AbstractCookingRecipe.toastSymbol as ItemStack
myAbstractCookingRecipe.toastSymbol

Return Type: ItemStack

toastSymbol() as ItemStack
script.zs
// AbstractCookingRecipe.toastSymbol() as ItemStack;
myAbstractCookingRecipe.toastSymbol();

Return Type: ItemStack