Do you remember de classic detective game?
Clue was a very popular game in the 90's. The plot starts with Mr. Boddy being killed by one of his guests. He was the very rich owner of Tudor Close, who takes the stock character of a generic victim. After his dead, Clue players have to discover who murdered him, with what implement, and where the crime scene took place in his mansion.
Hasbro, the toy maker company and owner of Cluedo, recently changed some of the characters bio. Use the bio to gather information from the characters.
- Fork this repo
- Clone this repo into your
~/code/labs
Upon completion, run the following commands
$ git add .
$ git commit -m "done"
$ git push origin master
Navigate to your repo and create a Pull Request -from your master branch to the original repository master branch.
In the Pull request name, add your name and last names separated by a dash "-"
Write your JavaScript in the provided src/clue.js
file. Submitting this file will be enough.
Clue has three different types of cards: suspects, rooms, and weapons. These three types of cards are always separated. Use data structures to model and create these cards.
In order to do this, you will need to know the game's characters (possible killers), available weapons and house rooms.
This Clue board game has a new roster of playable characters. All of them have first names, last names, occupations, age, description, and images. On the clue.js
file you will find all the info about them.
There are nine weapons. Each of them has different weight, same as the characters, you will find all the info needed on the clue.js
file.
The game board represents the blueprints of a mansion and features fifteen different rooms. Yes, you guess, on the clue.js
file you have all the info.
Create one data structure for each of the people, weapons, and rooms described above. Each document must have all the info.
After creating the data structure, create an array for each type of data and push every document into their corresponding array.
For example:
var mrGreen = {
// Properties
};
var rope = {
// Properties
}
// etc
After creating the data structure, push every document into their corresponding array. charactersArray
, weaponsArray
, roomsArray
.
At the beginning of the game, players shuffle each one of the card stacks to create a combination of suspect, weapon and room. This will be the mystery to solve.
We will be working with test again! You need to open the SpecRunner.html
file in order to see them. The following instructions will guide you through all the methods and functionality your code should have to pass all the tests.
Create a method randomSelector
to randomly select one element from a card stack. The method should receive an array
as an argument, and return randomly one of the elements of the array
.
We need to create a pickMistery
method that will call randomSelector
for each card stack, and return an array with the 3 picked cards, a character, a weapon and a room. Our mystery should be stored on a misteryEnvelope
variable.
Finally, we need to reveal the mystery. Create a revealMistery
method, that will receive our misteryEnvelope
array as an argument and return the revealed mystery like this:
<FIRST NAME> <LAST NAME> killed Mr.Boddy using the <WEAPON> in the <PLACE>!!!!