Skip to main content

✅ Tyr dromi moves distant and gives ignore costs status

CategoryAbility
StatusPassing
Testtests/test_abilities_actions.py::test_tyr_dromi_moves_distant_and_gives_ignore_costs_status

Tyr's Dromi moves a distant demon to Tyr's lane and grants ignore costs.

Preconditions

  • P1 Main Phase, P1 has 3 AP

  • Lane 1: P1's Tyr (#048) — READIED

  • Lane 2: P2's Sabnock (#003) — READIED (distant from Tyr)

Action

  • Execute Tyr's Dromi (ability idx=0, 0 AP, exhaust, 1x) targeting Sabnock
result = execute_ability(state, tyr_on_field, ability_idx=0, targets=[sabnock_on_field])
tyr_effects = {e.stat: e.value for e in get_active_effects_on(result, tyr_after)}

Expected Postconditions

  • Sabnock: moved to lane 1 (Tyr's lane)

  • Tyr: EXHAUSTED

  • Tyr: has status "ignore_exhaust" 1 and "ignore_ready" 1

  • P1 AP: 3 (0 AP cost)

Assertions

assert sabnock_after.lane == 1
assert tyr_after.state == DemonState.EXHAUSTED
assert tyr_effects.get("ignore_exhaust") == 1
assert tyr_effects.get("ignore_ready") == 1