Skip to main content

✅ Deals 2x fixed damage and zeroes ap

CategoryAbility
StatusPassing
Testtests/test_abilities_complex.py::TestPiscesExtinction::test_deals_2x_fixed_damage_and_zeroes_ap

PRECONDITIONS:

Action

  • Pisces (#037) activates Extinction targeting enemy with 3 AP remaining

  • X=3, damage = 2*3 = 6 Fixed

Expected Postconditions

  • Enemy: 6 damage (Fixed, bypasses DEF)

  • P1 AP: 0 (lost all remaining)

Assertions

assert enemy_after.damage == 6, "2*3=6 Fixed damage expected"
assert result.players[Side.PLAYER_1].ap == 0, "P1 should have 0 AP after Extinction"