|
Enchantment Groups (附魔组)Github |相关wiki |源站链接支持: fabric , quilt简单设置附魔组,实现附魔的互斥使用
为什么需要附魔组
在大型模组包中,许多模组都带有自己的附魔。虽然模组声明了它们的附魔之间的互斥性,但大多数情况下,来自不同模组的所有附魔都可以组合使用,尽管从逻辑上讲不应该在同一工具或盔甲上同时使用。
这带来了一系列问题:
- 玩家不需要做出有意义的选择。就像在原版中一样,没有必要专门化
- 玩家最终会拥有装备,上面有很多附魔,几乎成为全能的存在
附魔组解决方案
附魔组试图通过沉浸式和类似原版的方式解决这个问题。使用附魔组:
玩家无需手动解决附魔冲突。无需命令,无需额外物品,无需屏幕混乱的提示信息
对于模组包制作者来说,设置和维护都很容易
配置
配置格式非常简单。通过json,您可以创建附魔组。该组中的所有附魔被视为彼此互斥。
每个组都由一个名称标识。这个名称本身没有任何功能,但是为了使“为什么”可理解,模组包制作者可以给出一个描述性的名称。
注意:现有的附魔互斥性,如在原版中定义或由其他模组定义的,不会被修改,允许原版和模组按照它们的方式运行。别要求这个。
配置示例
如果您要像原版中存在的那样定义附魔互斥性,它看起来会有些像这样。
- 保护附魔不能组合使用
- 近战附魔不能组合使用
- 幸运和精准采集是互斥的
- 弓不能同时使用无限和修补
- 弩不能同时使用多重射击和穿透
- 三叉戟可以同时使用忠诚和引雷,但两者不能与激流合并
json
{
\"protection\": [
\"minecraft:protection\",
\"minecraft:blast_protection\",
\"minecraft:fire_protection\",
\"minecraft:projectile_protection\"
],
\"melee_damage\": [
\"minecraft:bane_of_arthropods\",
\"minecraft:smite\",
\"minecraft:sharpness\"
],
\"mining\": [
\"minecraft:fortune\",
\"minecraft:silk_touch\"
],
\"bow\": [
\"minecraft:infinity\",
\"minecraft:mending\"
],
\"trident1\": [
\"minecraft:loyalty\",
\"minecraft:riptide\"
],
\"trident2\": [
\"minecraft:channeling\",
\"minecraft:riptide\"
],
\"crossbow\": [
\"minecraft:multishot\",
\"minecraft:piercing\"
]
}
来自Modrinth所有游戏版本1.20.11.20.21.201.191.19.11.19.21.19.31.18.21.18.1所有类型fabricquiltEnchantment Groups 1.4.0+1.20.1+EnchantmentGroups-1.4.0+1.20.1.jar下载1.4.0+1.20.1#Release- Fixed not all modded enchants being handled correctly on dedicated servers- Drastically lowered file size展开版本: 1.4.0+1.20.1支持游戏: 1.20.1, 1.20.2类型:FabricQuiltRelease下载次数: 8,881Enchantment Groups 1.3.0+1.20EnchantmentGroups-1.3.0+1.20.jar下载1.3.0+1.20#Release1.20 port展开版本: 1.3.0+1.20支持游戏: 1.20, 1.20.1类型:FabricRelease下载次数: 252Enchantment Groups 1.3.0+1.19EnchantmentGroups-1.3.0+1.19.jar下载1.3.0+1.19#Release- New config file format- Added config setting to specify enchantments as being considered treasure enchantments展开版本: 1.3.0+1.19支持游戏: 1.19, 1.19.1, 1.19.2类型:FabricRelease下载次数: 1,488Enchantment Groups 1.3.0+1.19.3EnchantmentGroups-1.3.0+1.19.3.jar下载1.3.0+1.19.3#Release- New config file format- Added config setting to specify enchantments as being considered treasure enchantments展开版本: 1.3.0+1.19.3支持游戏: 1.19.3类型:FabricRelease下载次数: 1031.2.1+1.19.3EnchantmentGroups-1.2.1+1.19.3.jar下载1.2.1#ReleaseUpdated to 1.19.3展开版本: 1.2.1支持游戏: 1.19.3类型:FabricRelease下载次数: 1021.2.1+1.18.2EnchantmentGroups-1.2.1+1.18.2.jar下载1.2.1+1.18.2#Releasefailsafe for mods that tinker with enchantments at mod load time展开版本: 1.2.1+1.18.2支持游戏: 1.18.2类型:FabricRelease下载次数: 1411.2.1+1.19.0EnchantmentGroups-1.2.1+1.19.jar下载1.2.0+1.19.0#Releasefailsafe for mods that tinker with enchantments at mod load time展开版本: 1.2.0+1.19.0支持游戏: 1.19, 1.19.1, 1.19.2类型:FabricRelease下载次数: 1231.2.0+1.19.0EnchantmentGroups-1.2.0+1.19.jar下载1.2.0#ReleaseUpdated to 1.19. Does not require Fabric Api anymore展开版本: 1.2.0支持游戏: 1.19类型:FabricRelease下载次数: 1281.1.0+1.18.2EnchantmentGroups-1.1.0+1.18.2.jar下载1.1.0+1.18.2#ReleaseUpdated to 1.18.2展开版本: 1.1.0+1.18.2支持游戏: 1.18.2类型:FabricRelease下载次数: 1331.0.0+1.18.1EnchantmentGroups-1.0.0+1.18.1.jar下载1.0.0+1.18.1#ReleaseFirst release展开版本: 1.0.0+1.18.1支持游戏: 1.18.1, 1.18.2类型:FabricRelease下载次数: 146全部版本
markdown_parsed
文章类型:收录
layui.use([\'form\'], function(){
var form = layui.form;
});
Enchantment Groups |
楼主
2025-8-10 17:33:38
回复(0)
收起回复
|