SmeltingRecipe

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

Extends

SmeltingRecipe extends AbstractCookingRecipe.

Implements

SmeltingRecipe implements the following interfaces:

Recipe<Container>

Members

canCraftInDimensions(var1 as int, var2 as int) as bool
script.zs
// SmeltingRecipe.canCraftInDimensions(var1 as int, var2 as int) as bool;
mySmeltingRecipe.canCraftInDimensions(myInt, myInt);

Parameters:

var1 Type: int
var2 Type: int

Return Type: bool

Getter
script.zs
// SmeltingRecipe.cookingTime as int
mySmeltingRecipe.cookingTime

Return Type: int

cookingTime() as int
script.zs
// SmeltingRecipe.cookingTime() as int;
mySmeltingRecipe.cookingTime();

Return Type: int

Getter
script.zs
// SmeltingRecipe.experience as float
mySmeltingRecipe.experience

Return Type: float

experience() as float
script.zs
// SmeltingRecipe.experience() as float;
mySmeltingRecipe.experience();

Return Type: float

Getter
script.zs
// SmeltingRecipe.group as string
mySmeltingRecipe.group

Return Type: string

group() as string
script.zs
// SmeltingRecipe.group() as string;
mySmeltingRecipe.group();

Return Type: string

Getter
script.zs
// SmeltingRecipe.ingredients as List<IIngredient>
mySmeltingRecipe.ingredients

Return Type: List<IIngredient>

ingredients() as List<IIngredient>
script.zs
// SmeltingRecipe.ingredients() as List<IIngredient>;
mySmeltingRecipe.ingredients();

Return Type: List<IIngredient>

Getter
script.zs
// SmeltingRecipe.isIncomplete as bool
mySmeltingRecipe.isIncomplete

Return Type: bool

isIncomplete() as bool
script.zs
// SmeltingRecipe.isIncomplete() as bool;
mySmeltingRecipe.isIncomplete();

Return Type: bool

Getter
script.zs
// SmeltingRecipe.isSpecial as bool
mySmeltingRecipe.isSpecial

Return Type: bool

isSpecial() as bool
script.zs
// SmeltingRecipe.isSpecial() as bool;
mySmeltingRecipe.isSpecial();

Return Type: bool

Getter
script.zs
// SmeltingRecipe.resultItem as IItemStack
mySmeltingRecipe.resultItem

Return Type: IItemStack

resultItem() as IItemStack
script.zs
// SmeltingRecipe.resultItem() as IItemStack;
mySmeltingRecipe.resultItem();

Return Type: IItemStack

Getter
script.zs
// SmeltingRecipe.toastSymbol as ItemStack
mySmeltingRecipe.toastSymbol

Return Type: ItemStack

toastSymbol() as ItemStack
script.zs
// SmeltingRecipe.toastSymbol() as ItemStack;
mySmeltingRecipe.toastSymbol();

Return Type: ItemStack