Skip to main content

✅ Marchosias exhausted can still redirect

CategoryInteraction
StatusPassing
Testtests/test_abilities_passive.py::test_marchosias_exhausted_can_still_redirect

Marchosias is EXHAUSTED. Field passives are always active

Preconditions

  • P2 Main Phase, P2 has 3 AP

  • Lane 0: P1's Duban (#001) — 6 HP, 0 damage, READIED

  • Lane 0: P1's Marchosias (#087) — 15 HP, 0 damage, EXHAUSTED

  • Lane 0: P2's Camio (#098) — 9 HP, 0 damage, READIED, PWR 4

Action

  • P2 attacks with Camio targeting Duban

  • Marchosias is exhausted but intercepts (Field passive)

Expected Postconditions

  • Marchosias: damage = 4 (intercepted)

  • Duban: damage = 0 (untouched)

Assertions

assert duban_after.damage == 0
assert march_after.damage == 4