✅ Libra zero sum fatally wounds both targets no cp
| Category | Ability |
| Status | Passing |
| Test | tests/test_abilities_actions.py::test_libra_zero_sum_fatally_wounds_both_targets_no_cp |
Libra's Zero Sum fatally wounds both targets without awarding CP.
Preconditions
-
P1 Main Phase, P1 has 3 AP, P1 has 0 CP, P2 has 0 CP
-
Lane 0: P1's Libra (#078) — HP=15, READIED
-
Lane 1: P1's Sabnock (#003) — HP=15, CP=4, READIED (P1's target)
-
Lane 2: P2's Flauros (#013) — HP=15, CP=4, READIED (P2's target)
Action
- Execute Libra's Zero Sum (ability idx=0, 0 AP, exhaust, 1x) targets=[Sabnock, Flauros]
result = execute_ability(state, libra_on_field, ability_idx=0, targets=[sabnock_on_field, flauros_on_field])
Expected Postconditions
-
Sabnock and Flauros: fatally wounded, removed from board
-
Zero Sum explicitly grants NO CP to either player
Assertions
assert not any(d.unit_id == "003" for d in result.demons)
assert not any(d.unit_id == "013" for d in result.demons)
assert result.players[Side.PLAYER_1].cp == 0
assert result.players[Side.PLAYER_2].cp == 0