Skip to main content

✅ Azazel aura gives pwr to same lane ally

CategoryAbility
StatusPassing
Testtests/test_abilities_passive.py::test_azazel_aura_gives_pwr_to_same_lane_ally

Azazel's field aura gives +1 PWR to another allied demon in

Preconditions

  • Lane 0: P1's Azazel (#011) — READIED

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

  • Azazel passive: Field aura +1 PWR, +2 DEF to Other Local Allied Demons

Action

  • Query get_effective_pwr(state, duban)
result = get_effective_pwr(state, duban_on_field)

Expected Postconditions

  • Returns 4 (Duban's base PWR 3 + Azazel's +1 PWR aura)

Assertions

assert result == 4, f"Expected PWR=4 (3 base + 1 Azazel aura), got {result}"