本篇教程由作者设定未经允许禁止转载。

1.18.2植物魔法凝矿兰/炎矿兰无法正常产出矿物的解决方法/1.18.2植物魔法凝矿兰/炎矿兰配方添加

我的版本:1.18.2-Forge40.2.0

我在游玩过程中发现我的凝矿兰并不能产出mek矿物与ae2矿物,于是我尝试了如下方法(我将我收集到的方法均放在这里或许可以帮到你):

1:【凝矿兰】让高版本凝矿兰联动更多矿 - [BOT]植物魔法 (Botania) - MC百科|最大的Minecraft中文MOD百科 (mcmod.cn)(未解决问题)

2:植物魔法-MoT改教程 - [BOT]植物魔法 (Botania) - MC百科|最大的Minecraft中文MOD百科 (mcmod.cn)(未解决问题)

3:https://www.bilibili.com/video/BV1p34y1e7Kw/?share_source=copy_web&vd_source=34ee3212d69116955f93449c6b418047(未解决问题)

4:凝矿兰 (Orechid) - [BOT]植物魔法 (Botania) - MC百科|最大的Minecraft中文MOD百科 (mcmod.cn)此页面的部分评论↓(未解决问题)1.18.2植物魔法凝矿兰/炎矿兰无法正常产出矿物的解决方法/1.18.2植物魔法凝矿兰/炎矿兰配方添加-第1张图片

5:1.18.2 凝矿兰/炎矿兰 相关自定义 - [BOT]植物魔法 (Botania) - MC百科|最大的Minecraft中文MOD百科 (mcmod.cn)

方法5彻底解决了我的问题,由于评论字数问题我无法将我的解决方案发在这位大佬的教程下,所以我将我的代码与解决过程发在这里,在此感谢这位大佬的指点!万分感谢!

请结合方法5查看此解决流程:

安装KubeJS并启动一次游戏(会在.minecraft\versions\1.18.2-Forge_40.2.0文件夹下生成kubejs文件夹后面会用到)

以下是我的代码(增加了mek与AE2的矿物):

//以下是一些整理好的物品ID
//minecraft:deepslate//深板岩
//mekanism:lead_ore//铅矿石
//mekanism:deepslate_lead_ore//深层铅矿石
//mekanism:fluorite_ore//氟石矿石
//mekanism:deepslate_fluorite_ore//深层氟石矿石
//mekanism:osmium_ore//锇矿石
//mekanism:deepslate_osmium_ore//深层锇矿石
//mekanism:tin_ore//锡矿石
//mekanism:deepslate_tin_ore//深层锡矿石
//mekanism:uranium_ore//铀矿石
//mekanism:deepslate_uranium_ore//深层铀矿石
//ae2:quartz_ore//赛特斯石英矿石
//minecraft:redstone_block//红石块
//minecraft:slime_block//粘液块
//minecraft:gold_block//金块


onEvent('recipes', event => {

event.custom({
"type": "botania:orechid",
"input": "minecraft:stone",//石头
"output": {
"type": "block",
"block": "mekanism:lead_ore"//铅矿石
},
"weight": 7985
                })

                
event.custom({
"type": "botania:orechid",
"input": "minecraft:deepslate",//深板岩
"output": {
"type": "block",
"block": "mekanism:deepslate_lead_ore"//深层铅矿石
},
"weight": 7985
                })

                
event.custom({
"type": "botania:orechid",
"input": "minecraft:stone",//石头
"output": {
"type": "block",
"block": "mekanism:fluorite_ore"//氟石矿石
},
"weight": 1265
                })

                
event.custom({
"type": "botania:orechid",
"input": "minecraft:deepslate",//深板岩
"output": {
"type": "block",
"block": "mekanism:deepslate_fluorite_ore"//深层氟石矿石
},
"weight": 1265
                })

                
event.custom({
"type": "botania:orechid",
"input": "minecraft:stone",//石头
"output": {
"type": "block",
"block": "mekanism:osmium_ore"//锇矿石
},
"weight": 6915
                })

                
event.custom({
"type": "botania:orechid",
"input": "minecraft:deepslate",//深板岩
"output": {
"type": "block",
"block": "mekanism:deepslate_osmium_ore"//深层锇矿石
},
"weight": 6915
                })

                
event.custom({
"type": "botania:orechid",
"input": "minecraft:stone",//石头
"output": {
"type": "block",
"block": "mekanism:tin_ore"//锡矿石
},
"weight": 5450
                })

                
event.custom({
"type": "botania:orechid",
"input": "minecraft:deepslate",//深板岩
"output": {
"type": "block",
"block": "mekanism:deepslate_tin_ore"//深层锡矿石
},
"weight": 5450
                })

                
event.custom({
"type": "botania:orechid",
"input": "minecraft:stone",//石头
"output": {
"type": "block",
"block": "mekanism:uranium_ore"//铀矿石
},
"weight": 1337
                })

                
event.custom({
"type": "botania:orechid",
"input": "minecraft:deepslate",//深板岩
"output": {
"type": "block",
"block": "mekanism:deepslate_uranium_ore"//深层铀矿石
},
"weight": 1337
                })

                
event.custom({
"type": "botania:orechid",
"input": "minecraft:stone",//石头
"output": {
"type": "block",
"block": "ae2:quartz_ore"//赛特斯石英矿石
},
"weight": 3975
                })

                
event.custom({
"type": "botania:orechid",
"input": "minecraft:deepslate",//深板岩
"output": {
"type": "block",
"block": "ae2:quartz_ore"//赛特斯石英矿石
},
"weight": 3975
                })

                
//and一个有意思的红绿灯:

event.custom({
"type": "botania:orechid",
"input": "minecraft:slime_block",//粘液块
"output": {
"type": "block",
"block": "minecraft:gold_block"//金块
},
"weight": 1
                })

event.custom({
"type": "botania:orechid",
"input": "minecraft:gold_block",//金块
"output": {
"type": "block",
"block": "minecraft:redstone_block"//红石块
},
"weight": 1
                })

event.custom({
"type": "botania:orechid",
"input": "minecraft:redstone_block",//红石块
"output": {
"type": "block",
"block": "minecraft:slime_block",//粘液块
},
"weight": 1
                })

})

将以上代码放入记事本文件并保存,文件名随意(但不建议中文)改后缀为.js,放入.minecraft\versions\1.18.2-Forge_40.2.0\kubejs\server_scripts文件夹中,重启游戏(或/reload)即可

关于方法5中所说的F3+H查看物品id我没搞明白,但是只使用F3然后使用光标指向对应方块在屏幕右侧也可以显示物品ID,如果有安装Jade,Jade配置(默认小键盘0)里也可以选择显示物品ID(插件设置-->Jade-->注册名称)

另外如果你装了KubeJS Botania并报错,请卸载KubeJS Botania后再尝试

本人版本1.18.2-Forge40.2.0,经过实测以上代码运行正常,如有疑问,抱歉我可能不是很常看mcmod.cn所以请自行解决啦,不过如果你在下面留言,我看到了就会回复

PS:注意看代码里我放了个没用的红绿灯,或许你会喜欢?不要的话自行删除

希望会对后来的各位有所帮助!

再次感谢大佬!→小羡的鱼的主页 - MC百科|最大的Minecraft中文MOD百科 (mcmod.cn)