-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcah_blue_box.json
1938 lines (1938 loc) · 52.1 KB
/
cah_blue_box.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_blue_box",
"name": "CAH: Blue Box",
"accent_background": "#36a",
"accent_color": "white",
"author": "Cards Against Humanity",
"license": "Creative Commons BY-NC-SA 2.0",
"license_url": "https://creativecommons.org/licenses/by-nc-sa/2.0/",
"cards": [
{
"id": "b_fuckthisbs",
"content": {
"en": "Man, this is bullshit. Fuck _______."
},
"pick": 1
},
{
"id": "b_kimjongun",
"content": {
"en": "Dear Leader Kim Jong-un,<br>our village praises your infinite wisdom with a humble offering of _______."
},
"pick": 1
},
{
"id": "b_maypass",
"content": {
"en": "_______ may pass, but _______ will last forever."
},
"pick": 2
},
{
"id": "b_goodfun",
"content": {
"en": "She's up all night for good fun.<br>I'm up all night for _______."
},
"pick": 1
},
{
"id": "b_fratoperation",
"content": {
"en": "Alright, bros. Our frat house is condemned, and all the hot slampieces are over at Gamma Phi. The time has come to commence Operation _______."
},
"pick": 1
},
{
"id": "b_japanversion",
"content": {
"en": "The Japanese have developed a smaller, more efficient version of _______."
},
"pick": 1
},
{
"id": "b_baddevildeal",
"content": {
"en": "In return for my soul, the Devil promised me _______, but all I got was _______."
},
"pick": 2
},
{
"id": "b_crazymovie",
"content": {
"en": "You guys, I saw this crazy movie last night. It opens on _______, and then there's some stuff about _______, and then it ends with _______."
},
"pick": 3
},
{
"id": "b_neverbesame",
"content": {
"en": "_______ will never be the same after _______."
},
"pick": 2
},
{
"id": "b_wesfilm",
"content": {
"en": "Wes Anderson's new film tells the story of a precocious child coming to terms with _______."
},
"pick": 1
},
{
"id": "b_genesis",
"content": {
"en": "In the beginning, there was _______.<br>And the Lord said, \"Let there be _______.\""
},
"pick": 2
},
{
"id": "b_fununtilweird",
"content": {
"en": "What's fun until it gets weird?"
},
"pick": 1
},
{
"id": "b_learnalongway",
"content": {
"en": "We never did find _______, but along the way we sure learned a lot about _______."
},
"pick": 2
},
{
"id": "b_beardlady",
"content": {
"en": "You've seen the bearded lady!<br>You've seen the ring of fire!<br>Now, ladies and gentlemen, feast your eyes upon _______!"
},
"pick": 1
},
{
"id": "b_tinypeencomp",
"content": {
"en": "How am I compensating for my tiny penis?"
},
"pick": 1,
"flags": "gn gnm"
},
{
"id": "b_countryclubnono",
"content": {
"en": "I'm sorry, sir, but we don't allow _______ at the country club."
},
"pick": 1
},
{
"id": "b_2aminhereyes",
"content": {
"en": "2 AM in the city that never sleeps. The door swings open and <i>she<\/i> walks in, legs up to here. Something in her eyes tells me she's looking for _______."
},
"pick": 1
},
{
"id": "b_peasantsinline",
"content": {
"en": "As king, how will I keep the peasants in line?"
},
"pick": 1
},
{
"id": "b_oprahhopebook",
"content": {
"en": "Oprah's book of the month is \"_______ For _______: A Story of Hope.\""
},
"pick": 2
},
{
"id": "b_iamliterally",
"content": {
"en": "Do <i>not<\/i> fuck with me! I am literally _______ right now."
},
"pick": 1
},
{
"id": "b_adventureromance",
"content": {
"en": "Adventure.<br>Romance.<br>_______.<br><br>From Paramount Pictures, \"_______.\""
},
"pick": 2
},
{
"id": "b_destroyerofworlds",
"content": {
"en": "I am become _______, destroyer of _______!"
},
"pick": 2
},
{
"id": "b_lurksinthenight",
"content": {
"en": "It lurks in the night. It hungers for flesh. This summer, no one is safe from _______."
},
"pick": 1
},
{
"id": "b_betterstayaway",
"content": {
"en": "If you can't handle _______, you'd better stay away from _______."
},
"pick": 2
},
{
"id": "b_lifeprime",
"content": {
"en": "This is the prime of my life. I'm young, hot, and full of _______."
},
"pick": 1
},
{
"id": "b_highmesmerized",
"content": {
"en": "I'm pretty sure I'm high right now, because I'm absolutely mesmerized by _______."
},
"pick": 1
},
{
"id": "b_hottestalbum",
"content": {
"en": "This year's hottest album is \"_______\" by _______."
},
"pick": 2
},
{
"id": "b_everystep",
"content": {
"en": "Every step towards _______ gets me a little closer to _______."
},
"pick": 2
},
{
"id": "b_supercharged",
"content": {
"en": "Forget everything you know about _______, because now we've supercharged it with _______!"
},
"pick": 2
},
{
"id": "b_honeyroleplay",
"content": {
"en": "Honey, I have a new role-play I want to try tonight! You can be _______, and I'll be _______."
},
"pick": 2
},
{
"id": "b_mtndewflavor",
"content": {
"en": "Do the Dew ® with our most extreme flavor yet! Get ready for Mountain Dew _______!"
},
"pick": 1
},
{
"id": "b_priceless",
"content": {
"en": "Armani suit: $1,000. Dinner for two at that swanky restaurant: $300. The look on her face when you surprise her with _______: priceless."
},
"pick": 1
},
{
"id": "b_jackiechancomedy",
"content": {
"en": "In his new action comedy, Jackie Chan must fend off ninjas while also dealing with _______."
},
"pick": 1
},
{
"id": "b_caseytoprincipal",
"content": {
"en": "Well what do you have to say for yourself, Casey? This is the third time you've been sent to the principal's office for _______."
},
"pick": 1
},
{
"id": "b_aagiftedkids",
"content": {
"en": "Here at the Academy for Gifted Children, we allow students to explore _______ at their own pace."
},
"pick": 1
},
{
"id": "b_heedmyvoice",
"content": {
"en": "Heed my voice, mortals! I am the god of _______, and I will not tolerate _______!"
},
"pick": 2
},
{
"id": "b_dontmeantobrag",
"content": {
"en": "I don't mean to brag, but they call me the Michael Jordan of _______."
},
"pick": 1
},
{
"id": "b_whybroke",
"content": {
"en": "Why am I broke?"
},
"pick": 1
},
{
"id": "b_doctorhelpmybutt",
"content": {
"en": "Help me doctor, I've got _______ in my butt!"
},
"pick": 1
},
{
"id": "b_mtvkendra",
"content": {
"en": "Hi MTV! My name is Kendra, I live in Malibu, I'm into _______, and I love to have a good time."
},
"pick": 1
},
{
"id": "b_patientpresents",
"content": {
"en": "Patient presents with _______. Likely a result of _______."
},
"pick": 2
},
{
"id": "b_lifeinfastlane",
"content": {
"en": "Life's pretty tough in the fast lane. That's why I never leave the house without _______."
},
"pick": 1
},
{
"id": "b_awkwardsauna",
"content": {
"en": "What's making things awkward in the sauna?"
},
"pick": 1
},
{
"id": "b_twocopsmovie",
"content": {
"en": "Get ready for the movie of the summer! One cop plays by the book. The other's only interested in one thing: _______."
},
"pick": 1
},
{
"id": "b_worstdayever",
"content": {
"en": "Having the worst day EVER. #_______"
},
"pick": 1
},
{
"id": "b_gwfarewell",
"content": {
"en": "In his farewell address, George Washington famously warned Americans about the dangers of _______."
},
"pick": 1
},
{
"id": "b_casualfriday",
"content": {
"en": "Don't forget! Beginning this week, Casual Friday will officially become \"_______ Friday.\""
},
"pick": 1
},
{
"id": "b_bonerkill",
"content": {
"en": "What killed my boner?"
},
"pick": 1
},
{
"id": "b_yomamafat",
"content": {
"en": "Yo' mama so fat she _______!"
},
"pick": 1
},
{
"id": "b_goodenough4me",
"content": {
"en": "Well if _______ is good enough for _______, it's good enough for me."
},
"pick": 2
},
{
"id": "b_acctjim",
"content": {
"en": "Hi, this is Jim from accounting. We noticed a $1,200 charge labeled \"_______\". Can you explain?"
},
"pick": 1
},
{
"id": "b_zoloft",
"content": {
"en": "Do you lack energy? Does it sometimes feel like the whole world is _______? Zoloft.®"
},
"pick": 1
},
{
"id": "b_damnilove",
"content": {
"en": "WHOOO! God damn I love _______!"
},
"pick": 1
},
{
"id": "b_audacityobama",
"content": {
"en": "Now in bookstores: \"The Audacity of _______\", by Barack Obama."
},
"pick": 1
},
{
"id": "b_creamofsoup",
"content": {
"en": "And today's soup is Cream of _______."
},
"pick": 1
},
{
"pick": 1,
"id": "b_comehometothis",
"content": {
"en": "I work my ass off all day for this family, and this is what I come home to? _______!?"
}
},
{
"pick": 1,
"id": "b_datepolicy",
"content": {
"en": "I have a strict policy. First date, dinner. Second date, kiss. Third date, _______."
}
},
{
"pick": 1,
"id": "b_cowboysand",
"content": {
"en": "When I was a kid, we used to play Cowboys and _______."
}
},
{
"pick": 1,
"id": "b_thisisamerica",
"content": {
"en": "This is America. If you don't work hard, you don't succeed. I don't care if you're black, white, purple, or _______."
}
},
{
"pick": 1,
"id": "b_15bloopers",
"content": {
"en": "You Won't Believe These 15 Hilarious _______ Bloopers!"
}
},
{
"pick": 1,
"id": "b_lonelyjames",
"content": {
"en": "James is a lonely boy. But when he discovers a secret door in his attic, he meets a magical new friend: _______."
}
},
{
"pick": 1,
"id": "b_dontworrykid",
"content": {
"en": "Don't worry kid. It gets better. I've been living with _______ for 20 years."
}
},
{
"pick": 1,
"id": "b_grandpashoes",
"content": {
"en": "My grandfather worked his way up from nothing. When he came to this country, all he had was the shoes on his feet and _______."
}
},
{
"pick": 1,
"id": "b_powerfulman",
"content": {
"en": "Behind every powerful man is _______."
}
},
{
"pick": 1,
"id": "b_millionsstruggle",
"content": {
"en": "You are not alone. Millions of Americans struggle with _______ every day."
}
},
{
"pick": 1,
"id": "b_cometodubai",
"content": {
"en": "Come to Dubai, where you can relax in our world famous spas, experience the nightlife, or simply enjoy _______ by the poolside."
}
},
{
"pick": 1,
"id": "b_thisissparta",
"content": {
"en": "\"This is madness.\" \"No, THIS IS _______!\""
}
},
{
"pick": 1,
"id": "b_garycorneroffice",
"content": {
"en": "Listen Gary, I like you. But if you want that corner office, you're going to have to show me _______."
}
},
{
"pick": 1,
"id": "b_eatpeyote",
"content": {
"en": "I went to the desert and ate of the peyote cactus. Turns out my spirit animal is _______."
}
},
{
"pick": 1,
"id": "b_buffwingprefs",
"content": {
"en": "And would you like those buffalo wings mild, hot, or _______?"
}
},
{
"pick": 1,
"id": "b_sixthingslol",
"content": {
"en": "The six things I could never do without: oxygen, Facebook, chocolate, Netflix, friends, and _______ LOL!"
}
},
{
"pick": 1,
"id": "b_whynomakelove",
"content": {
"en": "Why won't you make love to me anymore? Is it _______?"
}
},
{
"pick": 1,
"id": "b_puberty",
"content": {
"en": "Puberty is a time of change. You might notice hair growing in new places. You might develop an interest in _______. This is normal."
}
},
{
"pick": 1,
"id": "b_sorrychen",
"content": {
"en": "I'm sorry, Mrs. Chen, but there was nothing we could do. At 4:15 this morning, your son succumbed to _______."
}
},
{
"pick": 1,
"id": "b_misstn",
"content": {
"en": "I'm Miss Tennessee, and if I could make the world better by changing one thing, I would get rid of _______."
}
},
{
"pick": 1,
"id": "b_aftersexplans",
"content": {
"en": "Tonight we will have sex. And afterwards, If you'd like, a little bit of _______."
}
},
{
"pick": 1,
"id": "b_roompresence",
"content": {
"en": "Everybody join hands and close your eyes. Do you sense that? That's the presence of _______ in this room."
}
},
{
"pick": 1,
"id": "b_yanomamo",
"content": {
"en": "To become a true Yanomamo warrior, you must prove that you can withstand _______ without crying out."
}
},
{
"pick": 1,
"id": "b_nickcannon",
"content": {
"en": "Y'all ready to get this thing started? I'm Nick Cannon, and this is America's Got _______."
}
},
{
"pick": 1,
"id": "b_czar",
"content": {
"en": "If you had to describe the Card Czar, using only one of the cards in your hand, which one would it be?"
}
},
{
"id": "w_opiumeyes",
"content": {
"en": "Crazy opium eyes."
}
},
{
"id": "w_10anusfacts",
"content": {
"en": "10 Incredible Facts About the Anus."
}
},
{
"id": "w_interhandshake",
"content": {
"en": "An interracial handshake."
}
},
{
"id": "w_mtsjointpain",
"content": {
"en": "Moderate-to-severe joint pain."
}
},
{
"id": "w_finishindians",
"content": {
"en": "Finally finishing off the Indians."
}
},
{
"id": "w_sugarmad",
"content": {
"en": "Sugar madness."
}
},
{
"id": "w_boringmutants",
"content": {
"en": "Actual mutants with medical conditions and no superpowers."
}
},
{
"id": "w_secretfemsat",
"content": {
"en": "The secret formula for ultimate female satisfaction."
}
},
{
"id": "w_complexmideast",
"content": {
"en": "The complex geopolitical quagmire that is the Middle East."
}
},
{
"id": "w_magicalcorpsefuck",
"content": {
"en": "Fucking a corpse back to life."
},
"flags": "w g s"
},
{
"id": "w_ndgreathits",
"content": {
"en": "Neil Diamond's Greatest Hits."
}
},
{
"id": "w_hidethegay",
"content": {
"en": "Calculating every mannerism so as not to suggest homosexuality."
}
},
{
"id": "w_mcribmystery",
"content": {
"en": "Whatever a McRib® is made of."
}
},
{
"id": "w_ncopiv",
"content": {
"en": "No clothes on, penis in vagina.",
"de": "Keine Kleidung anhaben, Penis in Vagina."
},
"flags": "s gn gnm gnf"
},
{
"id": "w_allsingleladies",
"content": {
"en": "All the single ladies."
}
},
{
"id": "w_sexywhisper",
"content": {
"en": "Whispering all sexy."
}
},
{
"id": "w_howawesomeiam",
"content": {
"en": "How awesome I am.",
"de": "Wie großartig ich bin."
}
},
{
"id": "w_ass2mouth",
"content": {
"en": "Ass to mouth.",
"de": "Arsch am Mund."
}
},
{
"id": "w_smokecrack",
"content": {
"en": "Smoking crack, for instance."
}
},
{
"id": "w_fallinloo",
"content": {
"en": "Falling into the toilet.",
"de": "In die Toilette fallen."
}
},
{
"id": "w_sexdancemove",
"content": {
"en": "A dance move that's just sex."
}
},
{
"id": "w_mydicksize",
"content": {
"en": "The size of my penis.",
"de": "Meine Penisgröße."
},
"flags": "gn gnm"
},
{
"id": "w_someasian",
"content": {
"en": "Some sort of Asian."
}
},
{
"id": "w_nohopespiders",
"content": {
"en": "A hopeless amount of spiders."
}
},
{
"id": "w_partymexicans",
"content": {
"en": "Party Mexicans."
}
},
{
"id": "w_responsibledrink",
"content": {
"en": "Drinking responsibly."
}
},
{
"id": "w_safeword",
"content": {
"en": "The safe word."
}
},
{
"id": "w_angelhipsters",
"content": {
"en": "Angelheaded hipsters burning for the ancient heavenly connection to the starry dynamo in the machinery of night."
}
},
{
"id": "w_bouncing",
"content": {
"en": "Bouncing up and down."
}
},
{
"id": "w_jizz",
"content": {
"en": "Jizz.",
"de": "Samen."
}
},
{
"id": "w_ambsarcasm",
"content": {
"en": "Ambiguous sarcasm."
}
},
{
"id": "w_shinyloverock",
"content": {
"en": "A shiny rock that proves I love you."
}
},
{
"id": "w_demtits",
"content": {
"en": "Dem titties.",
"de": "Diese Titten."
}
},
{
"id": "w_worthlessson",
"content": {
"en": "My worthless son.",
"de": "Mein wertloser Sohn."
}
},
{
"id": "w_bombpigeons",
"content": {
"en": "Exploding pigeons."
}
},
{
"id": "w_ugandanwarlord",
"content": {
"en": "A Ugandan warlord."
}
},
{
"id": "w_sexdungeon",
"content": {
"en": "My sex dungeon."
}
},
{
"id": "w_lipkiss",
"content": {
"en": "A kiss on the lips."
}
},
{
"id": "w_cps",
"content": {
"en": "Child Protective Services."
}
},
{
"id": "w_spiritdetective",
"content": {
"en": "A Native American who solves crimes by going into the spirit world."
}
},
{
"id": "w_doodoo",
"content": {
"en": "Doo-doo."
},
"flags": "g fe"
},
{
"id": "w_riseofchina",
"content": {
"en": "The peaceful and nonthreatening rise of China."
}
},
{
"id": "w_sports",
"content": {
"en": "Sports.",
"de": "Sport."
}
},
{
"id": "w_fart",
"content": {
"en": "A fart.",
"de": "Ein Furz."
}
},
{
"id": "w_unquesobed",
"content": {
"en": "Unquestioning obedience."
}
},
{
"id": "w_3shappy",
"content": {
"en": "Three consecutive seconds of happiness."
}
},
{
"id": "w_2kindsofnazi",
"content": {
"en": "Grammar nazis who are also regular Nazis."
}
},
{
"id": "w_clownbonercoke",
"content": {
"en": "Snorting coke off a clown's boner."
}
},
{
"id": "w_africa",
"content": {
"en": "Africa.",
"de": "Afrika."
}
},
{
"id": "w_depression",
"content": {
"en": "Depression."
}
},
{
"id": "w_leglesshorse",
"content": {
"en": "A horse with no legs.",
"de": "Ein Pferd ohne Beine."
}
},
{
"id": "w_drifterstrangle",
"content": {
"en": "The euphoric rush of strangling a drifter."
}
},
{
"id": "w_khakis",
"content": {
"en": "Khakis."
}
},
{
"id": "w_interspecmarry",
"content": {
"en": "Interspecies marriage."
}
},
{
"id": "w_slampoetgender",
"content": {
"en": "A gender identity that can only be conveyed through slam poetry."
}
},
{
"id": "w_almosthelphomeless",
"content": {
"en": "Almost giving money to a homeless person."
}
},
{
"id": "w_fundipstuff",
"content": {
"en": "Stuff a child's face with Fun Dip® until he starts having fun."
}
},
{
"id": "w_whatjesusdo",
"content": {
"en": "What Jesus would do.",
"de": "Was Jesu machen würde."
}
},
{
"id": "w_bloodspitlizard",
"content": {
"en": "A for-real lizard that spits blood from its eyes."
}
},
{
"id": "w_blackula",
"content": {
"en": "Blackula."
}
},
{
"id": "w_godevidence",
"content": {
"en": "The tiniest shred of evidence that God is real."
}
},
{
"id": "w_dumbdadface",
"content": {
"en": "My dad's dumb fucking face."
}
},
{
"id": "w_priceali",
"content": {
"en": "Prince Ali,<br>fabulous he,<br>Ali Ababwa."
}
},
{
"id": "w_manhole",
"content": {
"en": "A manhole."
}
},
{
"id": "w_sexgoblin",
"content": {
"en": "A sex goblin with a carnival penis."
},
"flags": "w an gn gnm s"
},
{
"id": "w_cardgameidiots",
"content": {
"en": "A bunch of idiots playing a card game instead of interacting like normal humans."
}
},
{
"id": "w_sexcomet",
"content": {
"en": "A sex comet from Neptune that plunges the Earth into eternal sexiness."
}
},
{
"id": "w_legsharks",
"content": {
"en": "Sharks with legs.",
"de": "Haie mit Beinen."
}
},
{
"id": "w_drugvsdrugarms",
"content": {