-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcah_main.json
3929 lines (3929 loc) · 97.3 KB
/
cah_main.json
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
{
"id": "cah_main",
"name": "Cards Against Humanity",
"author": "Cards Against Humanity",
"license": "Creative Commons BY-NC-SA 2.0",
"license_url": "https://creativecommons.org/licenses/by-nc-sa/2.0/",
"trophies": [
{
"id": "trophy_balls",
"name": {
"en": "Found It!",
"de": "Gefunden!"
},
"desc": {
"en": "Find Lance Armstrong's missing testicle.",
"de": "Den vermissten Hode von Lance Armstrong finden."
},
"requirements": [
{
"type": "cards_played",
"cards": ["w_armstrongtesticle"],
"winning": false
}
]
},
{
"id": "trophy_thecard",
"name": {
"en": "That's Just Cheating",
"de": "Unfairer Vorteil"
},
"desc": {
"en": "Use \"The Card\" to win a round.",
"de": "Eine Runde mit \"Der Karte\" gewinnen."
},
"requirements": [
{
"type": "cards_played",
"cards": ["w_radcliffeasshole"],
"winning": true
}
]
}
],
"cards": [
{
"id": "b_addition",
"content": {
"en": "______ + ______ = ______."
},
"pick": 3
},
{
"id": "b_slipperyslope",
"content": {
"en": "______ is a slippery slope that leads to ______."
},
"pick": 2
},
{
"id": "b_kidtestedmotherapproved",
"content": {
"en": "______: kid-tested, mother-approved."
},
"pick": 1
},
{
"id": "b_canthavejustone",
"content": {
"en": "______. Betcha can't have just one!"
},
"pick": 1
},
{
"id": "b_highfivebro",
"content": {
"en": "______. High five, bro."
},
"pick": 1
},
{
"id": "b_itsatrap",
"content": {
"en": "______. It's a trap!"
},
"pick": 1
},
{
"id": "b_thatwassometal",
"content": {
"en": "______. That was so metal."
},
"pick": 1
},
{
"id": "b_onestarchicken",
"content": {
"en": "★✰✰✰✰\nDo NOT go here! Found _____ in my Kung Pao chicken! "
},
"pick": 1
},
{
"id": "b_halfmarriagesendin",
"content": {
"en": "50% of all marriages end in ______."
},
"pick": 1
},
{
"id": "b_labstudyhalfsex",
"content": {
"en": "A recent laboratory study shows that undergraduates have 50% less sex after being exposed to ______."
},
"pick": 1
},
{
"id": "b_incompleteromanticdinner",
"content": {
"en": "A romantic, candlelit dinner would be incomplete without ______."
},
"pick": 1
},
{
"id": "b_obamaletloose",
"content": {
"en": "After eight years in the White House, how is Obama finally letting loose?"
},
"pick": 1
},
{
"id": "b_4plat3grammy",
"content": {
"en": "After four platinum albums and three Grammys, it's time to get back to my roots, to what inspired me to make music in the first place: ______."
},
"pick": 1
},
{
"id": "b_curativepowers",
"content": {
"en": "Alternative medicine is now embracing the curative powers of ______."
},
"pick": 1
},
{
"id": "b_academyaward",
"content": {
"en": "And the Academy Award for ______ goes to ______."
},
"pick": 2
},
{
"id": "b_arbys",
"content": {
"en": "Arby's: We Have ______."
},
"pick": 1
},
{
"id": "b_momoffiveboys",
"content": {
"en": "As the mom of five rambunctious boys, I'm no stranger to ______."
},
"pick": 1
},
{
"id": "b_bravorealityshow",
"content": {
"en": "Bravo's new reality show features eight washed-up celebrities living with ______."
},
"pick": 1
},
{
"id": "b_budlightofficialbeer",
"content": {
"en": "Brought to you by Bud Light®, the Official Beer of ______."
},
"pick": 1
},
{
"id": "b_beforeikillbond",
"content": {
"en": "But before I kill you, Mr. Bond, I must show you ______."
},
"pick": 1
},
{
"id": "b_checkoutdancemove",
"content": {
"en": "Check me out, yo! I call this dance move \"______.\""
},
"pick": 1
},
{
"id": "b_clickhere",
"content": {
"en": "Click Here for ______!!!"
},
"pick": 1
},
{
"id": "b_broadwaymusical",
"content": {
"en": "Coming to Broadway this season, ______: The Musical."
},
"pick": 1
},
{
"id": "b_whymommycry",
"content": {
"en": "Daddy, why is mommy crying?"
},
"pick": 1
},
{
"id": "b_dearabby",
"content": {
"en": "Dear Abby, I'm having some trouble with ______ and would like your advice."
},
"pick": 1
},
{
"id": "b_dontgoinbathroom",
"content": {
"en": "Dude, do not go in that bathroom. There's ______ in there."
},
"pick": 1
},
{
"id": "b_duringsexthought",
"content": {
"en": "During sex, I like to think about ______."
},
"pick": 1
},
{
"id": "b_mynexttrick",
"content": {
"en": "For my next trick, I will pull ______ out of ______."
},
"pick": 2
},
{
"id": "b_mangodownsurprise",
"content": {
"en": "Fun tip! When your man asks you to go down on him, try surprising him with ______ instead."
},
"pick": 1
},
{
"id": "b_hereisthechurch",
"content": {
"en": "Here is the church\nHere is the steeple\nOpen the doors\nAnd there is ______."
},
"pick": 1
},
{
"id": "b_welcomechilis",
"content": {
"en": "Hey guys, welcome to Chili's! Would you like to start the night off right with ______?"
},
"pick": 1
},
{
"id": "b_redditama",
"content": {
"en": "Hey Reddit! I'm ______. Ask me anything."
},
"pick": 1
},
{
"id": "b_howlosevirginity",
"content": {
"en": "How did I lose my virginity?"
},
"pick": 1
},
{
"id": "b_drinktoforget",
"content": {
"en": "I drink to forget ______."
},
"pick": 1
},
{
"id": "b_littlehelpfrom",
"content": {
"en": "I get by with a little help from ______."
},
"pick": 1
},
{
"id": "b_99problems",
"content": {
"en": "I got 99 problems but ______ ain't one."
},
"pick": 1
},
{
"id": "b_neverunderstooduntil",
"content": {
"en": "I never truly understood ______ until I encountered ______."
},
"pick": 2
},
{
"id": "b_kalecleanseweek",
"content": {
"en": "I'm going on a cleanse this week. Nothing but kale juice and ______."
},
"pick": 1
},
{
"id": "b_lebronjameshobby",
"content": {
"en": "I'm Lebron James, and when I'm not slamming dunks, I love ______."
},
"pick": 1
},
{
"id": "b_imnodoctorbut",
"content": {
"en": "I'm no doctor, but I'm pretty sure what you're suffering from is called \"______.\""
},
"pick": 1
},
{
"id": "b_profhomeworkexcuse",
"content": {
"en": "I'm sorry, Professor, but I couldn't complete my homework because of ______."
},
"pick": 1
},
{
"id": "b_cantbewithoneyoulove",
"content": {
"en": "If you can't be with the one you love, love ______."
},
"pick": 1
},
{
"id": "b_mightbearedneck",
"content": {
"en": "IF you like ______, YOU MIGHT BE A REDNECK."
},
"pick": 1
},
{
"id": "b_shyamalanmovie",
"content": {
"en": "In M. Night Shyamalan's new movie, Bruce Willis discovers that ______ had really been ______ all along."
},
"pick": 2
},
{
"id": "b_disneyoriginalmovie",
"content": {
"en": "In the new Disney Channel Original Movie, Hannah Montana struggles with ______ for the first time."
},
"pick": 1
},
{
"id": "b_santaaltcoal",
"content": {
"en": "Instead of coal, Santa now gives the bad children ______."
},
"pick": 1
},
{
"id": "b_herosidekickduo",
"content": {
"en": "Introducing the amazing superhero/sidekick duo! It's ______ and ______!"
},
"pick": 2
},
{
"id": "b_xtremebaseball",
"content": {
"en": "Introducing X-Treme Baseball! It's like baseball, but with ______!"
},
"pick": 1
},
{
"id": "b_kidsthesedaysinvolvedwith",
"content": {
"en": "It’s a pity that kids these days are all getting involved with ______."
},
"pick": 1
},
{
"id": "b_justoncethanksmom",
"content": {
"en": "Just once, I'd like to hear you say \"Thanks, Mom. Thanks for ______.\""
},
"pick": 1
},
{
"id": "b_justsawupsettingvideo",
"content": {
"en": "Just saw this upsetting video! Please retweet!! #stop______"
},
"pick": 1
},
{
"id": "b_dontneeddrugskids",
"content": {
"en": "Kids, I don't need drugs to get high. I'm high on ______."
},
"pick": 1
},
{
"id": "b_indianlifechanged4ever",
"content": {
"en": "Life for American Indians was forever changed when the White Man introduced them to ______."
},
"pick": 1
},
{
"id": "b_lifetimepresents",
"content": {
"en": "Lifetime® presents \"______: the Story of ______.\""
},
"pick": 2
},
{
"id": "b_haiku",
"content": {
"en": "Make a haiku."
},
"pick": 3
},
{
"id": "b_maybeshebornwithit",
"content": {
"en": "Maybe she's born with it. Maybe it's ______."
},
"pick": 1
},
{
"id": "b_menswearhouse",
"content": {
"en": "Men's Wearhouse: You're gonna like ______. I guarantee it."
},
"pick": 1
},
{
"id": "b_rememberalexthegreat",
"content": {
"en": "Military historians remember Alexander the Great for his brilliant use of ______ against the Persians."
},
"pick": 1
},
{
"id": "b_cynthiadiaz",
"content": {
"en": "Mr. and Mrs. Diaz, we called you in because we're concerned about Cynthia. Are you aware that your daughter is ______?"
},
"pick": 1
},
{
"id": "b_haveitonthemoon",
"content": {
"en": "My fellow Americans: Before this decade is out, we will have ______ on the moon!"
},
"pick": 1
},
{
"id": "b_jkrowlingbook",
"content": {
"en": "Next from J.K. Rowling: Harry Potter and the Chamber of ______."
},
"pick": 1
},
{
"id": "b_espn2",
"content": {
"en": "Next on ESPN2: The World Series of ______."
},
"pick": 1
},
{
"id": "b_oldmacdonald",
"content": {
"en": "Old MacDonald had ______. E-I-E-I-O."
},
"pick": 1
},
{
"id": "b_3stepprofit",
"content": {
"en": "Step 1: ______.\nStep 2: ______.\nStep 3: Profit."
},
"pick": 2
},
{
"id": "b_thatsrightikilled",
"content": {
"en": "That's right, I killed ______. How, you ask? ______."
},
"pick": 2
},
{
"id": "b_ruinedfieltrip",
"content": {
"en": "The class field trip was completely ruined by ______."
},
"pick": 1
},
{
"id": "b_chevytahoe",
"content": {
"en": "The new Chevy Tahoe. With the power and space to take ______ everywhere you go."
},
"pick": 1
},
{
"id": "b_theysaidwecrazy",
"content": {
"en": "They said we were crazy. They said we couldn't put ______ inside of ______. They were wrong."
},
"pick": 2
},
{
"id": "b_waytheworldends",
"content": {
"en": "This is the way the world ends\nThis is the way the world ends\nNot with a bang but with ______."
},
"pick": 1
},
{
"id": "b_steppenwolf",
"content": {
"en": "This season at Steppenwolf, Samuel Beckett's classic existential play: Waitng for ______."
},
"pick": 1
},
{
"id": "b_maury",
"content": {
"en": "Today on Maury: \"Help! My son is ______!\""
},
"pick": 1
},
{
"id": "b_tsaguidelines",
"content": {
"en": "TSA guidelines now prohibit ______ on airplanes."
},
"pick": 1
},
{
"id": "b_seriousdoubts",
"content": {
"en": "Uh, hey guys, I know this was my idea, but I'm having serious doubts about ______."
},
"pick": 1
},
{
"id": "b_whatiswargoodfor",
"content": {
"en": "War! What is it good for?"
},
"pick": 1
},
{
"id": "b_ihaveadatewith",
"content": {
"en": "Well if you'll excuse me, gentlemen, I have a date with ______."
},
"pick": 1
},
{
"id": "b_parentshidingfromme",
"content": {
"en": "What are my parents hiding from me?"
},
"pick": 1
},
{
"id": "b_lastrelationshipend",
"content": {
"en": "What ended my last relationship?"
},
"pick": 1
},
{
"id": "b_uncontrollablegas",
"content": {
"en": "What gives me uncontrollable gas?"
},
"pick": 1
},
{
"id": "b_batmanguiltypleasure",
"content": {
"en": "What is Batman's guilty pleasure?"
},
"pick": 1
},
{
"id": "b_gwbushthinking",
"content": {
"en": "What is George W. Bush thinking about right now?"
},
"pick": 1
},
{
"id": "b_awkwardfirstkiss",
"content": {
"en": "What made my first kiss so awkward?"
},
"pick": 1
},
{
"id": "b_makeslifeworthliving",
"content": {
"en": "What makes life worth living?"
},
"pick": 1
},
{
"id": "b_liveupparty",
"content": {
"en": "What never fails to liven up the party?"
},
"pick": 1
},
{
"id": "b_alwaysgetyoulaid",
"content": {
"en": "What will always get you laid?"
},
"pick": 1
},
{
"id": "b_disturbungandcharming",
"content": {
"en": "What would grandma find disturbing, yet oddly charming?"
},
"pick": 1
},
{
"id": "b_girlsbestfriend",
"content": {
"en": "What's a girl's best friend?"
},
"pick": 1
},
{
"id": "b_secretpower",
"content": {
"en": "What's my secret power?"
},
"pick": 1
},
{
"id": "b_teachforamerica",
"content": {
"en": "What's Teach for America using to inspire inner city students to succeed?"
},
"pick": 1
},
{
"id": "b_smell",
"content": {
"en": "What's that smell?"
},
"pick": 1
},
{
"id": "b_sound",
"content": {
"en": "What's that sound?"
},
"pick": 1
},
{
"id": "b_toninheaven",
"content": {
"en": "What's there a ton of in heaven?"
},
"pick": 1
},
{
"id": "b_50footstatue",
"content": {
"en": "When I am a billionare, I shall erect a 50-foot statue to commemorate ______."
},
"pick": 1
},
{
"id": "b_presidentdepartment",
"content": {
"en": "When I am President, I will create the Department of ______."
},
"pick": 1
},
{
"id": "b_acidtripturninto",
"content": {
"en": "When I was tripping on acid, ______ turned into ______."
},
"pick": 2
},
{
"id": "b_mosesplague",
"content": {
"en": "When Pharaoh remained unmoved, Moses called down a Plague of ______."
},
"pick": 1
},
{
"id": "b_mexicospacerace",
"content": {
"en": "While the United States raced the Soviet Union to the moon, the Mexican government funneled millions of pesos into research on ______."
},
"pick": 1
},
{
"id": "b_whitepeoplelike",
"content": {
"en": "White people like ______."
},
"pick": 1
},
{
"id": "b_whysticky",
"content": {
"en": "Why am I sticky?"
},
"pick": 1
},
{
"id": "b_whynosleep",
"content": {
"en": "Why can't I sleep at night?"
},
"pick": 1
},
{
"id": "b_whyhurtallover",
"content": {
"en": "Why do I hurt all over?"
},
"pick": 1
},
{
"id": "w_10ksyrianrefugees",
"content": {
"en": "10,000 Syrian refugees."
}
},
{
"id": "w_50mgzoloft",
"content": {
"en": "50 mg of Zoloft daily."
},
"flags": "dr"
},
{
"id": "w_50knipplevolts",
"content": {
"en": "50,000 volts straight to the nipples."
},
"flags": "xf i"
},
{
"id": "w_72virgins",
"content": {
"en": "72 virgins."
},
"flags": "s"
},
{
"id": "w_80zblacktarheroin",
"content": {
"en": "8 oz. of sweet Mexican black-tar heroin."
},
"flags": "dr"
},
{
"id": "w_magicbeanbag",
"content": {
"en": "A bag of magic beans."
}
},
{
"id": "w_balancedbreakfast",
"content": {
"en": "A balanced breakfast."
}
},
{
"id": "w_earwaxsementoenailball",
"content": {
"en": "A ball of earwax, semen, and toenail clippings."
},
"flags": "g"
},
{
"id": "w_humanturdbird",
"content": {
"en": "A bird that shits human turds."
},
"flags": "w g fe an"
},
{
"id": "w_bitchslap",
"content": {
"en": "A bitch slap."
}
},
{
"id": "w_bleachedasshole",
"content": {
"en": "A bleached asshole."
},
"flags": "g l"
},
{
"id": "w_bopit",
"content": {
"en": "A Bop It™."
}
},
{
"id": "w_mayoteeth",
"content": {
"en": "A bowl of mayonnaise and human teeth."
},
"flags": "g"
},
{
"id": "w_braintumor",
"content": {
"en": "A brain tumor."
},
"flags": "di"
},
{
"id": "w_crucifixion",
"content": {
"en": "A crucifixion."
},
"flags": "mu to"
},
{
"id": "w_sadbdayparty",
"content": {
"en": "A disappointing birthday party."
}
},
{
"id": "w_falconwithcap",
"content": {
"en": "A falcon with a cap on its head."
},
"flags": "w an"
},
{
"id": "w_powerfartgiantwake",
"content": {
"en": "A fart so powerful that it wakes the giants from their thousand-year slumber."
},
"flags": "w g"
},
{
"id": "w_fetus",
"content": {
"en": "A fetus."
},
"flags": "ch"
},
{
"id": "w_fleshlight",
"content": {
"en": "A Fleshlight."
},
"flags": "s"
},
{
"id": "w_almondfuckton",
"content": {
"en": "A fuck-ton of almonds."
},
"flags": "l"
},
{
"id": "w_goodsniff",
"content": {
"en": "A good sniff."
}
},
{
"id": "w_goodstronggorilla",
"content": {
"en": "A good, strong gorilla."
},
"flags": "an"
},
{
"id": "w_gossamerjizz",
"content": {
"en": "A gossamer stream of jizz that catches the light as it arcs through the morning air."
},
"flags": "s g"
},
{
"id": "w_homovolleyball",
"content": {
"en": "A homoerotic volleyball montage."
},
"flags": "s"
},
{
"id": "w_vikinghorde",
"content": {
"en": "A horde of Vikings."
}
},
{
"id": "w_lifetimeofsadness",
"content": {
"en": "A lifetime of sadness."
}
},
{
"id": "w_dinosaurboy",
"content": {
"en": "A little boy who won't shut the fuck up about dinosaurs."
},
"flags": "ch l"
},
{
"id": "w_livestudioaudience",
"content": {
"en": "A live studio audience."
}
},
{
"id": "w_orgasmbrinkman",
"content": {
"en": "A man on the brink of orgasm."
},
"flags": "s"
},
{
"id": "w_matingdisplay",
"content": {
"en": "A mating display."
}
},
{
"id": "w_mexican",
"content": {
"en": "A Mexican."
}
},
{
"id": "w_micropenis",
"content": {
"en": "A micropenis.",
"de": "Ein Mikropenis."
},
"flags": "gn gnm"
},
{
"id": "w_micropig",
"content": {
"en": "A micropig wearing a tiny raincoat and booties."
},
"flags": "an"
},
{
"id": "w_oldrollerskateman",
"content": {
"en": "A middle-aged man on roller skates."
}
},
{
"id": "w_mopeyzoolion",
"content": {
"en": "A mopey zoo lion."
},
"flags": "an"
},
{
"id": "w_muchyoungerwoman",
"content": {
"en": "A much younger woman."
}
},
{
"id": "w_pangenderoctopus",
"content": {
"en": "A pangender octopus who roams the cosmos in search of love."
},
"flags": "an"
},
{
"id": "w_headpyramid",