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();
名称 | 类型 | 可获得 | 可设置 |
---|---|---|---|
名称 group | 类型 string | 可获得 true | 可设置 false |
名称 id | 类型 资源位置 | 可获得 true | 可设置 false |
名称 ingredients | 类型 stdlib.List<IIngredient> | 可获得 true | 可设置 false |
名称 isIncomplete | 类型 布尔值 | 可获得 true | 可设置 false |
名称 isSpecial | 类型 布尔值 | 可获得 true | 可设置 false |
名称 resultItem | 类型 IItemstack | 可获得 true | 可设置 false |
名称 toastSymbol | 类型 物品应用 | 可获得 true | 可设置 false |