Leviathan
Demon of Envy
Unit #043
| HP | PWR | CP | Speed | Range | Tier |
|---|---|---|---|---|---|
| 12 (+6) | 4 (+2) | 3 (+2) | Normal | Local | C |
Abilities
Passive
Leviathan may perform actions without q that belong to Other Fusible or Fused Demons with +1 AP Cost.
Engine Implementation
def _leviathan_passive(state: GameState, demon: DemonInstance) -> dict:
"""#043 Leviathan [0] — +1 AP Cost on copied actions.
The actual ability sharing is handled by get_leviathan_copyable_abilities().
This passive returns +0 (the +1 is applied specifically to copied abilities
in execute_ability, not as a blanket AP modifier).
"""
return {}
register_passive("043", 0, _leviathan_passive)
Reminder
(1x actions are restricted to once per Demon, not per action use.)