Skip to main content

✅ Dionysus drunken match deals 2x pwr both directions

CategoryAbility
StatusPassing
Testtests/test_abilities_actions.py::test_dionysus_drunken_match_deals_2x_pwr_both_directions

Drunken Match deals 2×PWR damage both ways between performer and target.

Preconditions

  • P1 Main Phase, P1 has 5 AP

  • Lane 0: P1's Dionysus (#038) — HP=12, PWR=3, READIED (performer)

  • Lane 0: P2's Sabnock (#003) — HP=15, PWR=2, READIED (target)

  • No DEF on either

Action

  • Execute Dionysus's Drunken Match (ability idx=1, Universal, 2 AP, exhaust)
result = execute_ability(state, dionysus_on_field, ability_idx=1, targets=[sabnock_on_field])
dionysus_after = next(d for d in result.demons if d.unit_id == "038")
sabnock_after = next(d for d in result.demons if d.unit_id == "003")

Expected Postconditions

  • Dionysus: takes 2×Sabnock's PWR = 4 damage

  • Sabnock: takes 2×Dionysus's PWR = 6 damage

  • Dionysus: EXHAUSTED

  • P1 AP: 3 (spent 2)

Assertions

assert dionysus_after.damage == 4
assert sabnock_after.damage == 6
assert dionysus_after.state == DemonState.EXHAUSTED
assert result.players[Side.PLAYER_1].ap == 3