From d8489fed3fe5097b39ddb617b0922b5fc44aa701 Mon Sep 17 00:00:00 2001 From: John Padworski <128070765+jpadwor1@users.noreply.github.com> Date: Mon, 1 May 2023 12:40:21 -0700 Subject: [PATCH] Create Simon-Game.md --- Projects/1-Beginner/Simon-Game.md | 32 +++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Projects/1-Beginner/Simon-Game.md diff --git a/Projects/1-Beginner/Simon-Game.md b/Projects/1-Beginner/Simon-Game.md new file mode 100644 index 00000000..f9ec4788 --- /dev/null +++ b/Projects/1-Beginner/Simon-Game.md @@ -0,0 +1,32 @@ +# Simon Memory Game + +**Tier:** 1-Beginner + +The Simon game is a simple memorization game where the computer chooses a color. The player has to memorize the sequence and input the correct colors. + +- This simple game helps practice DOM manipulation and basic algorithms. + +## User Stories + +- [ ] User can repeat the play of the game even after game over. +- [ ] The user selected colors flash momentarily indicating the user selection. +- [ ] The computer selection flashes to indicate the next random color in the pattern + + +## Bonus features + +- [ ] A sound is played for each computer and user selection +- [ ] The title of the game changes based on level. So, if the user guesses the pattern 3 times the title should display "Level 4" + +## Useful links and resources + +SetTimeout functions - https://www.w3schools.com/jsref/met_win_settimeout.asp +Array Methods - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array + +## Example projects +Do not look at the source code until your user stories are completed. I encourage the play of the game to get a good understanding of how it actually works. +Source Code:https://github.com/jpadwor1/Simon-Game + +Live Demo:https://jpadwor1.github.io/Simon-Game/ + +![image](https://user-images.githubusercontent.com/128070765/235517452-9f3d4efd-54e8-41a6-b6ab-d0af6511426c.png)