✅ Andras any action suppresses quick window
| Category | Ability |
| Status | Passing |
| Test | tests/test_abilities_actions.py::test_andras_any_action_suppresses_quick_window |
Andras performs any action. Quick response window suppressed for ALL Andras actions.
Preconditions
-
P1 Main Phase, P1 has 5 AP
-
Lane 0: P1's Andras (#093) — READIED
-
Lane 0: P2's Flauros (#013) — READIED
Action
- P1 activates Andras's ability (any registered ability)
try:
result = execute_ability(state, andras_p, ability_idx=test_idx, targets=[flauros_p])
except (ValueError, KeyError, IndexError):
pytest.skip("Andras ability not fully implemented yet")
Expected Postconditions
- state.suppress_quick_response = True
Assertions
assert result.suppress_quick_response is True, (
"suppress_quick_response must be True for ALL Andras actions"
)