✅ Scorpio plus 1 ap cost
| Category | Ability |
| Status | Passing |
| Test | tests/test_abilities_passive.py::test_scorpio_plus_1_ap_cost |
Scorpio's +1 AP Cost passive increases all its action costs by 1.
Preconditions
-
Lane 0: P1's Scorpio (#062) — READIED
-
Scorpio passive idx=1: +1 AP Cost
Action
- Query get_effective_ap_cost(state, scorpio, base_cost=2)
result = get_effective_ap_cost(state, scorpio_on_field, 2)
Expected Postconditions
- Returns 3 (2 base + 1 Scorpio passive)
Assertions
assert result == 3, f"Expected AP cost 3 (2+1), got {result}"