Morax
The Tortured Bull
Unit #006
| HP | PWR | CP | Speed | Range | Tier |
|---|---|---|---|---|---|
| 12 (+6) | 4 (+2) | 3 (+2) | Fast | Local | C |
Abilities
Nurture — 1 AP
g: Nurture: 1 AP - b, 1x: Remove k damage from Target Other Local Demon.
Engine Implementation
def _morax_nurture(state: GameState, demon: DemonInstance, targets, choices, rng) -> GameState:
"""#006 Morax — Nurture
Quick, 1 AP, (ready), 1x: Remove this demon's PWR damage from Target Other Local Demon.
Uses get_effective_pwr() for PWR-scaling (includes fusion bonus).
Targets: [target_other_local_demon]
"""
target = targets[0]
pwr = get_effective_pwr(state, demon)
state = remove_damage(state, target, pwr)
return state
register_ability("006", 0, _morax_nurture)