Change Shape Ability Cooldown (Entity Action Type)
Adds to or sets the shape ability cooldown.
Adds to or sets the ticks remaining on the shape ability’s cooldown. Negative values with add shorten it; the result never goes below zero.
Type ID: apoli:change_shape_ability_cooldown (alias shappoli:change_shape_ability_cooldown)
Fields
| Field | Type | Default | Description |
|---|---|---|---|
operation | String | add | add to adjust the current value, set to replace it. |
change | Integer | required | Ticks to add, or the value to set. |
Examples
Clear the cooldown entirely:
{
"type": "apoli:change_shape_ability_cooldown",
"operation": "set",
"change": 0
} Knock two seconds off it every time you land a hit — a shape that recharges by fighting:
{
"type": "apoli:action_on_hit",
"entity_action": {
"type": "apoli:change_shape_ability_cooldown",
"change": -40
}
} Needs WoodWalkers. This type does not exist without it, so a pack using it must depend on the mod.