SmokingRecipe

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

Extends

SmokingRecipe extends AbstractCookingRecipe.

Implements

SmokingRecipe implements the following interfaces:

Recipe<Container>

Members

canCraftInDimensions(var1 as int, var2 as int) as bool
script.zs
// SmokingRecipe.canCraftInDimensions(var1 as int, var2 as int) as bool;
mySmokingRecipe.canCraftInDimensions(myInt, myInt);

Parameters:

var1 Type: int
var2 Type: int

Return Type: bool

Getter
script.zs
// SmokingRecipe.cookingTime as int
mySmokingRecipe.cookingTime

Return Type: int

cookingTime() as int
script.zs
// SmokingRecipe.cookingTime() as int;
mySmokingRecipe.cookingTime();

Return Type: int

Getter
script.zs
// SmokingRecipe.experience as float
mySmokingRecipe.experience

Return Type: float

experience() as float
script.zs
// SmokingRecipe.experience() as float;
mySmokingRecipe.experience();

Return Type: float

Getter
script.zs
// SmokingRecipe.group as string
mySmokingRecipe.group

Return Type: string

group() as string
script.zs
// SmokingRecipe.group() as string;
mySmokingRecipe.group();

Return Type: string

Getter
script.zs
// SmokingRecipe.ingredients as List<IIngredient>
mySmokingRecipe.ingredients

Return Type: List<IIngredient>

ingredients() as List<IIngredient>
script.zs
// SmokingRecipe.ingredients() as List<IIngredient>;
mySmokingRecipe.ingredients();

Return Type: List<IIngredient>

Getter
script.zs
// SmokingRecipe.isIncomplete as bool
mySmokingRecipe.isIncomplete

Return Type: bool

isIncomplete() as bool
script.zs
// SmokingRecipe.isIncomplete() as bool;
mySmokingRecipe.isIncomplete();

Return Type: bool

Getter
script.zs
// SmokingRecipe.isSpecial as bool
mySmokingRecipe.isSpecial

Return Type: bool

isSpecial() as bool
script.zs
// SmokingRecipe.isSpecial() as bool;
mySmokingRecipe.isSpecial();

Return Type: bool

Getter
script.zs
// SmokingRecipe.resultItem as IItemStack
mySmokingRecipe.resultItem

Return Type: IItemStack

resultItem() as IItemStack
script.zs
// SmokingRecipe.resultItem() as IItemStack;
mySmokingRecipe.resultItem();

Return Type: IItemStack

Getter
script.zs
// SmokingRecipe.toastSymbol as ItemStack
mySmokingRecipe.toastSymbol

Return Type: ItemStack

toastSymbol() as ItemStack
script.zs
// SmokingRecipe.toastSymbol() as ItemStack;
mySmokingRecipe.toastSymbol();

Return Type: ItemStack