Skip to main content

✅ Get effective pwr with status

CategoryAbility
StatusPassing
Testtests/test_operations.py::test_get_effective_pwr_with_status

A status effect modifies a demon's PWR.

Preconditions

  • Lane 0: P1's Duban (#001) — READIED

  • Duban base PWR = 3

  • Active status effect: -2 PWR on Duban

Action

  • get_effective_pwr(state, duban)

Expected Postconditions

  • effective PWR = max(0, 3 - 2) = 1

Assertions

assert effective_pwr == 1