Recipe
Link to recipe
Импорт класса
Link to импорт-класса
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;
Методы
Link to методы
Name: canCraftInDimensions
Return Type: boolean
ZenScript CopyRecipe.canCraftInDimensions(var1 as int, var2 as int) as boolean
Параметр | Тип |
---|---|
Параметр var1 | Тип int |
Параметр var2 | Тип 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();
Свойства
Link to свойства
Название | Тип | Имеет Getter | Имеет Setter |
---|---|---|---|
Название group | Тип string | Имеет Getter true | Имеет Setter false |
Название id | Тип ResourceLocation | Имеет Getter true | Имеет Setter false |
Название ingredients | Тип stdlib.List<IIngredient> | Имеет Getter true | Имеет Setter false |
Название isIncomplete | Тип boolean | Имеет Getter true | Имеет Setter false |
Название isSpecial | Тип boolean | Имеет Getter true | Имеет Setter false |
Название resultItem | Тип IItemStack | Имеет Getter true | Имеет Setter false |
Название toastSymbol | Тип ItemStack | Имеет Getter true | Имеет Setter false |