Set Effect
This mod provides modpack creators with the ability to configure special effects that activate when wearing a full armor set. Players will receive bonuses only when all four pieces of the set are equipped.
Main Features
In the current version, the mod allows assigning potion effects when wearing a complete armor set. Future updates plan to expand functionality for more complex mechanics.
Important Information
The mod doesn't work independently! For it to function, CraftTweaker installation is mandatory. Without configuration through this tool, the mod won't have any impact on gameplay.
Effect Configuration
Configuration is done through JSON files. Each configuration line represents one armor set with corresponding effects.
Example configuration for diamond armor:
{
"type": "diamond",
"effects": [{
"potion": "minecraft:strength",
"amplifier": 0,
"length": 10
}]
}
Configuration features:
- The "effects" section is an array, allowing multiple effects for one set
- You can configure enhancement level (amplifier) and duration (length)
- All standard Minecraft potion effects are supported
Advanced example for chainmail armor:
{
"type": "chainmail",
"effects": [{
"potion": "minecraft:speed",
"amplifier": 0,
"length": 10
},
{
"potion": "minecraft:regeneration",
"amplifier": 10,
"length": 100
}
]
}
Demonstration Effects
For example purposes, the mod includes the following basic settings:
- Leather armor - jump boost
- Golden armor - mining haste
- Chainmail armor - speed increase
- Iron armor - fire resistance
- Diamond armor - strength enhancement
These settings serve only as examples and should be adapted to the specific modpack.