Skip to main content

✅ Great blue spot fixed damage ignores def

CategoryAbility
StatusPassing
Testtests/test_abilities_complex.py::TestFocalorGreatBlueSpot::test_great_blue_spot_fixed_damage_ignores_def

Fixed Damage bypasses DEF entirely. Duban with +5 DEF still takes full fixed damage.

Preconditions

  • P1 Main Phase, P1 has 6 AP

  • Lane 0: P1's Focalor (#069, PWR=5), READIED

  • Lane 1: P2's Duban (#001) with passive +5 DEF registered, HP=6, 0 damage

Action

  • Focalor uses Great Blue Spot targeting Lane 1

  • Total: 3 × 5 = 15 Fixed. DEF does NOT reduce fixed damage.

result = execute_ability(state, focalor_p, ability_idx=0, choices={"lane": 1})

Expected Postconditions

  • Duban takes 15 damage (DEF ignored — Fixed Damage)

  • Duban fatally wounded → removed

Assertions

assert not any(d.unit_id == "001" for d in result.demons), (
"Duban (HP=6) must be removed — Fixed Damage ignores DEF"
)