Skip to main content

✅ Botis mortal strike zero damage on botis

CategoryAbility
StatusPassing
Testtests/test_abilities_actions.py::test_botis_mortal_strike_zero_damage_on_botis

Botis at 0 damage — Mortal Strike deals 2×0=0 damage to target.

Preconditions

  • P1 Main Phase, P1 has 5 AP

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

  • Lane 0: P2's Flauros (#013) — HP=15, damage=0, READIED

Action

  • P1 activates Botis's Mortal Strike (idx=1, 3 AP, exhaust, 1x) targeting Flauros
result = execute_ability(state, botis_on_field, ability_idx=1, targets=[flauros_on_field])
flauros_after = next(d for d in result.demons if d.unit_id == "013")

Expected Postconditions

  • Flauros: takes 0 damage (2×0=0)

  • Botis: EXHAUSTED, AP spent

Assertions

assert flauros_after.damage == 0
assert botis_after.state == DemonState.EXHAUSTED