Recipe
Link to recipe
Importing the class
Link to importing-the-class
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 Copyimport crafttweaker.api.recipe.type.Recipe;
Methods
Link to methods
Name: canCraftInDimensions
Return Type: boolean
ZenScript CopyRecipe.canCraftInDimensions(var1 as int, var2 as int) as boolean
Parameter | Type | Description |
---|---|---|
Parameter var1 | Type int | Description No Description Provided |
Parameter var2 | Type int | Description No Description Provided |
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();
Properties
Link to properties
Nombre | Type | Has Getter | Has Setter | Description |
---|---|---|---|---|
Nombre group | Type string | Has Getter true | Has Setter false | Description No Description Provided |
Nombre id | Type ResourceLocation | Has Getter true | Has Setter false | Description No Description Provided |
Nombre ingredients | Type stdlib.List<IIngredient> | Has Getter true | Has Setter false | Description No Description Provided |
Nombre isIncomplete | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Nombre isSpecial | Type boolean | Has Getter true | Has Setter false | Description No Description Provided |
Nombre resultItem | Type IItemStack | Has Getter true | Has Setter false | Description No Description Provided |
Nombre toastSymbol | Type Pila de objetos | Has Getter true | Has Setter false | Description No Description Provided |