Skip to main content

✅ Glasya labolas pwr scales with damage

CategoryAbility
StatusPassing
Testtests/test_abilities_passive.py::test_glasya_labolas_pwr_scales_with_damage

Glasya-Labolas's passive gives +1 PWR for every 2 damage on it.

Preconditions

  • Lane 0: P1's Glasya-Labolas (#032) — READIED, base PWR=3, damage=4

Action

  • Query get_effective_pwr(state, glasya)
result = get_effective_pwr(state, glasya_on_field)

Expected Postconditions

  • Returns 5 (base 3 + 4//2 = 2 bonus = 5)

Assertions

assert result == 5, f"Expected PWR=5 (3 base + 4//2=2 bonus), got {result}"