Skip to main content

✅ Auns willpower readies self and deals 3 fixed damage

CategoryAbility
StatusPassing
Testtests/test_abilities_actions.py::test_auns_willpower_readies_self_and_deals_3_fixed_damage

Auns uses Willpower — readies itself and takes 3 Fixed Damage.

Preconditions

  • P1 Main Phase, P1 has 5 AP

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

Action

  • Execute Auns's Willpower (ability[1], 0 AP, 1x)
result = execute_ability(state, auns_on_field, ability_idx=1, targets=None)
auns_after = next(d for d in result.demons if d.unit_id == "042")

Expected Postconditions

  • Auns: READIED (Willpower effect readies Auns)

  • Auns: takes 3 Fixed Damage → damage=3

  • P1 AP: 5 (0 AP cost — unchanged)

Assertions

assert auns_after.state == DemonState.READIED
assert auns_after.damage == 3
assert result.players[Side.PLAYER_1].ap == 5