多mods情况下矿物生成修改(思路)教程
账号已注销
2020年04月26日 19:00
收录于文集
共1篇

本专栏及原帖正文将不再更新

前言:

我在多mods(TE5,IC2,Mek,IE)游戏中发现许多工业矿物多余(即共用一个矿辞缺拥有不同的外观的方块),而我在MCBBS论坛寻找解决方法时并没有找到详细(没错,我就是懒)数据修改说明的帖子也很难找到相应的帖子,因此创建了本教程。(我选择的是保留TE5关闭其它)


附: 工业模组的常用金属的英语: 铜Copper 锡Tin 铅Lead 铀Uranium 镍Nickel 银Silver 铝土矿Bauxite 铝Alumium 铂Platinum 锇Osmium 铌Niobium 钛titanium 铱Iridium 蕴魔秘银Mithril 不稳定红石ClathrateRedstone 谐振末影ClathrateEnder


正文:

说明:字体加粗中划线部分为修改后的样子

工业2

config文件夹下IC2.ini的反映


[worldgen / copper] ; Enable generating this ore enabled = false(这里) ; Amount of clusters to generate count = 15 ; Cluster size size = 10 ; Start height (inclusive) minHeight = 0 ; End height (exclusive) maxHeight = 68 ; Distribution across the height. ; Valid options are: ; - uniform: same probability across all y levels ; - **: maximum in the middle ((minHeight+maxHeight) / 2), linear falloff to the bounds ; - ramp: maximum at minHeight, linear falloff towards maxHeight ; - revramp: maximum at maxHeight, linear falloff towards minHeight ; - smooth: maximum in the middle, maintains high levels over a wide range before falling off ; smoothly like a normal distribution with a more trapezoidal shape distribution = smooth ; Settings for generating lead ore


这里拿铜Copper举例:enabled(生成)由true改成false即可禁止铜矿石的生成 count好像是权重 size是规模 min/maxHeight最小/最大生成高度


沉浸工程

config文件夹下immersiveengineering.cfg的反映 如果你想全部都不生成,维度黑名单加个主世界(维度id=0)就行


ores {         # A blacklist of dimensions in which IE ores won't spawn. By default this is Nether (-1) and End (1)         I:oreDimBlacklist <             -1             1             0(这里)          >


如果你想修改单一矿物,首先你得了解这些数字的用途(下面矿脉不是指斗轮机挖的矿脉,而是指多个矿物集中生成) (第一个数)Vein size矿脉大小 (第二个数)lowest possible Y最低生产高度 (第三个数)Hightest possible Y最高生成高度 (第四个数)Vein per chunk每个矿脉大小 (第五个数)Chance for vein to spawn 矿脉生成机会(最大100,0就是不生成了) 那么你要禁止单一矿物的生成只要把最后的数值调为0就行了(例子:铝土矿)


# Generation config for Bauxite Ore.         # Parameters: Vein size, lowest possible Y, highest possible Y, veins per chunk, chance for vein to spawn (out of 100). Set vein size to 0 to disable the generation         I:ore_bauxite <             4             40             85             8             0(这里)          >


通用机械

config文件夹下mekanism.cfg的反映


# Chance that tin generates in a chunk. (0 to Disable)     I:TinPerChunk=0(这里)


(这个是锡的例子)TinPerChunk(锡矿生成概率)改为0就能禁止锡矿的生成了(其它同理)


这样的话修改完就基本上(因为我选择的是全禁但保留下IC的铀)生成的是TE5的矿物了(下矿省心多了w)


感谢@6B不止铅笔 大大的解惑 https://www.mcbbs.net/thread-1029437-1-1.html 感谢@chychy1 @武月天【】在 https://www.mcbbs.net/thread-650587-1-1.html 的回答(讲真我找了好久)

(ID说明:@6B不止铅笔,@chychy1, @武月天【】为MCBBS内的ID)


附:MCBBS的帖子https://www.mcbbs.net/thread-1029911-1-1.html