🔍概述
这个模组是 1.12 + 沉浸工程中存在的Crafttweaker蓝图配方支持的向后移植。
此模组专为使用 1.7.10 的魔改整合包作者而设计,允许他们使用 Zenscript 自定义蓝图。
使用方法
添加蓝图
mods.immersiveengineering.Blueprint.addRecipe(String category, IItemStack output, IIngredient[] inputs);
删除蓝图
mods.immersiveengineering.Blueprint.removeRecipe(IItemStack output);
有关详细信息,请参阅此处
此外,此插件允许用户通过添加/删除条目和页面来修改工程师手册
删除条目
mods.immersiveengineering.Manual.removeEntry(String name);
删除特定页面
mods.immersiveengineering.Manual.removePage(String name, int pageNum);
添加页面
mods.immersiveengineering.Manual.addTextPage(String name, String text, @Optional String category, @Optional int pageNum);
如何添加文本页面的示例
game.setLocalization("ie.manual.category.gregtech.name", "Greg Tech");
game.setLocalization("ie.manual.entry.ochem.name", "Organic Chemistry");
game.setLocalization("ie.manual.entry.ochem.subtext", "");
game.setLocalization("ie.manual.entry.ochem0", "this is the first page");
game.setLocalization("ie.manual.entry.ochem1", "this is the second page");
game.setLocalization("ie.manual.entry.ochem2", "this is the third page");
mods.immersiveengineering.Manual.addTextPage("ochem", "ochem2", "gregtech"); // 创建一个叫做gregtech的页面和叫做ochem的条目
mods.immersiveengineering.Manual.addTextPage("ochem", "ochem0"); // 默认为开始页面
mods.immersiveengineering.Manual.addTextPage("ochem", "ochem1", 1); // 在索引页 1 处插入