Skip to main content

✅ Raum enemies in other lane not counted

CategoryAbility
StatusPassing
Testtests/test_abilities_passive.py::test_raum_enemies_in_other_lane_not_counted

Raum only counts LOCAL enemies (same lane). Enemies in other lanes

Preconditions

  • Lane 0: P1's Raum (#071) — READIED. Base PWR=4.

  • Lane 1: P2's Duban (#001) — READIED (different lane, not counted)

Action

  • Query get_effective_pwr(state, raum)
result = get_effective_pwr(state, raum_on_field)

Expected Postconditions

  • Returns 4 (base; no local enemies — other-lane enemy doesn't count)

Assertions

assert result == 4, f"Expected PWR=4 (enemy in other lane), got {result}"