Modify Jump

Power Type.

Modifies how high the player jumps.

Type ID: origins:modify_jump

Fields

Field Type Default Description
modifier Attribute Modifier optional If set, this modifier will apply to the upwards jump velocity.
modifiers Array of Attribute Modifiers optional If set, these modifiers will apply to the upwards jump velocity.
entity_action Entity Action optional If set, this action will execute when the player jumps.

Example

{
    "type": "origins:modify_jump",
    "modifier": {
        "operation": "addition",
        "value": 0.4
    },
    "entity_action": {
        "type": "origins:execute_command",
        "command": "particle cloud ~ ~ ~ 0.3 0.3 0.3 0.01 16 normal @a"
    }
}

This power modifies the player's jump height, increasing it to 4 blocks, and display a cloud particle at the player's feet.