Skip to main content

✅ Aries artificial sun deals 2x pwr plus 1 fixed damage

CategoryAbility
StatusPassing
Testtests/test_abilities_actions.py::test_aries_artificial_sun_deals_2x_pwr_plus_1_fixed_damage

Aries Artificial Sun deals (2×PWR)+1 Fixed Damage to a Distant target.

Preconditions

  • P1 Main Phase, P1 has 6 AP

  • Lane 0: P1's Aries (#023) — HP=9, PWR=3, READIED

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

Action

  • Execute Aries's Artificial Sun (ability[1], 5 AP, exhaust) targeting Sabnock

  • Fixed Damage = (2×3)+1 = 7

result = execute_ability(state, aries_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 exactly 7 damage (Fixed Damage bypasses DEF)

  • Aries: EXHAUSTED

  • P1 AP: 1 (was 6, spent 5)

Assertions

assert sabnock_after.damage == 7
assert aries_after.state == DemonState.EXHAUSTED
assert result.players[Side.PLAYER_1].ap == 1