Action On Revive (Power Type)

Runs an action when a knocked-out entity is revived.

Fires when the holder is brought back up from the knocked-out state.

Type ID: apoli:action_on_revive

Fields

FieldTypeDefaultDescription
entity_actionEntity ActionoptionalRuns on the holder as they get back up.

Example

Come back weakened rather than at full strength, which keeps a revive meaningful:

{
  "type": "apoli:action_on_revive",
  "entity_action": {
    "type": "apoli:and",
    "actions": [
      { "type": "apoli:apply_effect", "effect": { "effect": "minecraft:weakness", "duration": 600 } },
      { "type": "apoli:apply_effect", "effect": { "effect": "minecraft:slowness", "duration": 300 } }
    ]
  }
}

Needs Hardcore Revival. These types do not exist without it, so a pack using them must depend on the mod.