StonecutterRecipe

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

Extends

StonecutterRecipe extends SingleItemRecipe.

Implements

StonecutterRecipe implements the following interfaces:

Recipe<Container>

Members

canCraftInDimensions(var1 as int, var2 as int) as bool
script.zs
// StonecutterRecipe.canCraftInDimensions(var1 as int, var2 as int) as bool;
myStonecutterRecipe.canCraftInDimensions(myInt, myInt);

Parameters:

var1 Type: int
var2 Type: int

Return Type: bool

Getter
script.zs
// StonecutterRecipe.group as string
myStonecutterRecipe.group

Return Type: string

group() as string
script.zs
// StonecutterRecipe.group() as string;
myStonecutterRecipe.group();

Return Type: string

Getter
script.zs
// StonecutterRecipe.ingredients as List<IIngredient>
myStonecutterRecipe.ingredients

Return Type: List<IIngredient>

ingredients() as List<IIngredient>
script.zs
// StonecutterRecipe.ingredients() as List<IIngredient>;
myStonecutterRecipe.ingredients();

Return Type: List<IIngredient>

Getter
script.zs
// StonecutterRecipe.isIncomplete as bool
myStonecutterRecipe.isIncomplete

Return Type: bool

isIncomplete() as bool
script.zs
// StonecutterRecipe.isIncomplete() as bool;
myStonecutterRecipe.isIncomplete();

Return Type: bool

Getter
script.zs
// StonecutterRecipe.isSpecial as bool
myStonecutterRecipe.isSpecial

Return Type: bool

isSpecial() as bool
script.zs
// StonecutterRecipe.isSpecial() as bool;
myStonecutterRecipe.isSpecial();

Return Type: bool

Getter
script.zs
// StonecutterRecipe.resultItem as IItemStack
myStonecutterRecipe.resultItem

Return Type: IItemStack

resultItem() as IItemStack
script.zs
// StonecutterRecipe.resultItem() as IItemStack;
myStonecutterRecipe.resultItem();

Return Type: IItemStack

Getter
script.zs
// StonecutterRecipe.toastSymbol as ItemStack
myStonecutterRecipe.toastSymbol

Return Type: ItemStack

toastSymbol() as ItemStack
script.zs
// StonecutterRecipe.toastSymbol() as ItemStack;
myStonecutterRecipe.toastSymbol();

Return Type: ItemStack