BlastingRecipe

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

Extends

BlastingRecipe extends AbstractCookingRecipe.

Implements

BlastingRecipe implements the following interfaces:

Recipe<Container>

Members

canCraftInDimensions(var1 as int, var2 as int) as bool
script.zs
// BlastingRecipe.canCraftInDimensions(var1 as int, var2 as int) as bool;
myBlastingRecipe.canCraftInDimensions(myInt, myInt);

Parameters:

var1 Type: int
var2 Type: int

Return Type: bool

Getter
script.zs
// BlastingRecipe.cookingTime as int
myBlastingRecipe.cookingTime

Return Type: int

cookingTime() as int
script.zs
// BlastingRecipe.cookingTime() as int;
myBlastingRecipe.cookingTime();

Return Type: int

Getter
script.zs
// BlastingRecipe.experience as float
myBlastingRecipe.experience

Return Type: float

experience() as float
script.zs
// BlastingRecipe.experience() as float;
myBlastingRecipe.experience();

Return Type: float

Getter
script.zs
// BlastingRecipe.group as string
myBlastingRecipe.group

Return Type: string

group() as string
script.zs
// BlastingRecipe.group() as string;
myBlastingRecipe.group();

Return Type: string

Getter
script.zs
// BlastingRecipe.id as ResourceLocation
myBlastingRecipe.id

Return Type: ResourceLocation

id() as ResourceLocation
script.zs
// BlastingRecipe.id() as ResourceLocation;
myBlastingRecipe.id();

Return Type: ResourceLocation

Getter
script.zs
// BlastingRecipe.ingredients as List<IIngredient>
myBlastingRecipe.ingredients

Return Type: List<IIngredient>

ingredients() as List<IIngredient>
script.zs
// BlastingRecipe.ingredients() as List<IIngredient>;
myBlastingRecipe.ingredients();

Return Type: List<IIngredient>

Getter
script.zs
// BlastingRecipe.isIncomplete as bool
myBlastingRecipe.isIncomplete

Return Type: bool

isIncomplete() as bool
script.zs
// BlastingRecipe.isIncomplete() as bool;
myBlastingRecipe.isIncomplete();

Return Type: bool

Getter
script.zs
// BlastingRecipe.isSpecial as bool
myBlastingRecipe.isSpecial

Return Type: bool

isSpecial() as bool
script.zs
// BlastingRecipe.isSpecial() as bool;
myBlastingRecipe.isSpecial();

Return Type: bool

Getter
script.zs
// BlastingRecipe.resultItem as IItemStack
myBlastingRecipe.resultItem

Return Type: IItemStack

resultItem() as IItemStack
script.zs
// BlastingRecipe.resultItem() as IItemStack;
myBlastingRecipe.resultItem();

Return Type: IItemStack

Getter
script.zs
// BlastingRecipe.toastSymbol as ItemStack
myBlastingRecipe.toastSymbol

Return Type: ItemStack

toastSymbol() as ItemStack
script.zs
// BlastingRecipe.toastSymbol() as ItemStack;
myBlastingRecipe.toastSymbol();

Return Type: ItemStack