✅ Flauros tranquil incense exhausts target
| Category | Ability |
| Status | Passing |
| Test | tests/test_abilities_actions.py::test_flauros_tranquil_incense_exhausts_target |
Flauros uses Tranquil Incense to exhaust a local demon.
Preconditions
-
P1 Main Phase, P1 has 5 AP
-
Lane 0: P1's Flauros (#013) — READIED
-
Lane 0: P2's Duban (#001) — READIED
-
Tranquil Incense is Universal (any demon, including enemies, can perform it)
Action
- Execute Flauros's Tranquil Incense (ability[0], Universal, 0 AP, exhaust) targeting Duban
result = execute_ability(state, flauros_on_field, ability_idx=0, targets=[duban_on_field])
duban_after = next(d for d in result.demons if d.unit_id == "001")
flauros_after = next(d for d in result.demons if d.unit_id == "013")
Expected Postconditions
-
Duban: EXHAUSTED (was READIED)
-
Flauros: EXHAUSTED (tap_required=True for the performer)
-
P1 AP: 5 (0 AP cost — unchanged)
Assertions
assert duban_after.state == DemonState.EXHAUSTED
assert flauros_after.state == DemonState.EXHAUSTED
assert result.players[Side.PLAYER_1].ap == 5