✅ Flauros rousing incense readies target and applies cannot act status
| Category | Ability |
| Status | Passing |
| Test | tests/test_abilities_actions.py::test_flauros_rousing_incense_readies_target_and_applies_cannot_act_status |
Flauros uses Rousing Incense to ready a demon then apply a cannot_act status.
Preconditions
-
P1 Main Phase, P1 has 5 AP
-
Lane 0: P1's Flauros (#013) — READIED
-
Lane 0: P2's Duban (#001) — EXHAUSTED
Action
- Execute Flauros's Rousing Incense (ability[1], Universal, 0 AP, exhaust) targeting Duban
result = execute_ability(state, flauros_on_field, ability_idx=1, targets=[duban_on_field])
duban_after = next(d for d in result.demons if d.unit_id == "001")
Expected Postconditions
-
Duban: READIED (was EXHAUSTED)
-
Duban: has status "cannot_act" +1 (expires this phase)
-
Flauros: EXHAUSTED
-
P1 AP: 5 (0 AP cost — unchanged)
Assertions
assert duban_after.state == DemonState.READIED
assert len(cannot_act_effects) == 1
assert cannot_act_effects[0].value == 1