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.
import crafttweaker.api.recipe.type.StonecutterRecipe;
Extends
StonecutterRecipe extends SingleItemRecipe
.
Implements
StonecutterRecipe
implements the following interfaces:
Members
canCraftInDimensions(var1 as int, var2 as int) as bool
// StonecutterRecipe.canCraftInDimensions(var1 as int, var2 as int) as bool;myStonecutterRecipe.canCraftInDimensions(myInt, myInt);
Parameters:
var1: int
Type: int
var2: int
Type: int
Return Type:
bool
Getter
// StonecutterRecipe.group as stringmyStonecutterRecipe.group
Return Type:
string
group() as string
// StonecutterRecipe.group() as string;myStonecutterRecipe.group();
Return Type:
string
Getter
myStonecutterRecipe.ingredients
Return Type:
List<IIngredient>
ingredients() as List<IIngredient>
Getter
// StonecutterRecipe.isIncomplete as boolmyStonecutterRecipe.isIncomplete
Return Type:
bool
isIncomplete() as bool
// StonecutterRecipe.isIncomplete() as bool;myStonecutterRecipe.isIncomplete();
Return Type:
bool
Getter
// StonecutterRecipe.isSpecial as boolmyStonecutterRecipe.isSpecial
Return Type:
bool
isSpecial() as bool
// StonecutterRecipe.isSpecial() as bool;myStonecutterRecipe.isSpecial();
Return Type:
bool
Getter
// StonecutterRecipe.resultItem as IItemStackmyStonecutterRecipe.resultItem
Return Type:
IItemStack
resultItem() as IItemStack