✅ Dionysus drunken match universal performer owns card
| Category | Ability |
| Status | Passing |
| Test | tests/test_abilities_actions.py::test_dionysus_drunken_match_universal_performer_owns_card |
Drunken Match is Universal — performer must own the card.
Preconditions
-
P1 Main Phase, P1 has 5 AP
-
Lane 0: P1's Dionysus (#038) — HP=12, PWR=3, READIED
-
Lane 0: P2's Flauros (#013) — HP=15, PWR=2, READIED
Action
- Dionysus performs Drunken Match (ability idx=1, Universal, 2 AP, exhaust)
result = execute_ability(state, dionysus_on_field, ability_idx=1, targets=[flauros_on_field])
dionysus_after = next(d for d in result.demons if d.unit_id == "038")
flauros_after = next(d for d in result.demons if d.unit_id == "013")
Expected Postconditions
-
Flauros: takes 2×3 = 6 damage
-
Dionysus: takes 2×2 = 4 damage
-
(Universal: performer owns the card, uses their own PWR stats)
Assertions
assert flauros_after.damage == 6
assert dionysus_after.damage == 4