[ ] As a user I should be able to see three buttons for each player
[ ] as a user, I should be able to pick an option for each player
[ ] As a user,after each player makes their selection, I should be told who won and the game should be over
Adventure Mode
[ ] Create a vs computer mode, that picks a selection
[ ] Modify your vs computer mode to follow a specific strategy (your choice)
[ ] Make your computer AI unbeatable
[ ] Give the user a choice to player against the various computer levels or another player
[ ] Have fun with the CSS by adding colors, animations and effects to make the game more enjoyable
Epic Mode
[ ] Your game is currently only 1 vs 1, add the ability to add more computer players to the game
Turning In
Your homework will be assigned to you via issues on your assignments repository. Once you are
These steps will be followed for almost every assignment going forward. Once you've completed at least explorer mode and you're satisfied with your work, let's get it published. First let's get it up on GitHub.
First, let's add all our work to git, and ask it to commit it:
git add .
git commit -m "My first webpage"
Feel free to replace "My first webpage" with a more meaningful message.
Push our local commits to GitHub:
git push -u origin master
The -u option tells git we want to making pushing the master branch to origin the default, so next time, we can just type git push.
Now that our source code is up on GitHub, let's publish our page to Surge. The command to do this has already been setup for you:
yarn deploy
Once you are completely, go to the issue on our assignments repository, leave the link the repo of your work, and close the issue. I will not know you are down until you close the issue.
Rock-Paper-Scissors
Create a simple Rock-Paper-Scissors game
Objectives
Explorer Mode
Adventure Mode
vs computer
mode, that picks a selectionvs computer
mode to follow a specific strategy (your choice)Epic Mode
Turning In
Your homework will be assigned to you via
issues
on yourassignments
repository. Once you areThese steps will be followed for almost every assignment going forward. Once you've completed at least explorer mode and you're satisfied with your work, let's get it published. First let's get it up on GitHub.
First, let's add all our work to git, and ask it to commit it:
Feel free to replace "My first webpage" with a more meaningful message.
Push our local commits to GitHub:
The
-u
option tells git we want to making pushing themaster
branch toorigin
the default, so next time, we can just typegit push
.Now that our source code is up on GitHub, let's publish our page to Surge. The command to do this has already been setup for you:
Once you are completely, go to the issue on our
assignments
repository, leave the link the repo of your work, and close the issue. I will not know you are down until you close the issue.Additional Resources