-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcah_absurd.json
1937 lines (1937 loc) · 51.8 KB
/
cah_absurd.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_absurd",
"name": "CAH: Absurd Box",
"accent_color": "white",
"accent_background": "repeating-linear-gradient(115deg, #000, #000 4px, #0f0 4px, #f0f 6px)",
"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_barbandbob50",
"content": {
"en": "Ain't it nifty? Barb and Bob hit 50! So get off your ass and raise a glass to 50 years of ______."
},
"pick": 1
},
{
"id": "b_awesomeinspace",
"content": {
"en": "Duuuuuuude. You have got to go to space. ______ is awesome in space."
},
"pick": 1
},
{
"id": "b_countdown",
"content": {
"en": "Five,\nfour,\nthree,\ntwo,\none...\n________!",
"de": "Fünf,\nvier,\ndrei,\nzwei,\neins...\n________!"
},
"pick": 1
},
{
"id": "b_kingsforest",
"content": {
"en": "For hunting in the King's forest, I hereby sentence you to death by ______."
},
"pick": 1
},
{
"id": "b_gimmetengoodmen",
"content": {
"en": "Give me ten good men and 48 hours. I'll get you ______."
},
"pick": 1
},
{
"id": "b_goldfinger",
"content": {
"en": "*Goldfinger!*\nHe's the man,\nthe man with ________."
},
"pick": 1
},
{
"id": "b_goodbyehello",
"content": {
"en": "Goodbye, ________, hello, ________!",
"de": "Auf Wiedersehen, ________, hallo, ________!"
},
"pick": 2
},
{
"id": "b_businessschooltip",
"content": {
"en": "Here's a little something I learned in business school: The customer is always ________."
},
"pick": 1
},
{
"id": "b_bedroompaintchoice",
"content": {
"en": "\"Hey, honey.\nFor the bedroom, were you thinking, \"Robin's Egg Blue\" or \"______ Pink?\""
},
"pick": 1
},
{
"id": "b_iquit",
"content": {
"en": "I hate this job.\nI hate this place.\nMost of all, I hate ________.\nI quit."
},
"pick": 1
},
{
"id": "b_solvedpolitics",
"content": {
"en": "I have solved politics.\nMy solution is ________."
},
"pick": 1
},
{
"id": "b_isodrunk",
"content": {
"en": "I so drunk I ______."
},
"pick": 1
},
{
"id": "b_murdermyhusband",
"content": {
"en": "I swear to God I'm gonna murder my husband if he doesn't shut the fuck up about ______."
},
"pick": 1
},
{
"id": "b_fromtomemoir",
"content": {
"en": "In bookstores now: \"From ______ to ______: A memoir.\""
},
"pick": 2
},
{
"id": "b_radioheadsingle",
"content": {
"en": "In Radiohead's new single, Thom Yorke repeats the phrase \"______\" dozens of times over a skittering drum beat."
},
"pick": 1
},
{
"id": "b_itfinallyhappening",
"content": {
"en": "It's finally happening! I'm finally doing it! Yes! It's time for ______!"
},
"pick": 1
},
{
"id": "b_kinkypatrickstewart",
"content": {
"en": "It's late at night. You're in bed with your lover, Patrick Stewart. He leans over with a twinkle in his eye and asks \"How about ______?\""
},
"pick": 1
},
{
"id": "b_21centurywoman",
"content": {
"en": "It's the 21st century.\nA woman shouldn't have to apologize for ________."
},
"pick": 1
},
{
"id": "b_2prongplan",
"content": {
"en": "Ladies and gentlemen, I propose a two-pronged plan. The first prong will be ______, and the second prong will be ______."
},
"pick": 2
},
{
"id": "b_americafavgameshow",
"content": {
"en": "Live from Universal Studios, it's America's favorite game show! \"______ or ______?\""
},
"pick": 2
},
{
"id": "b_trumpbookartof",
"content": {
"en": "Millions of copies sold! Donald Trump's \"The Art of _______.\""
},
"pick": 1
},
{
"id": "b_tgifnewburger",
"content": {
"en": "New at TGI Fridays! It's what you've been waiting for: The ______ Burger."
},
"pick": 1
},
{
"id": "b_ohhgodhereitcomes",
"content": {
"en": "Oh no!\nHere it comes!\nOhhhhh god!\nIt's ________.",
"de": "Oh nein!\nJetzt kommt es!\nOhhhh Gott!\nEs ist ________."
},
"pick": 1
},
{
"id": "b_newnetflixdocu",
"content": {
"en": "Oh you haaaaaaave to see this new documentary on Netflix. I don't want to give anything away, but let's just say it will change the way you look at ______."
},
"pick": 1
},
{
"id": "b_frightfulweather",
"content": {
"en": "Oh, the weather outside is frightful. But ______ is so delightful."
},
"pick": 1
},
{
"id": "b_snoopanddre",
"content": {
"en": "One, two, three and to the four, Snoop Doggy Dogg and Dr. Dre is ______."
},
"pick": 1
},
{
"id": "b_15yardpenalty",
"content": {
"en": "Personal foul: ______. 15-yard penalty. Automatic first down."
},
"pick": 1
},
{
"id": "b_rubadubdub",
"content": {
"en": "Rub a dub dub, ______ in a tub!"
},
"pick": 1
},
{
"id": "b_sayitloud",
"content": {
"en": "Say it loud! I'm ______ and I'm proud!"
}
},
{
"id": "b_srsnothingfunnyabout",
"content": {
"en": "Seriously guys, there's nothing funny about ______."
},
"pick": 1
},
{
"id": "b_talentedsisters",
"content": {
"en": "Sweetheart, you and your sister excel in different ways. She's got her violin, and you've got ______."
},
"pick": 1
},
{
"id": "b_cantfiremeforthis",
"content": {
"en": "That's bullshit! They can't fire me for _______!"
},
"pick": 1
},
{
"id": "b_getreadyforsequel",
"content": {
"en": "The sequel is here! Get Ready for ______2: ______."
},
"pick": 2
},
{
"id": "b_tomeetpeopleinny",
"content": {
"en": "Times have changed, girlfriend. If you want to meet people in New York, you got to be down for _______."
},
"pick": 1
},
{
"id": "b_notellonlyexperience",
"content": {
"en": "Unfortunately, no one can be *told* what ______ is. You have to experience it for yourself."
},
"pick": 1
},
{
"id": "b_shamefuljerkoff",
"content": {
"en": "What has my life become? I'm jerking off to a video called \"co-ed absolutely destroyed by ______.\""
},
"pick": 1
},
{
"id": "b_4margaritaslater",
"content": {
"en": "What sounds great after four margaritas?"
},
"pick": 1
},
{
"id": "b_hotsmellyalmostdead",
"content": {
"en": "What's hot, smelly, and about to die?",
"de": "Was ist heiß, stinkend, und kurz vor dem Tod?"
},
"pick": 1
},
{
"id": "b_secretrussianplot",
"content": {
"en": "What's secretly a Russian plot to destabilize the West?"
},
"pick": 1
},
{
"id": "b_ytdantheman",
"content": {
"en": "\"What's up, YouTube?\nUser DanTheMan wanted to see ______, so here we go.\""
},
"pick": 1
},
{
"id": "b_chickencrosstheroad",
"content": {
"en": "Why did the chicken cross the road?",
"de": "Warum hat das Huhn die Straße überquert?"
},
"pick": 1
},
{
"id": "b_smellymustache",
"content": {
"en": "Why my mustache smell so bad?",
"de": "Warum stinkt mein Schnurrbart so?"
},
"pick": 1
},
{
"id": "b_ohimcumming",
"content": {
"en": "Yeah that's so hot.\nI'm so close.\nTalk about _______ again!\nOH I'M CUMMING!"
},
"pick": 1
},
{
"id": "b_callmecopperfield",
"content": {
"en": "You can call me David Copperfield, because I'm about to make ______ disappear."
},
"pick": 1
},
{
"id": "b_quietdignity",
"content": {
"en": "You city folk would never understand the quiet dignity of _______."
},
"pick": 1
},
{
"id": "w_12ftbonescepter",
"content": {
"en": "A 12-foot scepter of bone."
}
},
{
"id": "w_scremaingbaseball",
"content": {
"en": "A basketball that screams every time it gets bounced."
}
},
{
"id": "w_bear",
"content": {
"en": "A bear.",
"de": "Ein Bär."
}
},
{
"id": "w_bighole",
"content": {
"en": "A big hole.",
"de": "Ein großes Loch."
}
},
{
"id": "w_bighotfire",
"content": {
"en": "A big hot fire that's burning everybody.",
"de": "Ein große, heiße Feuer, das jeden brennt."
}
},
{
"id": "w_bigbigbigbigbig",
"content": {
"en": "A big, big, big, and I mean BIG big.",
"de": "Ein großer, großer, großer und zwar GROẞER Großer."
}
},
{
"id": "w_bigsloppycowboybj",
"content": {
"en": "A big, sloppy blowjob from a mean, tired cowboy."
}
},
{
"id": "w_birdthatdies",
"content": {
"en": "A bird that dies.",
"de": "Ein Vogel, der stirbt."
}
},
{
"id": "w_boldredlip",
"content": {
"en": "A bold red lip."
}
},
{
"id": "w_jazzbutton",
"content": {
"en": "A button that when you press it, there's jazz."
}
},
{
"id": "w_crabrangoon",
"content": {
"en": "A crab rangoon."
}
},
{
"id": "w_handcat",
"content": {
"en": "A cat with… hands.",
"de": "Eine Katze mit… Händen."
}
},
{
"id": "w_gooseandjellies",
"content": {
"en": "A Christmas feast of goose and jellies."
}
},
{
"id": "w_concerningwhiteppl",
"content": {
"en": "A concerning amount of white people."
}
},
{
"id": "w_2coldones",
"content": {
"en": "A couple of cold ones."
}
},
{
"id": "w_raccoonfam",
"content": {
"en": "A family of raccoons."
}
},
{
"id": "w_4hrdepressionnap",
"content": {
"en": "A four-hour depression nap."
}
},
{
"id": "w_panicattack",
"content": {
"en": "A full-on panic attack."
}
},
{
"id": "w_garbageclown",
"content": {
"en": "A garbage clown who makes no one laugh and should die."
}
},
{
"id": "w_stringburger",
"content": {
"en": "A hamburger on a string that keeps getting pulled away."
}
},
{
"id": "w_30yearhatemarriage",
"content": {
"en": "A hateful 30-year marriage."
}
},
{
"id": "w_potatohandboy",
"content": {
"en": "A little boy with big dreams and potatoes for hands."
}
},
{
"id": "w_littleknifegirl",
"content": {
"en": "A little girl with a knife."
}
},
{
"id": "w_sewergirl",
"content": {
"en": "A little sewer girl strangling a pigeon."
}
},
{
"id": "w_littlepenistaste",
"content": {
"en": "A little taste of penis.",
"de": "Eine kleine Kostprobe des Penis."
},
"flags": "gn gnm s"
},
{
"id": "w_badmagician",
"content": {
"en": "A magician fucking up over and over again."
}
},
{
"id": "w_explodingdick",
"content": {
"en": "A penis that gets too hard and explodes blood.",
"de": "Ein Penis, der zu hart wird und blutig explodiert."
},
"flags": "gn gnm i w"
},
{
"id": "w_beanhaircasserole",
"content": {
"en": "A piping-hot casserole filled with beans and hair."
}
},
{
"id": "w_poopemergency",
"content": {
"en": "A poop emergency.",
"de": "Ein Kacknotfall."
}
},
{
"id": "w_brainhead",
"content": {
"en": "A powerful philosopher named Brainhead."
}
},
{
"id": "w_pringle",
"content": {
"en": "A Pringle."
}
},
{
"id": "w_bronxminotaur",
"content": {
"en": "A Puerto Rican minotaur from the Bronx."
}
},
{
"id": "w_racistboomerang",
"content": {
"en": "A racist boomerang that only comes back if you're white."
}
},
{
"id": "w_saxcumdump",
"content": {
"en": "A real cum-dumpster of a saxophonist."
}
},
{
"id": "w_realjobwithtaxes",
"content": {
"en": "A real job with insurance and your taxes taken out and everything."
}
},
{
"id": "w_stickytreehole",
"content": {
"en": "A sticky tree hole full of pancake sauce."
}
},
{
"id": "w_stinkyhooha",
"content": {
"en": "A stinky hoo-ha."
}
},
{
"id": "w_toothlesspeachlady",
"content": {
"en": "A toothless woman gumming on a peach."
}
},
{
"id": "w_uti",
"content": {
"en": "A urinary tract infection."
}
},
{
"id": "w_beatboxvag",
"content": {
"en": "A vagina that beatboxes when it's horny."
}
},
{
"id": "w_spanishtalking",
"content": {
"en": "A whole different way of talking called Spanish."
}
},
{
"id": "w_accusepowerfulman",
"content": {
"en": "Accusing a powerful man of sexual assault."
}
},
{
"id": "w_easygunget",
"content": {
"en": "Acquiring a gun very easily."
}
},
{
"id": "w_actwhite",
"content": {
"en": "Acting white."
}
},
{
"id": "w_allhonors",
"content": {
"en": "All manners of honors."
}
},
{
"id": "w_alldeadsisters",
"content": {
"en": "All my dead sisters.",
"de": "Alle meine toten Schwestern."
}
},
{
"id": "w_allgirltypes",
"content": {
"en": "All types of girls, even ugly ones."
}
},
{
"id": "w_800ftpoolnoodle",
"content": {
"en": "An 800-foot-long pool noodle."
}
},
{
"id": "w_ambitiouspantwoman",
"content": {
"en": "An ambitious woman who wears pants."
}
},
{
"id": "w_svu",
"content": {
"en": "An elite squad known as the Special Victims Unit."
}
},
{
"id": "w_anythingasian",
"content": {
"en": "Anything Asian.",
"de": "Irgendetwas Asiatisches."
}
},
{
"id": "w_poolballbagass",
"content": {
"en": "As ass like a bag of pool balls."
}
},
{
"id": "w_ikeaassembly",
"content": {
"en": "Assembling IKEA furniture."
}
},
{
"id": "w_beef",
"content": {
"en": "Beef.",
"de": "Rindfleisch."
}
},
{
"id": "w_gianteaglehunt",
"content": {
"en": "Being hunted by giant eagles."
}
},
{
"id": "w_insideme",
"content": {
"en": "Being inside me."
}
},
{
"id": "w_infinitejest",
"content": {
"en": "Being seen reading Infinite Jest."
}
},
{
"id": "w_shittyandlate",
"content": {
"en": "Being shitty to everyone and late for everything."
}
},
{
"id": "w_beefybaseballboys",
"content": {
"en": "Big beefy baseball boys."
}
},
{
"id": "w_italiansaucewoman",
"content": {
"en": "Big Italian women making the spicy sauce."
}
},
{
"id": "w_bimpyjizzball",
"content": {
"en": "Bimpy, the small styrofoam ball we all jack off into."
}
},
{
"id": "w_bipolar",
"content": {
"en": "Bipolar Disorder.",
"de": "Bipolare Störung."
}
},
{
"id": "w_inflateballs",
"content": {
"en": "Blowing into the penis so that the balls inflate."
},
"flags": "s w gn gnm"
},
{
"id": "w_blueanussmoke",
"content": {
"en": "Blue smoke coming out of my anus.",
"de": "Blauer Rauch aus meinem Anus."
}
},
{
"id": "w_badcanadamangoes",
"content": {
"en": "Canada's worst mangoes."
}
},
{
"id": "w_carbs",
"content": {
"en": "Carbs.",
"de": "Kohlehydrate."
}
},
{
"id": "w_carlosguitar",
"content": {
"en": "Carlos Santana's horrible wailing guitar."
}
},
{
"id": "w_certainthings",
"content": {
"en": "Certain things, but not others."
}
},
{
"id": "w_chinesepeople",
"content": {
"en": "Chinese people.",
"de": "Chinesische Leute."
}
},
{
"id": "w_chowder",
"content": {
"en": "Chowder.",
"de": "Fischsuppe."
}
},
{
"id": "w_nocucumbersbutyes",
"content": {
"en": "Clearly asking for no cucumbers in my salad, and yet here we are."
}
},
{
"id": "w_clippy",
"content": {
"en": "Clippy from Microsoft Office.",
"de": "Clippy von Microsoft Office."
}
},
{
"id": "w_russiacollusion",
"content": {
"en": "Colluding with Russia.",
"de": "Mit Russland kospirieren."
}
},
{
"id": "w_corn",
"content": {
"en": "Corn.",
"de": "Mais."
}
},
{
"id": "w_tobykeith",
"content": {
"en": "Country music legend Toby Keith."
}
},
{
"id": "w_bigflappymouthsnacks",
"content": {
"en": "Crunchy snacks for big, flappy mouth."
}
},
{
"id": "w_culturalapprop",
"content": {
"en": "Cultural appropriation.",
"de": "Kulturelle Aneignung."
}
},
{
"id": "w_antiisiscurlyfries",
"content": {
"en": "Curly fries so good you quit ISIS.",
"de": "Spiralpommes, die so gut sind, dass du ISIS verlässt."
}
},
{
"id": "w_datingrepublican",
"content": {
"en": "Dating a Republican.",
"de": "Mit einem Republikaner ausgehen."
}
},
{
"id": "w_death",
"content": {
"en": "Death.",
"de": "Tod."
}
},
{
"id": "w_dejavu1",
"content": {
"en": "Déjà vu."
}
},
{
"id": "w_dejavu2",
"content": {
"en": "Déjà vu."
}
},
{
"id": "w_denyclimatechange",
"content": {
"en": "Denying climate change."
}
},
{
"id": "w_hoshit",
"content": {
"en": "Doing ho shit.",
"de": "Hurenscheiße tun."
}
},
{
"id": "w_doingitdoggy",
"content": {
"en": "Doing it doggy, no kissing."
}
},
{
"id": "w_dostuffbad",
"content": {
"en": "Doing stuff bad."
}
},
{
"id": "w_drake",
"content": {
"en": "Drake.",
"de": "Drake."
}
},
{
"id": "w_8hourwalmartstare",
"content": {
"en": "Driving to a Walmart parking lot and staring into the distance for eight hours."
}
},
{
"id": "w_badpussyeat",
"content": {
"en": "Eating pussy bad."
}
},
{
"id": "w_hollandaisecum",
"content": {
"en": "Ejaculating a quart of hollandaise sauce."
}
},
{
"id": "w_elonmusk",
"content": {
"en": "Elon Musk.",
"de": "Elon Musk."
}
},
{
"id": "w_urethranectar",
"content": {
"en": "Enticing a hummingbird to drink nectar out of my urethra."
}
},
{
"id": "w_fascism",
"content": {
"en": "Fascism.",
"de": "Faschismus."
}
},
{
"id": "w_fat",
"content": {
"en": "Fat.",
"de": "Fett."
}
},
{
"id": "w_mutualbuttfinger",
"content": {
"en": "Fingering each other's buttholes."
}
},
{
"id": "w_veganshits",
"content": {
"en": "Foul vegan shits."
}
},
{
"id": "w_amazonprime",
"content": {
"en": "Free two-day shipping with Amazon Prime."
}
},
{
"id": "w_terrygrossfreshair",
"content": {
"en": "Fresh Air with Terry Gross."
}
},
{
"id": "w_shellcompanymoney",
"content": {
"en": "Funneling money through a series of shell companies."
}
},
{
"id": "w_getmetood",
"content": {
"en": "Getting #MeToo'd."
}
},
{
"id": "w_shadowrealm",
"content": {
"en": "Getting banished to the Shadow Realm."
}
},
{
"id": "w_depressedandfat",
"content": {
"en": "Getting depressed and super fat."
}
},
{
"id": "w_nofingerfist",
"content": {
"en": "Getting fisted by a man with no fingers.",
"de": "Von einem Mann ohne Finger faustgefickt werden."
}
},
{
"id": "w_smooshitin",
"content": {
"en": "Getting half-hard and trying to smoosh it in."
}
},
{
"id": "w_brucewillisherpes",
"content": {
"en": "Getting herpes from Bruce Willis."
}
},
{
"id": "w_mommybeer",
"content": {
"en": "Getting Mommy another beer.",
"de": "Mama noch ein Bier holen."
}
},
{