I change how the game would work

This commit is contained in:
mdecker6
2025-11-20 09:40:41 -05:00
parent a3de312804
commit 43b056c7b0
2 changed files with 104 additions and 1 deletions

View File

@@ -9,8 +9,16 @@ Completing the full word increases the score by 1.
Pressing a wrong key resets the progress, and you have to start over again.
Game ends when the player completes the word.
***revised 11/20/25
I want to add a ladder where an orb goes up everytime you get a right word
The word CODING has 6 letters → the ladder has 6 levels.
for every correct letter the index increases and the orb moves up one step
The progress display reveals that letter
If plaher enters a wrong letter, the ladder resets, then the orb then falls to the bottom
When the orb reaches the top you spelled the entire word correctly and win.
The game uses code from retro:
-game class: class MysteryCodingGame(Game)
-game class
-agent class
-state
-agents
@@ -31,6 +39,7 @@ The game uses code from retro:
-as the player gets letters right, it shows progrees in the word: c o _ _ _ _
4. Scoring mechanic
-Each time the player finishes the entire word "coding": Score goes up by 1, then progress resets
5. Ladder animation
# Milestones
1. Build the Retro Game Structure
2. Create the Core Gameplay Mechanics