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