Skip to main content

Lie

Familiar of Furfur — Card 2 of 3

HPPWRCPSpeedRange
F (Fast)-

Abilities

Passive

When revealed, remove Lie (including Question) from play. Lie is not considered to be Fatally Wounded or to have died.
Engine Implementation
def _lie_reveal_marker(state: GameState, demon: DemonInstance) -> dict:
"""120_2 Lie: 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_2", 0, _lie_reveal_marker)
Lie