Modify Air Speed (Power Type)

Modifies how fast the entity moves while off the ground.

Modifies the speed the entity moves at while it is not standing on anything — falling, jumping, or flying in creative. It does not touch walking speed.

Type ID: apoli:modify_air_speed

Fields

FieldTypeDefaultDescription
modifierAttribute ModifieroptionalA single modifier applied to the air speed.
modifiersarray of Attribute ModifieroptionalSeveral modifiers, applied in operation order.

Examples

Much finer control in mid-air, for an origin that is meant to feel agile:

{
  "type": "apoli:modify_air_speed",
  "modifier": {
    "operation": "multiply_base_multiplicative",
    "value": 0.5
  }
}

The opposite — a heavy origin that cannot steer once it leaves the ground:

{
  "type": "apoli:modify_air_speed",
  "modifier": {
    "operation": "multiply_base_multiplicative",
    "value": -0.4
  },
  "condition": {
    "type": "apoli:fall_flying",
    "inverted": true
  }
}