✅ Adramelech marker passive registered
| Category | Ability |
| Status | Passing |
| Test | tests/test_abilities_passive.py::test_adramelech_marker_passive_registered |
Adramelech's idx=0 passive is registered (no-op marker slot claim).
Preconditions
- Adramelech passive idx=0 registered
Action
- Query get_passive_modifiers(state, adramelech, "pwr")
result = get_passive_modifiers(state, adramelech_on_field, "pwr")
Expected Postconditions
-
Returns 0 (no-op marker, no stat modification)
-
No error raised (passive exists and is callable)
Assertions
assert result == 0, f"Expected Adramelech no-op passive to return 0 PWR, got {result}"
# Verify the passive is registered
assert "017" in PASSIVE_MODIFIERS, "Adramelech passive idx=0 should be registered"