我的世界JAOPCA的配置文件翻译
版本
版本为2022/10/4截至的最新的2.3.0.0版本
这算是前人栽树后人乘凉吧
开始
materials部分
#Should the mod find ingot materials with ores.
//该mod是否会应用到有矿石有锭材料吗?(比如铁,有矿石有锭)
ingot = true
#Should the mod find gem materials with ores.
//该mod是否会应该用到有矿石有宝石材料(比如星辉蓝宝石,有矿石有宝石)
gem = true
#Should the mod find crystal materials with ores.
//该mod是否会应该用到有矿石有水晶材料(迷惑东西我举不出栗子)
crystal = true
#Should the mod find dust materials with ores.
//该mod是否会应该用到有矿石有粉材料(迷惑东西我举不出栗子)
dust = true
#Should the mod find ingot materials without ores.
//该mod是否会应该用到没有矿石但有锭的材料(比如合金炉做的青铜,没有矿石但是,是锭)
ingotPlain = true
#Should the mod find gem materials without ores.
//该mod是否会应该用到没有矿石但有宝石的材料(比如合成出来的宝石,没有矿石但是,是宝石)
gemPlain = true
#Should the mod find crystal materials without ores.
//该mod是否会应该用到没有矿石但有水晶的材料(比如xx晶体,没有矿石但是,是水晶)
crystalPlain = true
materialOverrides部分
#List of materials that should be gems.
//不需要加载的宝石的材料名单。
gem = [“Coal”, “Diamond”, “Emerald”, “Lapis”, “Prismarine”, “Quartz”]
//“煤炭”、“钻石”、“翡翠”、“青金石”、“海晶石”、“石英”
(你可以把这行里面的东西删了,上游戏看看会有各种奇怪的东西比如“Quartz块”3×3的石英块真的很离谱)
#List of materials that should be crystals.
//不需要加载的水晶的材料名单。
crystal = []
#List of materials that should be dusts.
//不需要加载的粉的材料名单。
dust = [“Redstone”]
//”红石粉“
itemSelection部分
#List of mods that are preferred when selecting items in recipes.
//合成优先级,优先使用列表内的模组的物品
一定要记得调不然这样的合成表就是jaopca优先,你做出来的就不是原版的奥利哈刚块,而是第1张图的块了(但是这里确实没有问题因为植物魔法比jaopca先加载)
preferredMods = [“minecraft”, “jaopca”]
//默认顺序 mc原版>jaopca
oredict部分
#List of oredict names that should not be added.
//完全黑名单(放入矿词,则这个东西不会再被jaopca加载)
blacklist = []
//俄的矿词是<ore:ingotOsmium>把”Osmium”放进去锇相关的东西jaopca就不会再加载(记得””)
#List of oredict modules that should not be registered.
//模块注册的黑名单
例如(块(block),晶体( crystal),粉(dust),之类的)不会有人直接写中文吧(预定有人会直接写”moduleBlacklist = [粉]”之类的)
moduleBlacklist = []
#List of custom oredict entries to add. Format: <mod:item@meta=oredict>
//自定义!!!往”custom = []”里的”[]”添入 “物品id=矿词”
注这里的additions:chenmings_tinkers_-zi_ran_zhi_jin_ingot是我自己用addition注册的
例如custom = [“additions:chenmings_tinkers_-zi_ran_zhi_jin_ingot=ingot_zi_ran_zhi_jin“](记得“”)
(注:写多行要”xxx=xxx”,”xxx=xxx”)
jaopca就会加载关于 additions:chenmings_tinkers_-zi_ran_zhi_jin_ingot 的物品注册
例如:
custom = []
recipes部分
#List of recipes that should not be added.
//将配方id输入其中,格式是”配方id”
blacklist = []
#List of recipes by regex that should not be added.
//这个支持正则表达式,两个都是黑名单。
regexBlacklist = []
ok了终于写完了,你问我[颜色]和[材料本地化]呢?
e,去看看谷歌翻译吧
(黑名单的提示:如果重启之后没有生效那就把materials文件删除让他重新生成一次,就没有问题了)