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.
import crafttweaker.api.recipe.type.SmithingRecipe;
Implements
SmithingRecipe
implements the following interfaces:
Members
canCraftInDimensions(var1 as int, var2 as int) as bool
// SmithingRecipe.canCraftInDimensions(var1 as int, var2 as int) as bool;mySmithingRecipe.canCraftInDimensions(myInt, myInt);
Parameters:
var1: int
Type: int
var2: int
Type: int
Return Type:
bool
Getter
// SmithingRecipe.group as stringmySmithingRecipe.group
Return Type:
string
group() as string
// SmithingRecipe.group() as string;mySmithingRecipe.group();
Return Type:
string
Getter
// SmithingRecipe.id as ResourceLocationmySmithingRecipe.id
Return Type:
ResourceLocation
id() as ResourceLocation
Getter
mySmithingRecipe.ingredients
Return Type:
List<IIngredient>
ingredients() as List<IIngredient>
Getter
// SmithingRecipe.isIncomplete as boolmySmithingRecipe.isIncomplete
Return Type:
bool
isIncomplete() as bool
// SmithingRecipe.isIncomplete() as bool;mySmithingRecipe.isIncomplete();
Return Type:
bool
Getter
// SmithingRecipe.isSpecial as boolmySmithingRecipe.isSpecial
Return Type:
bool
isSpecial() as bool
// SmithingRecipe.isSpecial() as bool;mySmithingRecipe.isSpecial();
Return Type:
bool
Getter
// SmithingRecipe.resultItem as IItemStackmySmithingRecipe.resultItem
Return Type:
IItemStack
resultItem() as IItemStack