Skip to main content

✅ Azag sadism deals 2 damage through def

CategoryAbility
StatusPassing
Testtests/test_abilities_actions.py::test_azag_sadism_deals_2_damage_through_def

Azag's Sadism deals 2 damage (reduced by DEF) to in-range target.

Preconditions

  • P1 Main Phase, P1 has 3 AP

  • Lane 0: P1's Azag (#066) — READIED, PWR=2

  • Lane 0: P2's Sabnock (#003) — HP=15, READIED, no DEF

Action

  • Execute Azag's Sadism (ability idx=1, Quick, 1 AP, ready, 1x) targeting Sabnock
result = execute_ability(state, azag_on_field, ability_idx=1, targets=[sabnock_on_field])
sabnock_after = next(d for d in result.demons if d.unit_id == "003")

Expected Postconditions

  • Sabnock: takes 2 damage (deal_damage — NOT fixed, goes through DEF)

  • Azag: NOT exhausted (ready cost)

  • P1 AP: 2 (spent 1)

Assertions

assert sabnock_after.damage == 2
assert azag_after.state == DemonState.READIED
assert result.players[Side.PLAYER_1].ap == 2