ExEntityAttributesModifier
This mod adds the ability to configure creature attributes through a configuration file. All changes take effect after restarting the game or using the reload command.
In the config/exmo/ folder, a ExEntityAttributesModifier.json file is created where you can set various attribute modifiers for mobs.
For example, you can increase a creeper's maximum health by 100 units and double its movement speed:
{
"minecraft:example": {
"attrGethers": {
"minecraft:generic.max_health": {
"operation": "add",
"value": 100
},
"minecraft:generic.movement_speed": {
"operation": "multiply_base",
"value": 2
}
}
}
}