Skip to main content

✅ Botis mortal strike fixed damage bypasses def

CategoryAbility
StatusPassing
Testtests/test_abilities_actions.py::test_botis_mortal_strike_fixed_damage_bypasses_def

Mortal Strike uses Fixed Damage — bypasses DEF.

Preconditions

  • Lane 0: P1's Botis (#079) — HP=9, damage=3, READIED

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

  • Mortal Strike damage = 2×3 = 6 Fixed

Action

  • P1 activates Botis's Mortal Strike targeting Sabnock
result = execute_ability(state, botis_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 6 damage (2×3, Fixed — bypasses any DEF)

Assertions

assert sabnock_after.damage == 6