Modify Healing

Power Type

Modifies the amount of health you get from all sources of healing (e.g natural regen, instant health effect, regeneration effect)

Type ID: origins:modify_healing

Fields

Field Type Default Description
modifier Attribute Modifier optional If specified, this modifier will be applied to your healing bonus.
modifiers Array of Attribute Modifiers optional If specified, these modifiers will be applied to your healing bonus.

Examples

{
    "type": "origins:modify_healing",
    "modifier": {
        "operation": "multiply_total",
        "value": 1
    }
}

This example will double the effectiveness of all healing used on you.

{
    "type": "origins:modify_healing",
    "modifier": {
        "operation": "multiply_total",
        "value": -0.5
    }
}

This example will half the effectiveness of all healing used on you.