Skip to main content

✅ Charge moves amun and ally out of aoe lane

CategoryInteraction
StatusPassing
Testtests/test_abilities_complex.py::TestAmunCharge::test_charge_moves_amun_and_ally_out_of_aoe_lane

Tests interaction between Amun, Flauros, Focalor.

Preconditions

  • P2 Main Phase, P2 has 6 AP

  • Lane 1: P1's Amun (#086) — READIED, 1x unused

  • Lane 1: P1's Flauros (#013) — READIED (ally, target of Charge)

  • Lane 1: P2's Focalor (#069) — READIED (has Great Blue Spot AoE)

Action

  1. P2 declares Great Blue Spot targeting lane 1

  2. P1 responds with Amun's Charge (Quick) targeting Flauros

  3. Charge resolves FIRST: Flauros pushed lane 1 -> lane 2, Amun follows

  4. Great Blue Spot resolves on lane 1 (only Focalor remains)

Expected Postconditions

  • Amun: lane 2

  • Flauros: lane 2, 0 damage (dodged AoE)

  • Focalor: in lane 1, takes own AoE damage (friendly fire)

Assertions

assert amun_after_charge.lane == 2
assert flauros_after_charge.lane == 2
assert flauros_final.damage == 0
assert focalor_final.damage > 0