- You will be given a random number at the start of the game
- By clicking on a crystal you will add a specific amount of points to your total score.
- The value of each crystal is hidden from you until you click on it.
- You win the game by matching your total score to random number
- Enjoy!
- Create a game that challenges the user to equal the given number by adding the value of the 4 gems provided. Each gem/crystal will have a random unknown value which will be added to the user number by each click.
- User will have to make his own calculation in order to equal his number to the given number. Given number is also a random number provided.
- Create the backbone html
- Create provided random number and gems random numbers. Make sure they don't repeat between each others.
- Create buttons and show all random numbers on screen
- Create the functions to add values and dynamically show on screen on each click
- Function in case user wins.
- Restart the game using counters for each win/lose.