✅ Sekhmet relentless attack deals pwr damage and locks performer
| Category | Ability |
| Status | Passing |
| Test | tests/test_abilities_actions.py::test_sekhmet_relentless_attack_deals_pwr_damage_and_locks_performer |
Sekhmet's Relentless Attack deals PWR damage and locks the performer.
Preconditions
-
P1 Main Phase, P1 has 5 AP
-
Lane 0: P1's Sekhmet (#065) — HP=9, PWR=3, READIED
-
Lane 0: P2's Flauros (#013) — HP=15, DEF=0, READIED
Action
- Execute Sekhmet's Relentless Attack (ability idx=1, Allied, 2 AP) targeting Flauros
result = execute_ability(state, sekhmet_on_field, ability_idx=1, targets=[flauros_on_field])
sekhmet_effects = {e.stat: e.value for e in get_active_effects_on(result, sekhmet_after)}
Expected Postconditions
-
Flauros: takes 3 damage (Sekhmet's PWR=3)
-
Sekhmet (performer): has status "cannot_perform_relentless_attack" 1
-
P1 AP: 3 (spent 2)
Assertions
assert flauros_after.damage == 3
assert sekhmet_effects.get("cannot_perform_relentless_attack") == 1
assert result.players[Side.PLAYER_1].ap == 3