Skip to content

Latest commit

 

History

History
172 lines (128 loc) · 4.24 KB

File metadata and controls

172 lines (128 loc) · 4.24 KB

Jeopardy Game - Complete Gameplay Example

Setup

  • Players: Alice, Bob, Carol
  • Categories: Science, History, Sports, Literature, Geography
  • CSV: Contains 5 questions per category at $100, $200, $300, $400, $500

Starting scores: All at $0


ROUND 1: JEOPARDY

Values: $100-$500 | Multiplier: 1x

Gameplay

Question 1: Bob answers Science $300 correctly

  • Question: "What is H2O?"
  • Bob's answer is correct
  • Score: Bob gets +$300 → Bob: $300

Question 2: Alice answers History $200 correctly

  • Question: "Who was the first president?"
  • Alice's answer is correct
  • Score: Alice gets +$200 → Alice: $200

Question 3: Carol answers Sports $500 correctly

  • Question: "How many points is a touchdown?"
  • Carol's answer is correct
  • Score: Carol gets +$500 → Carol: $500

Question 4: Bob answers Science $500 correctly

  • Score: Bob gets +$500 → Bob: $800

Question 5: Alice answers Geography $400 correctly

  • Score: Alice gets +$400 → Alice: $600

(Continue playing through all 25 questions...)

End of Jeopardy Round

Sample Scores:

  • Alice: $2100
  • Bob: $2800
  • Carol: $1200

What Happens Next

A modal appears: "Jeopardy Complete! All questions have been answered."

Host clicks: "Continue to Double Jeopardy →"


ROUND 2: DOUBLE JEOPARDY

Values: $200-$1000 | Multiplier: 2x

Board State

  • ALL QUESTIONS RESET - Every tile is available again
  • Same questions as Round 1 but values are doubled
  • Scores carry over from Jeopardy

Gameplay

Question 1 (same Science question as before): Carol answers correctly

  • Question: "What is H2O?" (same as Jeopardy)
  • Value is now $600 (was $300, now 2x)
  • Carol gets +$600 → Carol: $1800

Question 2: Bob answers Science $1000 (the $500 question × 2)

  • Question: Same Science question as Jeopardy Round 1
  • Value is now $1000 (was $500, now 2x)
  • Bob gets +$1000 → Bob: $3800

Question 3: Alice answers History $400 (the $200 question × 2)

  • Value is now $400 (was $200, now 2x)
  • Alice gets +$400 → Alice: $2500

(Continue playing through all 25 questions again...)

End of Double Jeopardy Round

Sample Scores:

  • Bob: $6500
  • Alice: $5200
  • Carol: $4800

Another modal appears: "Double Jeopardy Complete! All questions have been answered."

Host clicks: "Continue to Final Jeopardy →"


ROUND 3: FINAL JEOPARDY

Single Question with Wagering

Setup

Host enters:

  • Category: "World Capitals"
  • Question: "This is the capital of France"
  • Answer: "Paris"

Betting Phase

Players can wager up to their current score:

Bob's Bet:

  • Current score: $6500
  • Bob is in the lead
  • Bob wagers: $2000

Alice's Bet:

  • Current score: $5200
  • Alice wagers: $3000

Carol's Bet:

  • Current score: $4800
  • Carol wagers: $1500

Question Display

The Final Jeopardy question is displayed: "This is the capital of France"

Response Phase

Bob's Response:

  • Bob responds: "What is Paris?"
  • Correct ✓
  • Score update: $6500 + $2000 = $8500

Alice's Response:

  • Alice responds: "What is Madrid?"
  • Incorrect ✗
  • Score update: $5200 - $3000 = $2200

Carol's Response:

  • Carol responds: "What is Paris?"
  • Correct ✓
  • Score update: $4800 + $1500 = $6300

Final Results

🎉 Winner: Bob
Final Score: $8500
━━━━━━━━━━━━━━━
Final Standings:
1. Bob:   $8500 🏆
2. Carol: $6300
3. Alice: $2200

Key Takeaways

Round 1 to Round 2 Transition

  • ✓ Same questions reappear
  • ✓ Values are doubled (2x multiplier)
  • ✓ All tiles reset to unanswered
  • ✓ Player scores carry over
  • ✓ Host can edit scores anytime between rounds

Round 2 to Round 3 Transition

  • ✓ Navigate to Final Jeopardy screen
  • ✓ Host enters custom question
  • ✓ Players see betting interface
  • ✓ Questions and responses are custom

Score Progression Example

After Jeopardy:        Alice $2100, Bob $2800, Carol $1200
After Double Jeopardy: Alice $5200, Bob $6500, Carol $4800
After Final:           Alice $2200, Bob $8500, Carol $6300

The beauty of the three-round structure is that it keeps the game engaging, allows scores to build up significantly, and creates exciting Final Jeopardy wagering moments!