forked from N-Shar-ma/FOSS-Weekend-Emoji-Card-Game
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdecks.js
More file actions
434 lines (432 loc) · 14.9 KB
/
decks.js
File metadata and controls
434 lines (432 loc) · 14.9 KB
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
const decks = [
{
name: "Animated Movies",
instructions: "The emoji/s on each card are a clue for an animated movie. You can flip (click) the card to see an additional hint. Drag and drop a card onto the matching text clue on the right, which will be the movie name in easy mode, and a character/place in the movie in the challenging mode. You can make a maximum of 3 wrong matches.",
cards: [
{
name: "Frozen",
content: {
primary: "❄️",
secondary: "🏔️🚪"
},
hint: "Has 2 female protagonists",
matchValue: "Arendelle",
seenHint: false
},
{
name: "Snow White and the Seven Dwarfs",
content: {
primary: "🍎", secondary: "👸😗"
},
hint: "Earliest animated feature film",
matchValue: "Dopey",
seenHint: false
},
{
name: "Zootopia",
content: {
primary: "🐰",
secondary: "👮♀️🦊"
},
hint: "Shakira featured in a song",
matchValue: "Hopps",
seenHint: false
},
{
name: "The Lion King",
content: {
primary: "🦁",
secondary: "🐗🐦"
},
hint: "Has a live action remake",
matchValue: "Pride Rock",
seenHint: false
},
{
name: "Moana",
content: {
primary: "🌊",
secondary: "🏝⛵"
},
hint: "Based on Polynesian culture",
matchValue: "Motunui",
seenHint: false
},
{
name: "Finding Nemo",
content: {
primary: "🐠",
secondary: "🐟🌊"
},
hint: "Protagonist has a slight deformity",
matchValue: "Great Barrier Reef",
seenHint: false
},
{
name: "Toy Story",
content: {
primary: "🤠",
secondary: "🤖🧒"
},
hint: "Beginning of a franchise",
matchValue: "Andy",
seenHint: false
},
{
name: "Aladdin",
content: {
primary: "🧞",
secondary: "👳♀️🐒"
},
hint: "Based on a middle eastern folk tale",
matchValue: "Jafar",
seenHint: false
},
{
name: "The Little Mermaid",
content: {
primary: "🧜♀️",
secondary: "🦵🗣️"
},
hint: "Based on a Hans Christian Anderson tale",
matchValue: "Triton",
seenHint: false
},
{
name: "Inside Out",
content: {
primary: "😄",
secondary: "😔😡"
},
hint: "The main characters are emotions",
matchValue: "Riley",
seenHint: false
},
{
name: "101 Dalmations",
content: {
primary: "🐕",
secondary: "⬛⬜"
},
hint: "Has a live action remake",
matchValue: "Cruella",
seenHint: false
},
{
name: "Up",
content: {
primary: "🎈",
secondary: "🏡🐕"
},
hint: "Protagonist is an elderly widower",
matchValue: "Paradise Falls",
seenHint: false
},
{
name: "Pinocchio",
content: {
primary: "🤥",
secondary: "👃🧚♀️"
},
hint: "Protagonist transitions from puppet to boy",
matchValue: "Woodworker",
seenHint: false
},
{
name: "The Incredibles",
content: {
primary: "🦸♂️",
secondary: "🦸♀️🎭"
},
hint: "Family of superheroes living as muggles 😉",
matchValue: "Elastigirl",
seenHint: false
},
{
name: "Dumbo",
content: {
primary: "🐘",
secondary: "🎪👂"
},
hint: "Has a live action reimagining",
matchValue: "Mrs. Jumbo",
seenHint: false
},
{
name: "Sleeping Beauty",
content: {
primary: "😴",
secondary: "👸🧚"
},
hint: "Has a sequel focussing on the villain",
matchValue: "Maleficient",
seenHint: false
},
{
name: "Beauty and the Beast",
content: {
primary: "🌹",
secondary: "👸👹"
},
hint: "Female protagonist loved books",
matchValue: "Mrs. Potts",
seenHint: false
},
{
name: "Coco",
content: {
primary: "💀",
secondary: "🎸🐕"
},
hint: "Inspired by a Mexican holiday",
matchValue: "Land of the Dead",
seenHint: false
},
{
name: "Tangled",
content: {
primary: "💇♀️",
secondary: "👸🌺"
},
hint: "Based on Rapunzel",
matchValue: "Eugene Fitzherbert",
seenHint: false
},
{
name: "Onward",
content: {
primary: "🧝♂️",
secondary: "🧙👨👦👦"
},
hint: "All elf characters have blue skin",
matchValue: "Wilden Lightfoot",
seenHint: false
}
]
},
{
name: "Coding Languages",
instructions: "The emoji/s on each card are a clue for a programming language. You can flip (click) the card to see an additional hint. Drag and drop a card onto the matching text clue on the right, which will be the coding language name in easy mode, and a couple lines of code in that language in the challenging mode. You can make a maximum of 3 wrong matches.",
cards: [
{
name: "Java",
content: {
primary: "☕"
},
hint: "Was earlier named Oak",
matchValue: `String message = \"Hello World!\";
System.out.println(message)`,
seenHint: false
},
{
name: "JavaScript",
content: {
secondary: "☕📜"
},
hint: "Based on ECMAScript",
matchValue: `let message = \"Hello World!\"
console.log(message)`,
seenHint: false
},
{
name: "TypeScript",
content: {
secondary: "⌨📜"
},
hint: "Compiles to JavaSccurl",
matchValue: `let message : string = \"Hello World!\"
console.log(message)`,
seenHint: false
},
{
name: "Python",
content: {
primary: "🐍"
},
hint: "Is whitespace sensitive",
matchValue: `message = \"Hello World!\"
print(message)`,
seenHint: false
},
{
name: "C",
content: {
primary: "🌊"
},
hint: "One of the oldest languages, but still popular",
matchValue: `char message[11] = \"Hello World!\";
printf(\"%s\", message);`,
seenHint: false
},
{
name: "Ruby",
content: {
primary: "💎"
},
hint: "Its server side framework is called \"Rails\"",
matchValue: `message = \"Hello World!\"
puts message`,
seenHint: false
},
{
name: "C#",
content: {
secondary: "👀👓"
},
hint: "Most popular language for game development",
matchValue: `string message = \"Hello World!\";
Console.WriteLine(message);`,
seenHint: false
},
{
name: "Dart",
content: {
primary: "🎯"
},
hint: "Used to write Flutter apps",
matchValue: `String message = \"Hello World!\";
print(message);`,
seenHint: false
},
{
name: "Swift",
content: {
primary: "🦅"
},
hint: "Used to write apps for iOS and MacOS",
matchValue: `var message : string = \"Hello World!\"
print(message)`,
seenHint: false
},
{
name: "Perl",
content: {
primary: "🧅"
},
hint: "Originally developed for text manipulation",
matchValue: `my $message = \'Hello World!\';
print($message, \'\\n\');`,
seenHint: false
},
{
name: "PHP",
content: {
primary: "🐘"
},
hint: "Widely used as a server side scripting language",
matchValue: `$message = \"Hello World!\";
echo $message;`,
seenHint: false
}
]
},
{
name: "Rock Bands",
instructions: "The emoji/s on each card are a clue for an English Rock Band (Preferably old). You can flip (click) the card to see an additional hint. Drag and drop a card onto the matching text clue on the right, which will be the rock band name in easy mode, and name of some band members in the challenging mode. You can make a maximum of 3 wrong matches.",
cards: [
{
name: "Guns N' Roses",
content: {
secondary: "🔫🌹"
},
hint: "Commonly known as the GnR",
matchValue: "Lead singer - Axl Rose\nLead guitarist - Slash",
seenHint: false
},
{
name: "Queen",
content: {
primary: "👑"
},
hint: "Bohemian Rhapsody",
matchValue: "Lead singer - Freddie Mercury\nLead guitarist - Brian May",
seenHint: false
},
{
name: "The Beatles",
content: {
primary: "🐞"
},
hint: "Started off in 1960s, Made rock music popular all over the world",
matchValue: "John Lennon\nPaul McCartney",
seenHint: false
},
{
name: "Green Day",
content: {
secondary: "💚📆"
},
hint: "American rock band that infused the raw power of punk with a melodic pop sensibility",
matchValue: "Singer: Billie Joe Armstrong\nBassist: Mike Dirnt",
seenHint: false
},
{
name: "Eagles",
content: {
primary: "🦅"
},
hint: "A band in which every member can sing\nFamous song hits like Hotel California",
matchValue: "Glenn Frey\nDon Henley",
seenHint: false
},
{
name: "Deep Purple",
content: {
secondary: "💜💜"
},
hint: "Smoke on the water - as some guitarists would say the hardest intro to play (pun intended), yet very melodic and catchy",
matchValue: "Singer - David Coverdale\nGuitarist - Ritchie Blackmore",
seenHint: false
},
{
name: "Kiss",
content: {
primary: "😘"
},
hint: "I wanna Rock and roll all nightttt",
matchValue: "Singer - Paul Stanley\nGuitarist - Ace Frehley",
seenHint: false
},
{
name: "Black Sabbath",
content: {
secondary: "⚫🛀"
},
hint: "A hard rock band",
matchValue: "Singer - Ozzy Osbourne\nGuitarist - Tony Iommi",
seenHint: false
},
{
name: "AC / DC",
content: {
secondary: "⚡💡"
},
hint: "An Australian hard rock, blues rock, and heavy metal band\nAlso, JEE students have studied this topic in physics",
matchValue: "Singer - Bon Scott\nGuitarist - Angus Young",
seenHint: false
},
{
name: "Red Hot Chili Peppers",
content: {
primary: "🔴",
secondary: "🔥🌶"
},
hint: "Their music incorporates elements of alternative rock, funk, punk rock and psychedelic rock",
matchValue: "Singer - Anthony Kiedis\nGuitarist - John Frusciante",
seenHint: false
},
]
}
]
export function getShuffledDeck (category) {
const cardDeck = decks.find(deck => deck.name === category).cards
for(let i = cardDeck.length - 1; i > 0; i--)
{
let j = Math.floor(Math.random() * (i + 1));
[cardDeck[i], cardDeck[j]] = [cardDeck[j], cardDeck[i]];
}
return cardDeck
}
export function getInstructions (category) {
return decks.find(deck => deck.name === category).instructions
}