Truth
Familiar of Furfur — Card 1 of 3
| HP | PWR | CP | Speed | Range |
|---|---|---|---|---|
| — | — | — | F (Fast) | - |
Abilities
Passive
When revealed, remove Truth (including Question) from play. Truth is not considered to be Fatally Wounded or to have died.
Engine Implementation
def _truth_reveal_marker(state: GameState, demon: DemonInstance) -> dict:
"""120_1 Truth: marker passive — when revealed, removed without dying.
Returns {"reveal_removes_without_death": 1} as documentation.
The actual reveal logic is in _question_reveal_and_remove and
_question_challenge_handler.
"""
return {"reveal_removes_without_death": 1}
register_passive("120_1", 0, _truth_reveal_marker)