✅ Pisces abiogenesis both players gain 2 ap
| Category | Ability |
| Status | Passing |
| Test | tests/test_abilities_actions.py::test_pisces_abiogenesis_both_players_gain_2_ap |
Pisces's Abiogenesis gives both players +2 AP.
Preconditions
-
P1 Main Phase, P1 has 3 AP, P2 has 1 AP
-
Lane 0: P1's Pisces (#037) — READIED
Action
- Execute Pisces's Abiogenesis (ability[0], 0 AP, ready, 1x)
result = execute_ability(state, pisces_on_field, ability_idx=0, targets=None)
Expected Postconditions
-
P1 AP: 5 (was 3, +2 from effect)
-
P2 AP: 3 (was 1, +2 from effect)
-
Pisces: still READIED
Assertions
assert result.players[Side.PLAYER_1].ap == 5
assert result.players[Side.PLAYER_2].ap == 3
pisces_after = next(d for d in result.demons if d.unit_id == "037")
assert pisces_after.state == DemonState.READIED