Skip to main content

✅ Haagenti vodka shots three demons in lane

CategoryAbility
StatusPassing
Testtests/test_abilities_actions.py::test_haagenti_vodka_shots_three_demons_in_lane

Haagenti's Vodka Shots with X=3 (three demons in lane) grants +3 PWR.

Preconditions

  • P1 Main Phase, P1 has 5 AP

  • Lane 0: P1's Haagenti (#108) — READIED

  • Lane 0: P1's Sabnock (#003) — READIED

  • Lane 0: P2's Flauros (#013) — READIED

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 = 3 (three demons in lane 0)

  • Haagenti: has status "pwr" +3

  • All demons in lane get +X PWR

Assertions

effects = {e.stat: e.value for e in get_active_effects_on(result, haagenti_after)}
assert effects.get("pwr") == 3
sabnock_effects = {e.stat: e.value for e in get_active_effects_on(result, sabnock_after)}
assert sabnock_effects.get("pwr") == 3