-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathclue.js
178 lines (173 loc) · 3.23 KB
/
clue.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
// Suspects Array
//! ALED
const suspectsArray = [
{
firstName: "Jacob",
lastName: "Green",
occupation: "Entrepreneur",
age: 45,
description: "He has a lot of connections",
image:
"https://pbs.twimg.com/profile_images/506787499331428352/65jTv2uC.jpeg",
color: "green",
},
{
firstName: "Doctor",
lastName: "Orchid",
occupation: "Scientist",
age: 26,
description: "PhD in plant toxicology. Adopted daughter of Mr. Boddy",
image: "http://www.radiotimes.com/uploads/images/Original/111967.jpg",
color: "white",
},
{
firstName: "Victor",
lastName: "Plum",
occupation: "Designer",
age: 22,
description: "Billionaire video game designer",
image:
"https://66.media.tumblr.com/ee7155882178f73b3781603f0908617c/tumblr_phhxc7EhPJ1w5fh03_540.jpg",
color: "purple",
},
{
firstName: "Kasandra",
lastName: "Scarlet",
occupation: "Actor",
age: 31,
description: "She is an A-list movie star with a dark past",
image: "https://www.radiotimes.com/uploads/images/Original/111967.jpg",
color: "red",
},
{
firstName: "Eleanor",
lastName: "Peacock",
occupation: "Socialité",
age: 36,
description:
"She is from a wealthy family and uses her status and money to earn popularity",
image: "https://metrouk2.files.wordpress.com/2016/07/mrs-peacock.jpg",
color: "blue",
},
{
firstName: "Jack",
lastName: "Mustard",
occupation: "Retired Football player",
age: 62,
description:
"He is a former football player who tries to get by on his former glory",
image:
"https://static.independent.co.uk/s3fs-public/thumbnails/image/2016/07/04/08/unspecified-3.jpg",
color: "yellow",
},
];
// Rooms Array
//! it's easy
const roomsArray = [
{
name: "Dining Room",
},
{
name: "Conservatory",
},
{
name: "Kitchen",
},
{
name: "Study",
},
{
name: "Library",
},
{
name: "Billiard Room",
},
{
name: "Lounge",
},
{
name: "Ballroom",
},
{
name: "Hall",
},
{
name: "Spa",
},
{
name: "Living Room",
},
{
name: "Observatory",
},
{
name: "Theater",
},
{
name: "Guest House",
},
{
name: "Patio",
},
];
// Weapons Array
//! easy to
const weaponsArray = [
{
name: "rope",
weight: 10,
},
{
name: "knife",
weight: 8,
},
{
name: "candlestick",
weight: 2,
},
{
name: "dumbbell",
weight: 30,
},
{
name: "poison",
weight: 2,
},
{
name: "axe",
weight: 15,
},
{
name: "bat",
weight: 13,
},
{
name: "trophy",
weight: 25,
},
{
name: "pistol",
weight: 20,
},
];
// ITERATION 2
//! not so hard
function selectRandom(array) {
if (array.length === 0) {
return undefined;
}
return array[Math.floor(Math.random() * array.length)];
}
// ! easy to i think
function pickMystery() {
return {
suspect: selectRandom(suspectsArray),
room: selectRandom(roomsArray),
weapon: selectRandom(weaponsArray),
};
}
// ITERATION 3
//! the easier
function revealMystery({ suspect, room, weapon }) {
return `${suspect.firstName} ${suspect.lastName} killed Mr. Boddy using the ${weapon.name} in the ${room.name}!`;
}