-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathdecks.js
1840 lines (1837 loc) · 61.2 KB
/
decks.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
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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
const decks = [
{
name: "Animated Movies",
author: "N-Shar-ma",
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: "Lilo & Stitch",
content: {
primary: "👽",
secondary: "🏝🧍♀️",
},
hint: "Has 1 female protagonist and 1 Experiment in Hawaii",
matchValue: "Daveigh Chase",
seenHint: false,
},
],
},
{
name: "Coding Languages",
author: "N-Shar-ma",
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: "Freedom Fighters",
author: "AlphaGaurav7",
instructions: "The emoji/s on each card are a clue for a Freedom Fighter. 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 nickname in easy mode, and a famous quote in the challenging mode. You can make a maximum of 3 wrong matches.",
cards: [
{
name: "Mahatma Gandhi",
content: {
secondary:" 👨🏾🦲👓"
},
hint: "Bapu",
matchValue: `Be the change you wish to see in the world.`,
seenHint: false
},
{
name: "Bhagat Singh",
content: {
secondary: "🤠🥆"
},
hint: "Sahid-e-Azam",
matchValue: `Inquilaab zindabaad!`,
seenHint: false
},
{
name: "Sardar Vallabhai Patel",
content: {
secondary: "👴🏾🗿"
},
hint: "Iron Man of India",
matchValue: `My only desire is that India should be a god producer and no one should be hungry, shedding tears for food in the country.`,
seenHint: false
},
{
name: "Rabindranath Tagore",
content: {
secondary: "🎅🏾✒️"
},
hint: "Gurudev",
matchValue: `“Clouds come floating into my life, no longer to carry rain or usher storm, but to add color to my sunset sky.”`,
seenHint: false
},
{
name: "Rani of Jhansi",
content: {
secondary: "👸⚔️"
},
hint: "Manu",
matchValue: `If defeated and killed on the field of battle, we shall surely earn eternal glory and salvation`,
seenHint: false
},
{
name: "BR Ambedkar",
content: {
primary: "🤵",
secondary: "🧑⚖️📝"
},
hint: "Baba Saheb",
matchValue: `They cannot make history who forget history`,
seenHint: false
},
{
name: "Jawahar Lal Nehru",
content: {
secondary: "🌾🔴🌹"
},
hint: "Chachaji",
matchValue: `We live in a wonderful world that is full of beauty, charm and adventure. There is no end to the adventures we can have if only we seek them with our eyes open.`,
seenHint: false
},
{
name: "Abul Kalam Azad",
content: {
secondary: "🎅☪️️"
},
hint: "Maulana",
matchValue: `As a child of God, I am greater than anything that can happen to me.`,
seenHint: false
},
{
name: "Subhash Chandra Bose",
content: {
primary: "🌕"
},
hint: "Netaji",
matchValue: `It is our duty to pay for our liberty with our own blood.`,
seenHint: false
},
{
name: "Sarojini Naidu",
content: {
primary: "👵"
},
hint: "Nightingale of India",
matchValue: `We want deeper sincerity of motive, a greater courage in speech and earnestness in action.`,
seenHint: false
},
{
name: "Tipu Sultan",
content: {
primary: "👑"
},
hint: "Tiger of Mysore",
matchValue: `It is far better to live like a lion for a day then to live like a jackal for hundred years.`,
seenHint: false
}
]
},
{
name: "States and UT",
author: "KarthikS373",
instructions: "The emoji/s on each card are clues for a state of UT. 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 States and UTs name in easy mode, and a fact about the State / UTin the challenging mode. You can make a maximum of 3 wrong matches.",
cards: [
{
name: "Andaman and Nicobar",
content: {
secondary: "🥚👨"
},
hint: "Dugong, the gentle sea cow, is the state animal of this UT",
matchValue: `Pandunus or Nicobar Breadfruit is a rare fruit found and widely eaten`,
seenHint: false
},
{
name: "Odisha",
content: {
primary: "⭕",
secondary: "🥘🅰"
},
hint: "Chilika Lake – A haven for migratory birds",
matchValue: `Konark Temple is located here`,
seenHint: false
},
{
name: "Nagaland",
content: {
secondary: "🐍🏝"
},
hint: "“Unity” is the motto of this UT",
matchValue: `Mithun is the state animal`,
seenHint: false
},
{
name: "Karnataka",
content: {
secondary: "🚗🎭"
},
hint: "First Private Radio Station is in this state",
matchValue: `Largest Coffee Exporter`,
seenHint: false
},
{
name: "Punjab",
content: {
secondary: "🖐🅱"
},
hint: "Named After Five Rivers",
matchValue: `Sikhism Was Founded Here`,
seenHint: false
},
{
name: "New Delhi",
content: {
primary: "🆕♥"
},
hint: "Capital of India",
matchValue: `Tallest Minaret in the World is here`,
seenHint: false
},
{
name: "Sikkim",
content: {
secondary: "😷👘"
},
hint: "Least populous state of India",
matchValue: `India’s first fully organic state`,
seenHint: false
},
{
name: "Bihar",
content: {
secondary: "🅱📿"
},
hint: "The Birthplace Of Jainism And Buddhism",
matchValue: `Houses The Oldest University`,
seenHint: false
},
{
name: "Assam",
content: {
secondary: "𓃘🥭"
},
hint: "World’s Largest River Island “Majuli”",
matchValue: `World’s biggest weaving village “Sualkuchi”`,
seenHint: false
},
{
name: "Chhattisgarh",
content: {
primary: "🏡",
secondary: "3️⃣6️⃣"
},
hint: "The Niagara Falls of India is here",
matchValue: `Bastar is located here`,
seenHint: false
}
]
},
{
name: "Fruits",
author: "divya-nshi",
instructions: "The emoji/s on each card are a clue for a fruit. 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 fruit name in easy mode, and a fact of the food in the challenging mode. You can make a maximum of 3 wrong matches.",
cards:[
{
name: "Orange",
content: {
secondary: "O🏃♂️G",
},
hint: "a colour",
matchValue: "Orange is a fruit and a color lol",
seenHint: false
},
{
name: "Pear",
content: {
secondary: "P👂"
},
hint: "green color fruit",
matchValue: "it has about 100 calories",
seenHint: false
},
{
name: "Cherry",
content: {
secondary: "🪑E"
},
hint: "japanese tree name has it",
matchValue: "A cherry tree can be harvested in 7 seconds",
seenHint: false
},
{
name: "Mango",
content: {
secondary: "👨Go"
},
hint: "king of fruits",
matchValue: "Mangoes are related to cashews and pistachios",
seenHint: false
},
{
name: "Kiwi",
content: {
secondary: "🔑V"
},
hint: "also a bird",
matchValue: "low in calories",
seenHint: false
},
{
name: "Strawberry",
content: {
secondary: "🥤🐻E"
},
hint: "first fruit to ripen in the spring",
matchValue: "it has 200 seeds on an average",
seenHint: false
},
{
name: "Blackberry",
content: {
secondary: "⚫🐻"
},
hint: "Superfood",
matchValue: "helps tightening of tissues",
seenHint: false
},
{
name: "Apple",
content: {
secondary: "A💊"
},
hint: "- a day keeps doctor away",
matchValue: "Apple juice was one of the earliest prescribed antidepressants",
seenHint: false
},
{
name: "Banana",
content: {
secondary: "👵❌❌ "
},
hint: "has no seeds",
matchValue: "it is considered as a berry",
seenHint: false
},
{
name: "Pineapple",
content: {
secondary: "🌲🍎"
},
hint: "it regenerates",
matchValue: "it ripens faster upside down",
seenHint: false
}
]
},
{
name: "Rock Bands",
author: "SameepAher",
instructions:
"The emoji/s on each card are a clue for an English Rock Band (Mostly 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,
},
{
name: "Nirvana",
content: {
primary: "👶🌊",
secondary: "🙂",
},
hint: "Musical style has been mainly described as grunge, alternative rock, punk rock, and hard rock",
matchValue: "Singer - Kurt Cobain\nGuitarist - Kurt Cobain",
seenHint: false,
}
],
},
{
name: "Marvel Heroes",
author: "Ilikepizza2",
instructions: "The emoji/s on each card are a clue for a hero from the Marvel universe. 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 superhero's alias in easy mode, and their real name in the challenging mode. You can make a maximum of 3 wrong matches.",
cards: [
{
name: "Ant Man",
content: {
secondary: "🐜👨🏻"
},
hint: "Can change his size on will",
matchValue: `Scott Lang`,
seenHint: false
},
{
name: "Hawkeye",
content: {
secondary: "🦅👁"
},
hint: "Shoots arrows and never misses :)",
matchValue: `Clint Barton`,
seenHint: false
},
{
name: "Captain America",
content: {
secondary: "🛡️👨🏻✈🇺🇸"
},
hint: "He can do this all day",
matchValue: `Steve Rogers`,
seenHint: false
},
{
name: "Spider Man",
content: {
secondary: "🕷️👨🏻"
},
hint: "A radioactive insect bit him",
matchValue: `Peter Parker`,
seenHint: false
},
{
name: "Ghost Rider",
content: {
secondary: "👻🚵"
},
hint: "He has his head on fire!",
matchValue: `Roberto Reyes`,
seenHint: false
},
{
name: "Starlord",
content: {
secondary: "⭐👑"
},
hint: "(Self-proclaimed)Leader of the Guardians of the Galaxy",
matchValue: `Peter Quill`,
seenHint: false
},
{
name: "Silver Surfer",
content: {
secondary: "🥈🏄"
},
hint: "Member of the fantastic four",
matchValue: `Norrin Radd`,
seenHint: false
},
{
name: "Rocket Raccoon",
content: {
secondary: "🚀🦝"
},
hint: "Is NOT a teddy bear!! >:(",
matchValue: `89P13`,
seenHint: false
},
{
name: "Deadpool",
content: {
secondary: "😵🏊"
},
hint: "Has regenerative abilities",
matchValue: `Wade Wilson`,
seenHint: false
},
{
name: "Iron Man",
content: {
secondary: "🦾🧔🏻"
},
hint: "Love you 3000",
matchValue: `Tony Stark`,
seenHint: false
},
{
name: "Black Panther",
content: {
secondary: "⚫🐅"
},
hint: "Wakanda Forever",
matchValue: `T'Challa`,
seenHint: false
},
{
name: "Thor",
content: {
secondary: "🔨⚡️"
},
hint: "God of Thunder",
matchValue: `Thor Odinson`,
seenHint: false
},
{
name: "Moonknight",
content: {
secondary: "🌙🥷"
},
hint: "Worked in the Natural History Museum in London",
matchValue: `Mark Spector`,
seenHint: false
}
]
},
{
name: "Fantasy Fiction Books",
author: "kat-kan",
instructions:
"The emoji/s on each card are a clue for a fantasy fiction book. 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 book or saga name in easy mode, and a character/place in the book in the challenging mode. You can make a maximum of 3 wrong matches.",
cards: [
{
name: "Harry Potter and the Philosopher's Stone\n(Harry Potter Saga)",
content: {
secondary: "⚡ 🧙",
},
hint: "The boy who lived",
matchValue: "Hermione Granger",
seenHint: false,
},
{
name: "The Fellowship of the Ring\n(Lord of the Rings saga)",
content: {
secondary: "🧝 💍",
},
hint: "This book is largely concerned with hobbits",
matchValue: "Frodo Baggins",
seenHint: false,
}
,
{
name: "Alice's Adventures in Wonderland",
content: {
secondary: "🐇 🕛",
},
hint: "DRINK ME",
matchValue: "The Cheshire Cat",
seenHint: false,
}
,
{
name: "The Colour of Magic",
content: {
secondary: "🌈 🧙",
},
hint: "This wizard never finished the Unseen University",
matchValue: "Rincewind",
seenHint: false,
},
{
name: "The Twilight",
content: {
secondary: "🍎 🧛",
},
hint: "How long have you been seventeen?",
matchValue: "Edward Cullen",
seenHint: false,
},
{
name: "Eragon",
content: {
secondary: "🐉 🥚",
},
hint: "A story about 15 year old boy who became a dragon rider",
matchValue: "Saphira",
seenHint: false,
},
{
name: "A Game of Thrones",
content: {
secondary: "🧊 🩸",
},
hint: "This saga is known for killing many characters",
matchValue: "John Snow",
seenHint: false,
},
{
name: "Blood of Elves\n(The Witcher Saga)",
content: {
secondary: "🐺 🗡️",
},
hint: "The main character's love smells like lilac and gooseberries",
matchValue: "Geralt from Rivia",
seenHint: false,
},
{
name: "The Hunger Games",
content: {
secondary: "🐦 🏹",
},
hint: "12 districts, 24 volunteers",
matchValue: "Katniss Everdeen",
seenHint: false,
}
]
},
{
name: "DC Heroes",
author: "thevinitgupta",
instructions: "The emoji/s on each card are a clue for a hero from the DC universe. 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 superhero's alias in easy mode, and their real name in the challenging mode. You can make a maximum of 3 wrong matches.",
cards: [
{
name: "Batman",
content: {
secondary: "🦇👨🏻"
},
hint: "Works in the night",
matchValue: `Bruce Wayne`,
seenHint: false
},
{
name: "Superman",
content: {
secondary: "💪👦"
},
hint: "An alien who works at the Daily Planet",
matchValue: `Clark Kent`,
seenHint: false
},
{
name: "Flash",
content: {
secondary: "⚡🏃♂️"
},
hint: "Can beat you at a race",
matchValue: `Barry Allen`,
seenHint: false
},
{
name: "Aquaman",
content: {
secondary: "🌊🤴"