ICookingRecipeManager

Link to icookingrecipemanager

Default interface for Registry based handlers as they can all remove recipes by ResourceLocation.

这个类由mod-id为crafttweaker的模组添加. 因此,如果要使用此功能,则需要安装此mod。

如果遇到任何问题(例如强制转换数组),则可能需要导入软件包,因此,最好的方式就是导入包支持。

ZenScript
Copy
crafttweaker.api.registries.ICookingRecipeManager

已实现的接口

Link to 已实现的接口

ICookingRecipeManager implements the following interfaces. 这意味着对这个接口可用的任何方法也可以在此类上使用。

addJSONRecipe #添加JSON配方

Link to addjsonrecipe-添加json配方

基于提供的IData添加配方 提供的 IData 应该代表一个JSON数据包 ,这有效地允许您注册任何支持 IRecipeType 系统的 DataPack配方。

ZenScript
Copy
furnace.addJSONRecipe(name as String, data as crafttweaker.api.data.IData);
furnace.addJSONRecipe("recipe_name", {ingredient:{item:<item:minecraft:gold_ore>.registryName},result:<item:minecraft:cooked_porkchop>.registryName,experience:0.35 as float, cookingtime:100});
参数类型描述
参数
name(名称)
类型
字符串[string]
描述
name of the recipe
参数
data
类型
crafttweaker.api.data.IData
描述
data representing the json file

addRecipe #添加合成表

Link to addrecipe-添加合成表

添加基于给定参数的合成表

ZenScript
Copy
furnace.addRecipe(name as String, output as crafttweaker.api.item.IItemStack, input as crafttweaker.api.item.IIngredient, xp as float, cookTime as int);
furnace.addRecipe("wool2diamond", <item:diamond>, <tag:minecraft:wool>, 1.0, 0);
参数类型描述
参数
name(名称)
类型
字符串[string]
描述
新的合成表名称
参数
output(输出)
类型
crafttweaker.api.item.IItemStack
描述
合成表的输出物品id
参数
input(输入)
类型
crafttweaker.api.item.IIngredient
描述
合成表的输入成分
参数
xp (经验值)
类型
float
描述
玩家获得多少经验
参数
cookTime #烧制时间
类型
int
描述
烧制需要多长时间

Remove all recipes in this registry

ZenScript
Copy
furnace.removeAll();

Remove recipe based on Registry name modid

ZenScript
Copy
furnace.removeByModid(modid as String);
furnace.removeByModid("minecraft");
参数类型描述
参数
modid
类型
字符串[string]
描述
modid of the recipes to remove

Remove recipe based on Registry name

ZenScript
Copy
furnace.removeByName(name as String);
furnace.removeByName("minecraft:furnace");
参数类型描述
参数
name(名称)
类型
字符串[string]
描述
registry name of recipe to remove

Remove recipe based on regex

ZenScript
Copy
furnace.removeByRegex(regex as String);
furnace.removeByRegex("\\d_\\d");
参数类型描述
参数
regex
类型
字符串[string]
描述
regex to match against

Remove a recipe based on it's output.

ZenScript
Copy
furnace.removeRecipe(output as crafttweaker.api.item.IItemStack);
furnace.removeRecipe(<item:minecraft:glass>);
参数类型描述
参数
output(输出)
类型
crafttweaker.api.item.IItemStack
描述
output of the recipe

移除基于输出和输入的合成表

ZenScript
Copy
furnace.removeRecipe(output as crafttweaker.api.item.IItemStack, input as crafttweaker.api.item.IIngredient);
furnace.removeRecipe(<item:minecraft:diamond>, <tag:minecraft:wool>);
参数类型描述
参数
output(输出)
类型
crafttweaker.api.item.IItemStack
描述
合成表的输出物品id.
参数
input(输入)
类型
crafttweaker.api.item.IIngredient
描述
要移除的配方的成分。