jinvgy
本帖最后由 jinvgy 于 2020-5-8 11:19 编辑

作者:Hello1231

插件简介


插件特点


配置文件


插件命令


权限节点


搬运授权


下载地址


更新日志


2021.12 数据,可能有更多内容

作者:Hello1231

插件简介


More Ores向Minecraft中添加了更多的、可自由配置的矿物,丰富了玩家下矿所带来的乐趣。
插件特点


各种矿物/物品:
主世界矿石

● 海带矿
这种矿石能被熔炼成海带,让玩家在地底也能找到吃的。

● 石化木
这种矿石能被熔炼成橡木,能为玩家提供木材。

● 经验矿
采集这种矿石能获得经验球。(最小/最大经验球掉落量可配置,默认1~4个)

● 随机矿
采集这种矿石会随机掉落煤、铁矿、金矿、1~10个红石或钻石中的其中一种矿物。

● 药水矿
被破坏时会随机喷溅一种药水效果,部分极度有害的药水默认禁用。(可通过配置开启)

● 医药矿
四个医药矿能合成一个医药箱。

● 液态矿
这种矿石能被熔炼成液态锭。


地狱矿石
● 枯骨矿石
掉落随机数量的骨粉,每三个骨粉会自动转化为骨头(骨粉掉落量可配置)
● 狱火矿石
九个该矿石可以合成一个焰晶
● 焰晶
可以投掷,能把水变成圆石、将岩浆变成黑曜石,并且会在落地时爆炸


特殊道具
● 液态锭
在合成中用八个液态锭圈围一个海龟壳来制得潜水头盔,亦可用于制作潜水服、潜水裤和防火靴。

● 医药箱
只能用于生物或其他玩家,可回复生命值。(回复量可配置,默认回复6点)
● 黄金医药箱
由四个医药箱制成,只能用于生物或其他玩家,可为使用对象添加一个吸收buff一段时间(buff时长和buff威力可配置,默认两分钟、一排额外金心)

● 潜水头盔
允许穿戴者在水下呼吸一段时间。(呼吸时长可配置,默认20秒)
● 溺尸胸甲
允许穿戴者在水下呼吸一段时间。(呼吸时长可配置,默认10秒)
● 海豚护腿
允许穿戴者在水下呼吸一段时间。(呼吸时长可配置,默认20秒)
● 阻燃之靴
允许穿戴者免疫火焰一段时间。(抗火时长可配置,默认65秒)


配置文件


代码:

  1. #Enable or disable all ore spawning
  2. Enabled: true
  3. #Set if ores should generate in all worlds
  4. All Worlds: true
  5. #If All Worlds is false, these worlds will still spawn ores (whitelist).
  6. #If All Worlds is true, these worlds will not spawn ores (blacklist).
  7. Worlds:
  8. -
  9. -
  10. -
  11. #Worlds on this list will remove any placed ores. They must also be on the blacklist/not on the whitelist.
  12. Remove Ores:
  13. -
  14. -

  15. #Enabled is for enabling or disabling ores
  16. #Amount is the number of blocks that are replaced with an ore in a chunk.
  17. #MinY and MaxY are the minimum and maximum height for the ore to spawn at. MinY SHOULD ALWAYS BE LESS THAN MaxY!
  18. #Smelt Amount is the number of items the ore smelts into
  19. #Material is the item that the ore smelts into
  20. Ores:
  21. Kelp Ore:
  22.     Enabled: true
  23.     Amount: 10
  24.     MinY: 14
  25.     MaxY: 100
  26.     Smelt Amount: 2
  27.     Material: KELP

  28. Petrified Wood:
  29.     Enabled: true
  30.     Amount: 5
  31.     MinY: 25
  32.     MaxY: 100
  33.     Smelt Amount: 1
  34.     Material: OAK_LOG

  35. Liquid Ore:
  36.     Enabled: true
  37.     Amount: 2
  38.     MinY: 0
  39.     MaxY: 30
  40.     Smelt Amount: 1
  41.     #Material has to be Liquid Ingot

  42. Liquid Ingot:
  43.     Enabled: true
  44.     #Everything else does not apply

  45. Scuba Helmet:
  46.     Enabled: true
  47.     #Craft Amount is the amount of Scuba Helmets that can be crafted from a turtle helmet surrounded by liquid ingots
  48.     Craft Amount: 1
  49.     #Seconds is how long the water breathing
  50.     Seconds: 20
  51. #Material and Smelt Amount are not applicable for Experience Ore, Potion Ore, Random Ore, Health Ore, and Medkit.
  52. Experience Ore:
  53.     Enabled: true
  54.     Amount: 2
  55.     MinY: 5
  56.     MaxY: 25
  57.     MinXP: 1
  58.     MaxXP: 4

  59. Random Ore:
  60.     Enabled: true
  61.     Amount: 1
  62.     MinY: 0
  63.     MaxY: 20

  64. Potion Ore:
  65.     Enabled: true
  66.     Amount: 1
  67.     MinY: 15
  68.     MaxY: 30
  69.     #Potion names can be found at https://jd.andross.fr/spigot-1.13.2-R0.1-SNAPSHOT/javadoc/org/bukkit/potion/PotionEffectType.html#values--
  70.     Banned Potions:
  71.     - WITHER
  72.     - POISON
  73.     - LUCK
  74.     - UNLUCK
  75.     - HARM
  76.     - SLOW_DIGGING
  77. Health Ore:
  78.     Enabled: true
  79.     Amount: 3
  80.     MinY: 10
  81.     MaxY: 50

  82. #Health is the amount of health points the Medkit provides
  83. #Craft Amount is the amount of Medkits that can be crafted from 4 Health Ores
  84. Medkit:
  85.     Enabled: true
  86.     Health: 6
  87.     Craft Amount: 1

  88. Bone Ore:
  89.     Enabled: true
  90.     Amount: 7
  91.     MinY: 1
  92.     MaxY: 125
  93.     Min Bonemeal: 1
  94.     Max Bonemeal: 7

  95. Fire Ore:
  96.     Enabled: true
  97.     Amount: 5
  98.     MinY: 60
  99.     MaxY: 125

  100. #Craft Amount is the amount of Fire Crystals that can be crafted from 9 Fire Ore
  101. #Size is how large the explosion should be.
  102. #Fire controls whether or not it will light fires when it explodes
  103. #Break Blocks controls whether or not blocks will be broken when it explodes
  104. Fire Crystal:
  105.     Enabled: true
  106.     Craft Amount: 1
  107.     Size: 3
  108.     Fire: true
  109.     Break Blocks: true
  110.     Max Distance: 200


  111. Other:
  112. Dolphin Pants:
  113.     Enabled: true
  114.     Craft Amount: 1
  115.     Seconds: 20

  116. Chestplate of the Drowned:
  117.     Enabled: true
  118.     Craft Amount: 1
  119.     Seconds: 10

  120. Noncombustible Boots:
  121.     Enabled: true
  122.     Craft Amount: 1
  123.     #Seconds is how long the player recieves fire resistance for each of the durability points on the boots(165 total)
  124.     Seconds: 1

插件命令


/moreores可简写为/mores、/moreos或/mo
● /moreores - 重载插件的配置文件
● /moreores <矿物名> [数量] - 给予自己设定数量的插件特色矿物
● /moreores generate <世界名> - 在指定世界范围内生成矿石(范围为世界边界内)
● /moreores clear <世界名> - 消除指定世界范围内的所有矿石(范围为世界边界内)
● /moreores remove <世界名> - 将世界添加到配置的矿物生成黑名单的生效名单中或将其从名单中删除
权限节点


● moreores.reload - 允许使用/moreores来重载插件的配置文件
● moreores.give - 允许使用/moreores <矿物名> [数量] 命令
● moreores.generate - 允许使用/moreores generate <世界名> 命令
● moreores.clear - 允许使用/moreores clear <世界名> 命令
● moreores.remove - 允许使用/moreores remove <世界名> 命令
● moreores.reload - 允许使用/moreores命令重载配置文件
● moreores.* - 允许使用该插件所有命令
搬运授权



注:申请时间为2020.04.10
下载地址


支持原作者,请前往原帖下载~
如果你喜欢这个插件,就去给作者打个好评吧0u0
如果你发现了bug,也请及时跟作者反馈哦~
感谢 @名副其实 提供的翻译参考

更新日志


● 1.5 2020.05.07
1.彻底改写了矿物生成系统
2.特殊矿物现在能生成在已经被加载过的区块了
3.改善了/moreores generate <世界名>和/moreores clear <世界名>命令的工作效果
4./moreores generate <世界名>和/moreores clear <世界名>命令中没有限定世界边界了
5.更加不容易卡顿了
6.修正了阻燃之靴的bug
● 1.4.2 2020.05.02
1.再次修复了/moreores clear <世界名>和/moreores remove <世界名>命令产生的bug
● 1.4.1 2020.05.02
1.修复了/moreores clear <世界名>和/moreores remove <世界名>命令产生的bug
● 1.4 2020.05.01
1.添加了更多矿石
2.添加了更多物品
3./moreores clear <世界名>命令现在将能取代下界的矿石
4.修正了 /moreores <矿物名> [数量]
● 1.3 2020.04.25
1.降低了加载区块的延迟
2.添加了/moreores generate <世界名>和/moreores clear <世界名>命令
3.优化了矿石生成系统
4.修复了重载配置命令无效的bug
5.修复了帮助菜单命令无效的bug
6.修复了给予矿石命令异常的bug
● 1.2 2020.04.19
1.添加了更多物品
2.添加了Remove Ores的配置
3.添加了/moreores remove <世界名>命令和对应的权限节点
● 1.1 2020.04.10
1.修改了/moreores的指令,现在可以设定一次性给予矿石的数量了
2.修复了使用医疗箱发生的bug
● 1.0 2020.04.10
1.插件发布

名副其实
过短的内容不建议折叠,影响观看

米添Mi_Tian
又一款高版本的插件 支持了。。

xiaonongNa
爱了爱了爱了爱了爱了爱了

Pocketmon_Flame
爱了爱了爱了

cheng000
感觉不错 挖矿没那么无聊了

LSS_wwwwwww
精准采集可以直接采集到头颅,然后就有了------头颅之家......

jinvgy
liangxiaojie9 发表于 2020-4-29 10:25
精准采集可以直接采集到头颅,然后就有了------头颅之家......

掉落的头颅不就是对应的矿物吗= =

LSS_wwwwwww
jinvgy 发表于 2020-4-29 10:28
掉落的头颅不就是对应的矿物吗= =

经验矿之类的用精准采集也能直接获得头,然后他们就用头颅弄了个家+ +

Fishes
这让纯净服又增加了乐趣 。

名副其实
更新日志:
增加了几种新的头颅矿物
化石枯骨: 掉落随机数量的骨粉. 每3个骨粉自动合成一个骨头. 掉落上下限可在配置文本设置.
狱火之矿: 集齐九个可合成一个焰晶
焰晶: 可以扔. 能够使液体凝固,落地时爆炸。


未提到/文本中翻译错误的几种物品:?
溺尸之胸甲:为附近潜水玩家提供10秒的急迫效果.时长可在配置文本中编辑. 使用流体锭制作。
海豚护腿: 为附近潜水玩家提供20秒海豚恩惠的效果. 时长可在配置文本中编辑. 使用流体锭制作。
阻燃之靴: 为玩家提供65秒的抗火, 每秒一次.  时长可在配置文本中编辑. 使用流体锭制作。

GuieUamc
。。。。为啥矿物这个没汉化名称

3078764845
感谢分享!

莫幽
看起来是一款很赞的插件

DLS童真
有汉化文件吗?

Zonglinsin
爱了爱了 乐趣又增加

Autism_1
生存服乐趣+1

1284641389
这个可以和史诗地形这样的地形插件一起使用吗

mine丶young
不懂矿物是会生成在哪里?未加载的区块?