Skip to main content

✅ Aries artificial sun fixed damage bypasses def

CategoryAbility
StatusPassing
Testtests/test_abilities_actions.py::test_aries_artificial_sun_fixed_damage_bypasses_def

Artificial Sun uses Fixed Damage — DEF does not reduce it.

Preconditions

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

  • Lane 2: P2's Sabnock (#003) — has +5 DEF status applied manually

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

Action

  • Execute Artificial Sun targeting Sabnock with +5 DEF
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 — DEF irrelevant)

Assertions

assert sabnock_after.damage == 7