✅ Raum def scales with enemies
| Category | Interaction |
| Status | Passing |
| Test | tests/test_abilities_passive.py::test_raum_def_scales_with_enemies |
Raum's DEF decreases with the number of local enemy demons.
Preconditions
-
Lane 0: P1's Raum (#071) — READIED
-
Lane 0: P2's Duban (#001) — READIED (1 enemy)
-
Lane 0: P2's Murmur (#002) — READIED (2nd enemy)
-
X = 2
Action
- Query get_effective_def(state, raum)
result = get_effective_def(state, raum_on_field)
Expected Postconditions
- Returns -2 (0 base DEF - 2 from 2 local enemies)
Assertions
assert result == -2, f"Expected DEF=-2 (0-2), got {result}"