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;
AbstractCookingRecipe
implements the following interfaces:
Recipe <Container >
// 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
// AbstractCookingRecipe.cookingTime as int
myAbstractCookingRecipe . cookingTime
Return Type:
int
// AbstractCookingRecipe.cookingTime() as int;
myAbstractCookingRecipe . cookingTime();
Return Type:
int
// AbstractCookingRecipe.experience as float
myAbstractCookingRecipe . experience
Return Type:
float
// AbstractCookingRecipe.experience() as float;
myAbstractCookingRecipe . experience();
Return Type:
float
// AbstractCookingRecipe.group as string
myAbstractCookingRecipe . group
Return Type:
string
// AbstractCookingRecipe.group() as string;
myAbstractCookingRecipe . group();
Return Type:
string
// AbstractCookingRecipe.ingredients as List<IIngredient>
myAbstractCookingRecipe . ingredients
Return Type:
List <IIngredient >
// AbstractCookingRecipe.ingredients() as List<IIngredient>;
myAbstractCookingRecipe . ingredients();
Return Type:
List <IIngredient >
// AbstractCookingRecipe.isIncomplete as bool
myAbstractCookingRecipe . isIncomplete
Return Type:
bool
// AbstractCookingRecipe.isIncomplete() as bool;
myAbstractCookingRecipe . isIncomplete();
Return Type:
bool
// AbstractCookingRecipe.isSpecial as bool
myAbstractCookingRecipe . isSpecial
Return Type:
bool
// AbstractCookingRecipe.isSpecial() as bool;
myAbstractCookingRecipe . isSpecial();
Return Type:
bool
// AbstractCookingRecipe.resultItem as IItemStack
myAbstractCookingRecipe . resultItem
Return Type:
IItemStack
// AbstractCookingRecipe.resultItem() as IItemStack;
myAbstractCookingRecipe . resultItem();
Return Type:
IItemStack
// AbstractCookingRecipe.toastSymbol as ItemStack
myAbstractCookingRecipe . toastSymbol
Return Type:
ItemStack
// AbstractCookingRecipe.toastSymbol() as ItemStack;
myAbstractCookingRecipe . toastSymbol();
Return Type:
ItemStack