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.
import crafttweaker.api.recipe.type.AbstractCookingRecipe;
Implements
AbstractCookingRecipe
implements the following interfaces:
Members
canCraftInDimensions(var1 as int, var2 as int) as bool
// AbstractCookingRecipe.canCraftInDimensions(var1 as int, var2 as int) as bool;myAbstractCookingRecipe.canCraftInDimensions(myInt, myInt);
Parameters:
var1: int
Type: int
var2: int
Type: int
Return Type:
bool
Getter
// AbstractCookingRecipe.cookingTime as intmyAbstractCookingRecipe.cookingTime
Return Type:
int
cookingTime() as int
// AbstractCookingRecipe.cookingTime() as int;myAbstractCookingRecipe.cookingTime();
Return Type:
int
Getter
// AbstractCookingRecipe.experience as floatmyAbstractCookingRecipe.experience
Return Type:
float
experience() as float
// AbstractCookingRecipe.experience() as float;myAbstractCookingRecipe.experience();
Return Type:
float
Getter
// AbstractCookingRecipe.group as stringmyAbstractCookingRecipe.group
Return Type:
string
group() as string
// AbstractCookingRecipe.group() as string;myAbstractCookingRecipe.group();
Return Type:
string
Getter
myAbstractCookingRecipe.ingredients
Return Type:
List<IIngredient>
ingredients() as List<IIngredient>
Getter
// AbstractCookingRecipe.isIncomplete as boolmyAbstractCookingRecipe.isIncomplete
Return Type:
bool
isIncomplete() as bool
// AbstractCookingRecipe.isIncomplete() as bool;myAbstractCookingRecipe.isIncomplete();
Return Type:
bool
Getter
// AbstractCookingRecipe.isSpecial as boolmyAbstractCookingRecipe.isSpecial
Return Type:
bool
isSpecial() as bool
// AbstractCookingRecipe.isSpecial() as bool;myAbstractCookingRecipe.isSpecial();
Return Type:
bool
Getter
// AbstractCookingRecipe.resultItem as IItemStackmyAbstractCookingRecipe.resultItem
Return Type:
IItemStack
resultItem() as IItemStack