Importare la Classe

Link to importare-la-classe

It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.

ZenScript
Copy
import crafttweaker.api.recipe.type.Recipe;

Link to canCraftInDimensions

Name: canCraftInDimensions

Return Type: boolean

ZenScript
Copy
Recipe.canCraftInDimensions(var1 as int, var2 as int) as boolean
ParametroTipo
Parametro
var1
Tipo
int
Parametro
var2
Tipo
int

Name: getGroup

Return Type: string

ZenScript
Copy
// Recipe.getGroup() as string

myRecipe.getGroup();

Name: getId

Return Type: ResourceLocation

ZenScript
Copy
// Recipe.getId() as ResourceLocation

myRecipe.getId();

Name: getIngredients

Return Type: stdlib.List<IIngredient>

ZenScript
Copy
// Recipe.getIngredients() as stdlib.List<IIngredient>

myRecipe.getIngredients();

Name: getResultItem

Return Type: IItemStack

ZenScript
Copy
// Recipe.getResultItem() as IItemStack

myRecipe.getResultItem();

Name: getToastSymbol

Return Type: ItemStack

ZenScript
Copy
// Recipe.getToastSymbol() as ItemStack

myRecipe.getToastSymbol();

Name: isIncomplete

Return Type: boolean

ZenScript
Copy
// Recipe.isIncomplete() as boolean

myRecipe.isIncomplete();

Name: isSpecial

Return Type: boolean

ZenScript
Copy
// Recipe.isSpecial() as boolean

myRecipe.isSpecial();
NomeTipoHa GetterHa Setter
Nome
gruppo
Tipo
string
Ha Getter
Ha Setter
no
Nome
id
Tipo
ResourceLocation
Ha Getter
Ha Setter
no
Nome
ingredients
Tipo
stdlib.List<IIngredient>
Ha Getter
Ha Setter
no
Nome
isIncomplete
Tipo
boolean
Ha Getter
Ha Setter
no
Nome
isSpecial
Tipo
boolean
Ha Getter
Ha Setter
no
Nome
resultItem
Tipo
IItemStack
Ha Getter
Ha Setter
no
Nome
toastSymbol
Tipo
ItemStack
Ha Getter
Ha Setter
no