Skip to main content

✅ Great blue spot fused pwr scales

CategoryRegression
StatusPassing
Testtests/test_abilities_complex.py::TestFocalorGreatBlueSpot::test_great_blue_spot_fused_pwr_scales

Regression: Fusion bonus fPWR multiplies through PWR-scaling abilities. Focalor fused with Thanatos uses combined PWR.

Preconditions

  • P1 Main Phase, P1 has 10 AP

  • Lane 0: P1's Focalor (#069, base PWR=5) FUSED with Thanatos (#004, fPWR=3)

  • Effective PWR = 5 + 3 = 8

  • Lane 1: P2's Duban (#001, HP=6, 0 damage), only demon in lane 1

Action

  • Focalor uses Great Blue Spot targeting Lane 1

  • Total: 3 × 8 = 24 Fixed, 1 demon → ceil(24/1) = 24

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

Expected Postconditions

  • Duban takes 24 Fixed Damage → fatally wounded → removed from board

  • P1 AP: 6 (10 - 4)

Assertions

assert not any(d.unit_id == "001" for d in result.demons)