CampfireCookingRecipe

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

Extends

CampfireCookingRecipe extends AbstractCookingRecipe.

Implements

CampfireCookingRecipe implements the following interfaces:

Recipe<SingleRecipeInput>

Members

canCraftInDimensions(var1 as int, var2 as int) as bool
script.zs
// CampfireCookingRecipe.canCraftInDimensions(var1 as int, var2 as int) as bool;
myCampfireCookingRecipe.canCraftInDimensions(myInt, myInt);

Parameters:

var1 Type: int
var2 Type: int

Return Type: bool

Getter
script.zs
// CampfireCookingRecipe.cookingTime as int
myCampfireCookingRecipe.cookingTime

Return Type: int

cookingTime() as int
script.zs
// CampfireCookingRecipe.cookingTime() as int;
myCampfireCookingRecipe.cookingTime();

Return Type: int

Getter
script.zs
// CampfireCookingRecipe.experience as float
myCampfireCookingRecipe.experience

Return Type: float

experience() as float
script.zs
// CampfireCookingRecipe.experience() as float;
myCampfireCookingRecipe.experience();

Return Type: float

Getter
script.zs
// CampfireCookingRecipe.group as string
myCampfireCookingRecipe.group

Return Type: string

group() as string
script.zs
// CampfireCookingRecipe.group() as string;
myCampfireCookingRecipe.group();

Return Type: string

Getter
script.zs
// CampfireCookingRecipe.ingredients as List<IIngredient>
myCampfireCookingRecipe.ingredients

Return Type: List<IIngredient>

ingredients() as List<IIngredient>
script.zs
// CampfireCookingRecipe.ingredients() as List<IIngredient>;
myCampfireCookingRecipe.ingredients();

Return Type: List<IIngredient>

Getter
script.zs
// CampfireCookingRecipe.isIncomplete as bool
myCampfireCookingRecipe.isIncomplete

Return Type: bool

isIncomplete() as bool
script.zs
// CampfireCookingRecipe.isIncomplete() as bool;
myCampfireCookingRecipe.isIncomplete();

Return Type: bool

Getter
script.zs
// CampfireCookingRecipe.isSpecial as bool
myCampfireCookingRecipe.isSpecial

Return Type: bool

isSpecial() as bool
script.zs
// CampfireCookingRecipe.isSpecial() as bool;
myCampfireCookingRecipe.isSpecial();

Return Type: bool

Getter
script.zs
// CampfireCookingRecipe.resultItem as IItemStack
myCampfireCookingRecipe.resultItem

Return Type: IItemStack

resultItem() as IItemStack
script.zs
// CampfireCookingRecipe.resultItem() as IItemStack;
myCampfireCookingRecipe.resultItem();

Return Type: IItemStack

Getter
script.zs
// CampfireCookingRecipe.toastSymbol as ItemStack
myCampfireCookingRecipe.toastSymbol

Return Type: ItemStack

toastSymbol() as ItemStack
script.zs
// CampfireCookingRecipe.toastSymbol() as ItemStack;
myCampfireCookingRecipe.toastSymbol();

Return Type: ItemStack