✅ Judas aura increases ally ap cost
| Category | Ability |
| Status | Passing |
| Test | tests/test_abilities_passive.py::test_judas_aura_increases_ally_ap_cost |
Judas's field aura applies +1 AP Cost to other local allied demons.
Preconditions
-
Lane 0: P1's Judas Iscariot (#029) — READIED
-
Lane 0: P1's Duban (#001) — READIED
Action
- Query get_effective_ap_cost(state, duban, base_cost=2)
result = get_effective_ap_cost(state, duban_on_field, 2)
Expected Postconditions
- Returns 3 (2 base + 1 from Judas aura)
Assertions
assert result == 3, f"Expected AP cost 3 (2+1 Judas aura), got {result}"