Skip to main content

✅ Haagenti vodka shots single demon in lane

CategoryAbility
StatusPassing
Testtests/test_abilities_actions.py::test_haagenti_vodka_shots_single_demon_in_lane

Haagenti's Vodka Shots with X=1 (single demon in lane) grants +1 PWR.

Preconditions

  • P1 Main Phase, P1 has 5 AP

  • Lane 0: P1's Haagenti (#108) — HP=15, damage=0, READIED

  • Lane 1: P2's Flauros (#013) — HP=15, READIED (different lane — not counted)

Action

  • P1 activates Haagenti's Vodka Shots (idx=0, Allied, 1 AP, ready)
result = execute_ability(state, haagenti_on_field, ability_idx=0, targets=[])
haagenti_after = next(d for d in result.demons if d.unit_id == "108")

Expected Postconditions

  • X = 1 (only Haagenti in lane 0)

  • Haagenti: has status "pwr" +1

  • Haagenti: NOT exhausted (ready cost)

  • P1 AP: 4 (spent 1)

Assertions

effects = {e.stat: e.value for e in get_active_effects_on(result, haagenti_after)}
assert effects.get("pwr") == 1
assert haagenti_after.state == DemonState.READIED