Skip to main content

✅ Azag quickstep moves azag 1 lane

CategoryAbility
StatusPassing
Testtests/test_abilities_actions.py::test_azag_quickstep_moves_azag_1_lane

Azag moves 1 lane via Quickstep.

Preconditions

  • P1 Main Phase, P1 has 3 AP

  • Lane 1: P1's Azag (#066) — READIED

Action

  • Execute Azag's Quickstep (ability idx=0, Quick, 0 AP, ready, 1x) choices={"lane": 2}
result = execute_ability(state, azag_on_field, ability_idx=0, targets=None, choices={"lane": 2})
azag_after = next(d for d in result.demons if d.unit_id == "066")

Expected Postconditions

  • Azag: moved to lane 2

  • Azag: NOT exhausted (ready cost)

  • P1 AP: 3 (0 AP cost)

Assertions

assert azag_after.lane == 2
assert azag_after.state == DemonState.READIED
assert result.players[Side.PLAYER_1].ap == 3