✅ Sekhmet relentless march suppresses quick window
| Category | Ability |
| Status | Passing |
| Test | tests/test_abilities_actions.py::test_sekhmet_relentless_march_suppresses_quick_window |
Sekhmet performs Relentless March. Quick response window suppressed.
Preconditions
-
P1 Main Phase, P1 has 3 AP
-
Lane 0: P1's Sekhmet (#065) — READIED
Action
- P1 activates Sekhmet's Relentless March (ability idx=2, 1 AP) moving to lane 1
result = execute_ability(state, sekhmet_p, ability_idx=2, choices={"lane": 1})
sekhmet_after = next(d for d in result.demons if d.unit_id == "065")
Expected Postconditions
-
Sekhmet moves to lane 1
-
state.suppress_quick_response = True
Assertions
assert sekhmet_after.lane == 1
assert result.suppress_quick_response is True