SmithingRecipe

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

Implements

SmithingRecipe implements the following interfaces:

Recipe<Container>

Members

canCraftInDimensions(var1 as int, var2 as int) as bool
script.zs
// SmithingRecipe.canCraftInDimensions(var1 as int, var2 as int) as bool;
mySmithingRecipe.canCraftInDimensions(myInt, myInt);

Parameters:

var1 Type: int
var2 Type: int

Return Type: bool

Getter
script.zs
// SmithingRecipe.group as string
mySmithingRecipe.group

Return Type: string

group() as string
script.zs
// SmithingRecipe.group() as string;
mySmithingRecipe.group();

Return Type: string

Getter
script.zs
// SmithingRecipe.ingredients as List<IIngredient>
mySmithingRecipe.ingredients

Return Type: List<IIngredient>

ingredients() as List<IIngredient>
script.zs
// SmithingRecipe.ingredients() as List<IIngredient>;
mySmithingRecipe.ingredients();

Return Type: List<IIngredient>

Getter
script.zs
// SmithingRecipe.isIncomplete as bool
mySmithingRecipe.isIncomplete

Return Type: bool

isIncomplete() as bool
script.zs
// SmithingRecipe.isIncomplete() as bool;
mySmithingRecipe.isIncomplete();

Return Type: bool

Getter
script.zs
// SmithingRecipe.isSpecial as bool
mySmithingRecipe.isSpecial

Return Type: bool

isSpecial() as bool
script.zs
// SmithingRecipe.isSpecial() as bool;
mySmithingRecipe.isSpecial();

Return Type: bool

Getter
script.zs
// SmithingRecipe.resultItem as IItemStack
mySmithingRecipe.resultItem

Return Type: IItemStack

resultItem() as IItemStack
script.zs
// SmithingRecipe.resultItem() as IItemStack;
mySmithingRecipe.resultItem();

Return Type: IItemStack

Getter
script.zs
// SmithingRecipe.toastSymbol as ItemStack
mySmithingRecipe.toastSymbol

Return Type: ItemStack

toastSymbol() as ItemStack
script.zs
// SmithingRecipe.toastSymbol() as ItemStack;
mySmithingRecipe.toastSymbol();

Return Type: ItemStack