A compatibility mod that unifies similar status effects from different mods to prevent duplication and improve cross-mod compatibility.
A compatibility mod that unifies similar status effects from different mods to prevent duplication and improve cross-mod compatibility.
hexalia, majruszsdifficulty, attributeslib, valoria, turtlecore, more_rpg_classes, relics, runiclib, irons_spellbooks, eidolon, mowziesmobs, simplyswords, ars_nouveau, goety, cataclysm, alexscaves, obscure_api.Fully customizable via config/effectification/effect_mappings.json. The JSON system supports:
{
"sourceEffect": "cataclysm:stun", // The effect that will be unified/replaced
"targetEffect": "relics:stun, more_rpg_classes:stun", // Target effect(s) with fallback support
"amplifierMultiplier": 1.0, // Multiplier for effect amplifier/level conversion (target_amplifier = source_amplifier × 1.0)
"bidirectional": false, // If true, enables two-way synchronization between source and target
"onlyVisualChange": false, // If true, only changes display name without converting effect
"fullReplacement": false // If true, source effect is blocked, only target works
}
{
"sourceEffect": "relics:bleeding", // Source effect to unify
"targetEffect": "majruszsdifficulty:bleeding, attributeslib:bleeding, valoria:bleeding", // Multiple fallback targets
"amplifierMultiplier": 1.0, // 1:1 amplifier conversion
"bidirectional": false, // One-way conversion only
"onlyVisualChange": false, // Real effect conversion
"fullReplacement": false // Allow both effects to work
}
Conversation