✅ Applies def buff to local allies
| Category | Ability |
| Status | Passing |
| Test | tests/test_abilities_complex.py::TestBarbasBondsOfSolidarity::test_applies_def_buff_to_local_allies |
PRECONDITIONS:
Action
-
Barbas activates Bonds of Solidarity (targets own lane)
-
2 allied demons in Lane 0 (Barbas + Ally A)
Expected Postconditions
-
Ally A: has +2 DEF status
-
Barbas: no DEF buff (excludes self)
Assertions
assert len(ally_def) == 1, "Allied demon should have +DEF status"
assert ally_def[0].value == 2
assert len(barbas_def) == 0, "Barbas should NOT get DEF buff (excludes self)"