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.
import crafttweaker.api.recipe.type.SmokingRecipe;
Extends
SmokingRecipe extends AbstractCookingRecipe
.
Implements
SmokingRecipe
implements the following interfaces:
Members
canCraftInDimensions(var1 as int, var2 as int) as bool
// SmokingRecipe.canCraftInDimensions(var1 as int, var2 as int) as bool;mySmokingRecipe.canCraftInDimensions(myInt, myInt);
Parameters:
var1: int
Type: int
var2: int
Type: int
Return Type:
bool
Getter
// SmokingRecipe.cookingTime as intmySmokingRecipe.cookingTime
Return Type:
int
cookingTime() as int
// SmokingRecipe.cookingTime() as int;mySmokingRecipe.cookingTime();
Return Type:
int
Getter
// SmokingRecipe.experience as floatmySmokingRecipe.experience
Return Type:
float
experience() as float
// SmokingRecipe.experience() as float;mySmokingRecipe.experience();
Return Type:
float
Getter
// SmokingRecipe.group as stringmySmokingRecipe.group
Return Type:
string
group() as string
// SmokingRecipe.group() as string;mySmokingRecipe.group();
Return Type:
string
Getter
mySmokingRecipe.ingredients
Return Type:
List<IIngredient>
ingredients() as List<IIngredient>
Getter
// SmokingRecipe.isIncomplete as boolmySmokingRecipe.isIncomplete
Return Type:
bool
isIncomplete() as bool
// SmokingRecipe.isIncomplete() as bool;mySmokingRecipe.isIncomplete();
Return Type:
bool
Getter
// SmokingRecipe.isSpecial as boolmySmokingRecipe.isSpecial
Return Type:
bool
isSpecial() as bool
// SmokingRecipe.isSpecial() as bool;mySmokingRecipe.isSpecial();
Return Type:
bool
Getter
// SmokingRecipe.resultItem as IItemStackmySmokingRecipe.resultItem
Return Type:
IItemStack
resultItem() as IItemStack