StoneCutterManager
Link to stonecuttermanager
这个类由mod-id为crafttweaker
的模组添加. 因此,如果要使用此功能,则需要安装此mod。
导入类
Link to 导入类
如果遇到任何问题(例如强制转换数组),则可能需要导入软件包,因此,最好的方式就是导入包支持。
ZenScript Copycrafttweaker.api.StoneCutterManager
已实现的接口
Link to 已实现的接口
StoneCutterManager implements the following interfaces. 这意味着对这个接口可用的任何方法也可以在此类上使用。
使用方式
Link to 使用方式
addJSONRecipe #添加JSON配方
Link to addjsonrecipe-添加json配方
基于提供的IData添加配方 提供的 IData 应该代表一个JSON数据包 ,这有效地允许您注册任何支持 IRecipeType 系统的 DataPack配方。
ZenScript CopystoneCutter.addJSONRecipe(name as String, data as crafttweaker.api.data.IData);
stoneCutter.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-添加合成表
Adds a recipe to the stone cutter
ZenScript CopystoneCutter.addRecipe(recipeName as String, output as crafttweaker.api.item.IItemStack, input as crafttweaker.api.item.IIngredient);
stoneCutter.addRecipe("recipe_name", <item:minecraft:grass>, <tag:minecraft:wool>);
参数 | 类型 | 描述 |
---|---|---|
参数 recipeName | 类型 字符串[string] | 描述 name of the recipe |
参数 output(输出) | 类型 crafttweaker.api.item.IItemStack | 描述 output IItemStack |
参数 input(输入) | 类型 crafttweaker.api.item.IIngredient | 描述 input IIngredient |
removeAll
Link to removeall
Remove all recipes in this registry
ZenScript CopystoneCutter.removeAll();
removeByModid
Link to removebymodid
Remove recipe based on Registry name modid
ZenScript CopystoneCutter.removeByModid(modid as String);
stoneCutter.removeByModid("minecraft");
参数 | 类型 | 描述 |
---|---|---|
参数 modid | 类型 字符串[string] | 描述 modid of the recipes to remove |
removeByName
Link to removebyname
Remove recipe based on Registry name
ZenScript CopystoneCutter.removeByName(name as String);
stoneCutter.removeByName("minecraft:furnace");
参数 | 类型 | 描述 |
---|---|---|
参数 name(名称) | 类型 字符串[string] | 描述 registry name of recipe to remove |
removeByRegex
Link to removebyregex
Remove recipe based on regex
ZenScript CopystoneCutter.removeByRegex(regex as String);
stoneCutter.removeByRegex("\\d_\\d");
参数 | 类型 | 描述 |
---|---|---|
参数 regex | 类型 字符串[string] | 描述 regex to match against |
删除合成表
Link to 删除合成表
Remove a recipe based on it's output.
ZenScript CopystoneCutter.removeRecipe(output as crafttweaker.api.item.IItemStack);
stoneCutter.removeRecipe(<item:minecraft:glass>);
参数 | 类型 | 描述 |
---|---|---|
参数 output(输出) | 类型 crafttweaker.api.item.IItemStack | 描述 output of the recipe |
名称 | 类型 | 可获得 | 可设置 |
---|---|---|---|
名称 commandString #命令字符串 | 类型 字符串[string] | 可获得 true | 可设置 false |