Skip to content

Commit d7e5acd

Browse files
committed
Add new riddle: The Coin That Never Lands
- Created new riddle exploring concepts of potential, possibility, and quantum superposition - Multi-interpretive design allows psychological, physical, philosophical, and existential readings - Uses coin/binary/quantum metaphors with strategic ambiguity - Registered riddle in riddles.js registry - 12 correct answer variations covering potential, possibility, uncertainty, superposition - 17 close answers for related concepts - 8 progressive hints from vague to specific - Comprehensive explanation covering multiple interpretive frames
1 parent 0864ea5 commit d7e5acd

2 files changed

Lines changed: 81 additions & 1 deletion

File tree

system/riddles/riddles.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@ import { riddle as mirrorRiddle } from './mirror.riddle.js';
77
import { riddle as the_paradox_of_progressRiddle } from './the-paradox-of-progress.riddle.js';
88
import { riddle as the_river_that_remembersRiddle } from './the-river-that-remembers.riddle.js';
99
import { riddle as the_archive_of_silenceRiddle } from './the-archive-of-silence.riddle.js';
10+
import { riddle as the_coin_that_never_landsRiddle } from './the-coin-that-never-lands.riddle.js';
1011

1112
// Registry of all riddles
1213
export const riddles = [gatekeeperRiddle,
1314
mirrorRiddle,
1415
the_paradox_of_progressRiddle,
1516
the_river_that_remembersRiddle,
16-
the_archive_of_silenceRiddle];
17+
the_archive_of_silenceRiddle,
18+
the_coin_that_never_landsRiddle];
1719

1820
// Get riddle by ID
1921
export function getRiddleById(id) {
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
/**
2+
* The Coin That Never Lands
3+
* Generated by Riddle Finder Agent
4+
* Source: Original - Quantum existential philosophy meets decision theory
5+
* Date: 2025-12-08
6+
*/
7+
8+
export const riddle = {
9+
id: 'the-coin-that-never-lands',
10+
title: 'The Coin That Never Lands',
11+
text: `I spin between the faces of two truths,
12+
neither false nor real until you look.
13+
The king who rules all kingdoms yet unborn,
14+
the prisoner freed before the lock.
15+
16+
I am the third child of a binary star,
17+
the answer hiding in the question's seam.
18+
The bridge that only exists while crossed,
19+
the waking moment trapped inside the dream.
20+
21+
I hold more power in my flight than landed,
22+
for I am every outcome and none.
23+
The debt that's paid by never being settled,
24+
the race that's won by never being run.
25+
26+
Tell me: am I the choice, or choice's death?
27+
The freedom or the weight of waiting's breath?
28+
29+
And when you call my name, do I collapse,
30+
or multiply in infinite perhaps?`,
31+
correctAnswers: [
32+
'potential',
33+
'possibility',
34+
'potentiality',
35+
'the potential',
36+
'the possible',
37+
'uncertainty',
38+
'superposition',
39+
'quantum superposition',
40+
'indeterminacy',
41+
'the unresolved',
42+
'undecided',
43+
'the undecided'
44+
],
45+
closeAnswers: [
46+
'choice',
47+
'decision',
48+
'probability',
49+
'chance',
50+
'fate',
51+
'future',
52+
'unknown',
53+
'doubt',
54+
'paradox',
55+
'schrodinger',
56+
'quantum',
57+
'limbo',
58+
'indecision',
59+
'hesitation',
60+
'ambiguity',
61+
'options',
62+
'alternatives'
63+
],
64+
hints: [
65+
'Think about a state that exists before resolution',
66+
'Consider what holds more power: the locked box or the opened one?',
67+
'This exists in the space between yes and no',
68+
'Quantum mechanics has a famous concept about cats and boxes',
69+
'It is all things until it becomes one thing',
70+
'The answer is what you lose the moment you make a decision',
71+
'Think about what exists in the "spin" before the coin lands',
72+
'It is the realm of "could be" rather than "is"'
73+
],
74+
wrongAnswerFeedback: 'Not quite. Consider what exists before something becomes definite...',
75+
closeAnswerFeedback: 'You are very close! Think about the state that precedes your answer.',
76+
explanation: 'Potential is the quantum state of unlimited possibility that exists before observation, decision, or resolution. It "spins between two truths" like a coin in flight - neither heads nor tails until it lands. It is "the king who rules all kingdoms yet unborn" because potential contains every possible outcome simultaneously. The "third child of a binary star" refers to the superposition state that transcends binary thinking. Potential holds "more power in flight than landed" because once potential becomes actual, all other possibilities collapse. The coin metaphor references both decision theory and quantum superposition - Schrödinger\'s cat is simultaneously alive and dead in potential until observed. The final paradox asks: when you name potential and make it actual, does it die (collapse into one reality) or does it spawn infinite new potentials? This riddle can be read as psychological (the anxiety of choice), physical (quantum mechanics), philosophical (actualism vs possibilism), or existential (the terror and freedom of unlimited possibility).',
77+
answer: 'Potential'
78+
};

0 commit comments

Comments
 (0)