diff --git a/Projects/2-Intermediate/Hangman-Game.md b/Projects/2-Intermediate/Hangman-Game.md new file mode 100644 index 00000000..690aa1dc --- /dev/null +++ b/Projects/2-Intermediate/Hangman-Game.md @@ -0,0 +1,40 @@ +# Hangman Game + +**Tier:** 2-Intermediate + +Hangman is a word puzzle game that allows the user to guess missing +letters one at a time to solve the missing word or phrase. + +A user will select a letter from A - Z on a keyboard displayed on the +screen. If true, the selected letter will be disabled from the keyboard +and will display in the correct spot in the word/phrase. If false, the +selected letter will be disabled from the keyboard and a piece of a +stick figure will be displayed. If the missing word/phrase is solved +before all the pieces of the stick figure is shown you win, and vice versa. + +## User Stories + +- [ ] User can see a number of blank spaces that represents the missing letters + and a keyboard with all the letters of the alphabet on it +- [ ] User can guess the word/phrase by clicking on a letter one at a time +- [ ] Letters will be disabled from the keyboard after it is clicked on +- [ ] User can see the letter appear in all places of the word/phrase + where the letter exists +- [ ] User can see the stick figure appear piece by piece for every + wrong guess +- [ ] User will need to solve the puzzle before the whole hangman appears + +## Bonus features + +- [ ] User can click the 'HINT' button to get help solving the puzzle +- [ ] User can click the 'SHUFFLE' button to generate a new random word/phrase +- [ ] User can be added to a TOP SCORER list + +## Useful links and resources + +- [How to Play Hangman - YouTube video](https://www.youtube.com/watch?v=cGOeiQfjYPk) + +## Example projects + +- [HangMan Game](https://thewordsearch.com/hangman/) +- [Create Your Own Hangman Game](https://www.hangmanwords.com/create)