Skip to main content

✅ Zepar redirects damage to ally

CategoryInteraction
StatusPassing
Testtests/test_abilities_complex.py::TestZeparDamageRedirect::test_zepar_redirects_damage_to_ally

A local demon takes damage — Zepar redirects it to another local ally.

Preconditions

  • P1 Main Phase

  • Lane 0: P1's Zepar (#115) — READIED

  • Lane 0: P2's Duban (#001) — 0 damage (takes damage event)

  • Lane 0: P2's Murmur (#002) — 0 damage (redirect target: P2's ally)

Action

  • Fire DAMAGE_RECEIVED targeting Duban (P2), value=3

Expected Postconditions

  • Murmur: 3 Fixed Damage (redirect)

  • Zepar: READIED, unaffected

Assertions

assert murmur_after.damage == 3, (
f"Zepar must redirect 3 damage to Murmur (ally of damaged Duban). "
f"Got {murmur_after.damage}."
)