Nephilim
Familiar of Abaddon — Card 2 of 4
| HP | PWR | CP | Speed | Range |
|---|---|---|---|---|
| 4 | 2 | 1 | C (Companion) | Local |
Abilities
Passive
Nephilim can only Fuse or be Fused with by special actions and not by Demonic Fusion.
Heart of Nephilim — 1 AP
g: Heart of Nephilim: 1 AP - b, 1x: Remove 2 damage from Abaddon.
Engine Implementation
def _nephilim_heart_handler(state: GameState, demon: DemonInstance, targets, choices, rng) -> GameState:
"""028_2 Nephilim — Heart of Nephilim: Remove 2 damage from Abaddon."""
abaddon = _find_demon_by_parent_unit_id(state, "028", demon.owner)
if abaddon is None:
return state
new_state = remove_damage(state, abaddon, 2)
return new_state
register_ability("028_2", 1, _nephilim_heart_handler)