✅ Azazel aura gives def to same lane ally
| Category | Ability |
| Status | Passing |
| Test | tests/test_abilities_passive.py::test_azazel_aura_gives_def_to_same_lane_ally |
Azazel's field aura gives +2 DEF to another allied demon in
Preconditions
-
Lane 0: P1's Azazel (#011) — READIED
-
Lane 0: P1's Duban (#001) — READIED (has own +5 DEF passive)
Action
- Query get_effective_def(state, duban)
result = get_effective_def(state, duban_on_field)
Expected Postconditions
- Returns 7 (Duban's +5 DEF passive + Azazel's +2 DEF aura)
Assertions
assert result == 7, f"Expected DEF=7 (5 Duban + 2 Azazel aura), got {result}"