- JavaScript
- jQuery
- Bootstrap
- HTML/CSS
- Database: Firebase
Players have the option to play against the computer in Single Player Mode, or against an opponent (through the use of Firebase). Currently supports one multiplayer game at a time.
Select your weapon, or taunt your opponent through the built in messaging.
# Unit 7 Assignment - Rock Paper Scissors (Challenge)RPS? Again?! What?!!
In this assignment, you'll indeed create another Rock Paper Scissors game. The catch? You're going to make this an online multiplayer game, all with the help of Firebase (and the rest of your web development repertoire)!
- Whether you finish the game or not, you must hand in your code by the due date to avoid having your work marked incomplete.
- We don't expect every student to finish this assignment. Still, we do want to see you program this game as best you can.
By Unit 9. Try your absolute best to finish this homework.
-
Create a GitHub repo called
RPS-Multiplayer
and clone it to your computer. -
Create a file inside of your
RPS-Multiplayer
folder calledindex.html
. This is where your page's HTML will go. -
Inside
RPS-Multiplayer
, create yourassets
directory. -
Create the folders and files you typically place in
assets
-- just like you had for the prior unit's homework assignments.
-
Create a game that suits this user story:
-
Only two users can play at the same time.
-
Both players pick either
rock
,paper
orscissors
. After the players make their selection, the game will tell them whether a tie occurred or if one player defeated the other. -
The game will track each player's wins and losses.
-
Throw some chat functionality in there! No online multiplayer game is complete without having to endure endless taunts and insults from your jerk opponent.
-
Styling and theme are completely up to you. Get Creative!
-
Deploy your assignment to Github Pages.
-