✅ Haagenti vodka shots self use is valid
| Category | Ability |
| Status | Passing |
| Test | tests/test_abilities_actions.py::test_haagenti_vodka_shots_self_use_is_valid |
Haagenti can use Vodka Shots on itself (Allied: self-use is valid).
Preconditions
-
P1 Main Phase, P1 has 5 AP
-
Lane 0: P1's Haagenti (#108) — READIED
-
Lane 0: P1's Sabnock (#003) — READIED
Action
- Haagenti performs Vodka Shots (Allied, 1 AP, ready)
result = execute_ability(state, haagenti_on_field, ability_idx=0, targets=[])
Expected Postconditions
-
No error (self-use is valid for Allied actions)
-
Haagenti gets +X PWR (X = demons in same lane)
Assertions
# Should not raise any exception
assert result is not None
haagenti_after = next(d for d in result.demons if d.unit_id == "108")
effects = {e.stat: e.value for e in get_active_effects_on(result, haagenti_after)}
assert "pwr" in effects