Nephilim
Familiar of Abaddon — Card 3 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.
Shield of Nephilim — 1 AP
g: Shield of Nephilim: 1 AP - b, 1x: e: Abaddon has +2n.
Engine Implementation
def _nephilim_shield_handler(state: GameState, demon: DemonInstance, targets, choices, rng) -> GameState:
"""028_3 Nephilim — Shield of Nephilim: Status: Abaddon has +2 DEF."""
abaddon = _find_demon_by_parent_unit_id(state, "028", demon.owner)
if abaddon is None:
return state
new_state = apply_status(state, demon, abaddon, "def", 2)
return new_state
register_ability("028_3", 1, _nephilim_shield_handler)