✅ Lucifer reflects damage to local
| Category | Ability |
| Status | Passing |
| Test | tests/test_abilities_complex.py::TestLuciferDamageReflection::test_lucifer_reflects_damage_to_local |
Lucifer takes damage and reflects it to a local demon.
Preconditions
-
P1 Main Phase
-
Lane 0: P1's Lucifer (#088) — 15 HP, 0 damage, READIED
-
Lane 0: P1's Duban (#001) — 6 HP, 0 damage, READIED
Action
- Fire DAMAGE_RECEIVED for Lucifer, value=4
result = fire_event(state, event)
duban_after = next(d for d in result.demons if d.unit_id == "001")
Expected Postconditions
-
Duban: 4 damage (Lucifer's reflection — Fixed Damage)
-
Lucifer: still on field (reflection does NOT kill Lucifer)
Assertions
assert duban_after.damage == 4, (
f"Duban must have taken 4 reflected Fixed Damage. Got {duban_after.damage}."
)