✅ Remove all damage blocked by kimaris aura
| Category | Ability |
| Status | Passing |
| Test | tests/test_operations.py::test_remove_all_damage_blocked_by_kimaris_aura |
Full heal (remove_all_damage) is also blocked by Kimaris's aura.
Preconditions
-
Lane 0: P1's Kimaris (#057) — 15 HP, 0 damage, READIED
-
Lane 0: P2's Duban (#001) — 6 HP, 5 damage, READIED
Action
- remove_all_damage(state, target=Duban)
state = make_game_state()
kimaris = make_demon("057", lane=0, owner=Side.PLAYER_1, instance_id=1)
duban = make_demon("001", lane=0, owner=Side.PLAYER_2, instance_id=2, damage=5)
state = place_demon(state, kimaris)
state = place_demon(state, duban)
duban_placed = next(d for d in state.demons if d.unit_id == "001")
new_state = remove_all_damage(state, duban_placed)
duban_after = next(d for d in new_state.demons if d.unit_id == "001")
Expected Postconditions
- Duban.damage = 5 (full heal blocked — same aura rule applies)
Assertions
assert duban_after.damage == 5, "remove_all_damage must also be blocked"