-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathriddleList.json
More file actions
14099 lines (14099 loc) · 422 KB
/
riddleList.json
File metadata and controls
14099 lines (14099 loc) · 422 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
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
[{
"riddleId" : "VgqjlwuHF4",
"text" : "A sea of hatred, spite and rage\nreally, really far away."
},
{
"riddleId" : "vQozYCMqSf",
"text" : "If you look you cannot see me. And if you see me you cannot see anything else. I can ..."
},
{
"riddleId" : "LdlJkTuWj9",
"text" : ".-- .... .- - / .. ... / - .... . / ..-. .. .-. ... - / -. .- -- . / --- ..-. / - .... . / --. ..- -.-- / .-- .... --- / .. -. ...- . -. - . -.. / - .... .. ... / -.-. --- -.. . ..--.."
},
{
"riddleId" : "ZHX79UmKWL",
"text" : "What makes up everything, every word, every object, even the universe?"
},
{
"riddleId" : "YJIP07qB9e",
"text" : "What is made of wood and was taught to be good?"
},
{
"riddleId" : "UgsGxO6Ne4",
"text" : "You can crack me open, but that makes you colder. People say they can see right ..."
},
{
"riddleId" : "i6O82SpMmK",
"text" : "When you see me I am dead. I come in many colors and shapes. What am I?"
},
{
"riddleId" : "pujIsrctSL",
"text" : "A side-quest frequently given up on..."
},
{
"riddleId" : "FaPuAno8yj",
"text" : "1\n11\n21\n1211\n111221\n312211\n\nWhat is the next number in the sequence?"
},
{
"riddleId" : "aKMUB4pft8",
"text" : "I fit between your bones. Thin like a puppet string, I am a daily thing."
},
{
"riddleId" : "ZIrq0WtlGL",
"text" : "We hurt without moving. We poison without touching. We bare the truth and the lies. ..."
},
{
"riddleId" : "zOJGU5nuAS",
"text" : "I live only where there is light, but I die if the light shines on me. What am I?"
},
{
"riddleId" : "KlOCHhMaJb",
"text" : "You are in 3rd place in a race. You overtake 2nd place. Which place are you in now?"
},
{
"riddleId" : "TgXAnldGeC",
"text" : "There are five birds in a tree, eight on a roof, and seven on the ground. All birds ..."
},
{
"riddleId" : "r7sOERfPK1",
"text" : "The name of man with no arms or legs who lives in your mailbox?"
},
{
"riddleId" : "qufURAbJ6k",
"text" : "I can be long, or I can be short. I can be grown, and I can be bought. I can be ..."
},
{
"riddleId" : "MhgjbB2rez",
"text" : "When you need me, you throw me away.\n But when youre done with me, you bring me back..."
},
{
"riddleId" : "SUDkZRMem3",
"text" : "I can be big or small, short or long, odd or even. What am I?"
},
{
"riddleId" : "MCALSmKpV8",
"text" : "I rise. I am good. I am sold pretty much anywhere."
},
{
"riddleId" : "2sdZ6fxMFI",
"text" : "You need me, you don't always have me, when you get money you get me. What am I?"
},
{
"riddleId" : "JmcIVgPBtv",
"text" : "Filled with the covering of an avian, rest your mind on one and hallucinate. (plural)"
},
{
"riddleId" : "imRgtW0nCZ",
"text" : "I'm normally hard to get, people can find me online, and I am made up of words. ..."
},
{
"riddleId" : "5GM2i7vdE9",
"text" : "I light up, to show you the way, you crack me, you see the color that I was meant to ..."
},
{
"riddleId" : "Y3Br0HTibI",
"text" : "I'm flat but infinite in my one way. What am I?"
},
{
"riddleId" : "oNrspiwnH1",
"text" : "A fish that complains a lot gives money to a single numbered cube named M. What ..."
},
{ "riddleId" : "XS4JrghxAI", "text" : "I'm always falling somewhere." },
{
"riddleId" : "tiIb7fGyaX",
"text" : "What do you call a guy with no arms and no legs decomposing in a bog?"
},
{
"riddleId" : "87ySTaYQ0w",
"text" : "What can you put inside a bucket to make it lighter?"
},
{
"riddleId" : "XSm64IdPUY",
"text" : "I can be hurt but I can't be touched."
},
{
"riddleId" : "mq7IS2cyUo",
"text" : "I'm a sport that includes shotguns specifically."
},
{ "riddleId" : "fUWRg5nbeE", "text" : "What can you catch but not throw?" },
{
"riddleId" : "ZSDOBlQYtk",
"text" : "I'm left, and right, I'm up and down. What am I?"
},
{
"riddleId" : "Jlxp2fw7Pb",
"text" : "I help people but I can also hurt people, they love me or they hate me, but I'm ..."
},
{
"riddleId" : "JMHxmrqiL6",
"text" : "I'm hard to some, but easy to others. You take me seriously and I sit in ..."
},
{
"riddleId" : "hfbiZItGdF",
"text" : "I'm only usable when I'm broken. What am I?"
},
{
"riddleId" : "oDfnSGq1i0",
"text" : "I can last a short time or a long time, I'm like two magnets pulling until the ..."
},
{
"riddleId" : "ATtngSKiVz",
"text" : "We come in swarms, but most people never notice us. We are invisible, but when looked..."
},
{
"riddleId" : "abn5mZlX2s",
"text" : "The 2.5 mile Daytona international speedway is best known for the Daytona 500, how ..."
},
{
"riddleId" : "SghEmH8AFp",
"text" : "What makes electricity like a battery does?"
},
{
"riddleId" : "aZXFgKWE4O",
"text" : "You either hate or love me. I come in many colors, but I'm always Red. What am I..."
},
{
"riddleId" : "6HoN7vCw4O",
"text" : "A male sheep in a Rush cover band who is a strong advocate for a basic unit of mass."
},
{
"riddleId" : "hEBTZ2wPqd",
"text" : "This happened in 2017 and before that 100 years ago. I'm a big thing and also ..."
},
{
"riddleId" : "uD7ypsAbnz",
"text" : "Wild cards are on one side of me. Jokers are on the other side of me. What am I?"
},
{
"riddleId" : "8jZFBH1C9i",
"text" : "Plant me, I grow. From trees I snow. The tailed ones collect me, to make sound from ..."
},
{
"riddleId" : "LAxn6Drc1d",
"text" : "I'm a holiday, I am bright and fun, it's cold outside when I come around, ..."
},
{ "riddleId" : "2Zb9AXilaw", "text" : "What am I?" },
{
"riddleId" : "95ZfPJLowD",
"text" : "I have no hands but I can catch. I bring you food, but it's a trap. What am I? [..."
},
{
"riddleId" : "AoVjZTWdNX",
"text" : "I remained stuck on a farm, until a man stuck out his arm, he gave me items for my ..."
},
{
"riddleId" : "vEydlSs7NO",
"text" : "The more you touch, the more you leave behind. What am I?"
},
{
"riddleId" : "20bofupAMl",
"text" : "Known as big foot who has first arrived"
},
{
"riddleId" : "srPCBAGQ2l",
"text" : "This well organized solid weeps when it is vertically gifted."
},
{
"riddleId" : "JUjkBnRL0u",
"text" : "A graceful action , a pretty accessory, a weapon.... what am I?"
},
{
"riddleId" : "x9J0bpr7n5",
"text" : "I am used to move people and I can also be used to teach people"
},
{
"riddleId" : "3dRqw5lCfF",
"text" : "You sit on me, and I eat your insides. Yet I am perfectly safe. What am I?"
},
{
"riddleId" : "iKt2zojNJ4",
"text" : "You touch me everyday. Sometimes you don't even look at me, I'm a part of a..."
},
{
"riddleId" : "wi9G6cWPbz",
"text" : "The moon can pass through the door but sun cannot. An apple can go through the door ..."
},
{
"riddleId" : "wyY6Bapz9A",
"text" : "An impoverished chain of mountains often made from oats."
},
{
"riddleId" : "74kiwOPxD8",
"text" : "He didn't have a map, so he used that what was in at last"
},
{
"riddleId" : "SAdO0sXwYv",
"text" : "Dealt a tough hand, one out of the box"
},
{
"riddleId" : "eltPbsE3Si",
"text" : "This will store your data on the information superhighway"
},
{
"riddleId" : "SWjNmZFqfK",
"text" : "Divert your attention from a small hole, while aiming for another small hole."
},
{
"riddleId" : "iJa5b2yh0u",
"text" : "I am edible. The bones I leave become crafts of cloth and clay. What am I?"
},
{ "riddleId" : "vVWES4eTX9", "text" : "It's obvious. Look at that plane" },
{ "riddleId" : "fZhMjndrkT", "text" : "A sloping run, is sweet." },
{ "riddleId" : "8UQifyOcxE", "text" : "Necromancers turf" },
{
"riddleId" : "sJPWx05LOF",
"text" : "I have hairs, but not ones you brush, I have legs but not ones you touch."
},
{
"riddleId" : "liBKVGtbHg",
"text" : "He is a chimera to be feared. One half this, one half that, and one half the other ..."
},
{
"riddleId" : "dezCmnEtg7",
"text" : "I am annoying, sometimes rude, and a natural disaster."
},
{
"riddleId" : "A5NY3WEC7x",
"text" : "What's black, white, and red all over?"
},
{ "riddleId" : "jXBnZQIaYG", "text" : ".Air glass." },
{ "riddleId" : "lRSmEvTH1i", "text" : "Deadly falling waste" },
{
"riddleId" : "UJy9dsNKqV",
"text" : "Its easy to get caught in a snare and preform a stunt"
},
{ "riddleId" : "KMLgDawINx", "text" : "Can a card box?" },
{ "riddleId" : "OsR0Ub6AZz", "text" : "The joker's real name" },
{ "riddleId" : "jFp9R2nY0b", "text" : "N/0 2 words" },
{
"riddleId" : "Bpau9sOA2l",
"text" : "First I slip between each toe,\nThen I bathe in fire-glow;\nNot burnt or crisped, ..."
},
{
"riddleId" : "Hof1Y6WlKh",
"text" : "Its six faces move quickly and die at twenty."
},
{ "riddleId" : "KqhwavEDY6", "text" : "If you hear it, it relaxes you." },
{
"riddleId" : "vMl08dswgk",
"text" : "Throw away the outside cook the inside, eat the outside throw away the inside.( 4 ..."
},
{
"riddleId" : "5bK8aOzh0f",
"text" : "I am electronic and foldable, I have a keyboard and am portable. What am I?"
},
{ "riddleId" : "lAaEMspf4n", "text" : "Our closest fiery neighbour" },
{
"riddleId" : "BRegjwb5Qs",
"text" : "Add me to water, I get caught in your teeth,\nI come from a plant, I can be made into..."
},
{
"riddleId" : "cfbmHN8pX4",
"text" : "The firey feeder of life, the biproduct is also essential for life. My meaning is in ..."
},
{ "riddleId" : "SL5uGZ4ld0", "text" : "What is deep and wet" },
{
"riddleId" : "Bs9qljAJb5",
"text" : "A precarious place with an unseen boundary. Things on one side are clear and concise..."
},
{
"riddleId" : "LNA1hie2dF",
"text" : "I go in hard and dry, but I come out wet, soft and sticky. What am I?"
},
{
"riddleId" : "fVvW2tLTbC",
"text" : "What is dark but wakes people up in the morning?"
},
{
"riddleId" : "HQqO7xZApv",
"text" : "I'm delicious and sweet, but you can't eat. I'm sometimes brown, ..."
},
{
"riddleId" : "LACs082ZSD",
"text" : "Two people are found dead in a cabin in the woods, how did they die?"
},
{
"riddleId" : "Fg8K7uRfIo",
"text" : "What 8 letter word can have a letter taken away and it still makes a word. Take ..."
},
{ "riddleId" : "6hPQJHMIGK", "text" : "I sing in the morning." },
{
"riddleId" : "lOxT9dnL8u",
"text" : "I range in number between 2 and 36. I can have a variety of different ranks, but the ..."
},
{
"riddleId" : "I47Ph9ZYKX",
"text" : "There was a squash who was an ax murderer, he did this to all of his Victims."
},
{
"riddleId" : "JlMr4UT7n2",
"text" : "I can never be stolen from you even if I'm taken from you because everyone has ..."
},
{
"riddleId" : "96y7uwWgIB",
"text" : "What day in the week doesn't have day in its name."
},
{
"riddleId" : "Jge2cV6Esr",
"text" : "I come after light fades, after billion year old infants have died of old age, after ..."
},
{
"riddleId" : "pqTvbBzANj",
"text" : "I have two sets of fours, some people love me, wild animals hate me"
},
{
"riddleId" : "uRUW1whdPm",
"text" : "There are four spies trying to sneak into an enemy building the first spy walks up ..."
},
{
"riddleId" : "hmY7qgbiWA",
"text" : "You know thing that are me, I might even be you, What Am I?"
},
{
"riddleId" : "7s0YoTbXxW",
"text" : "Mr Brown was killed on Sunday afternoon. The wife said she was reading a book. The ..."
},
{
"riddleId" : "iOa1KGFg4b",
"text" : "A solar clock has this unique timbre. (Two words)"
},
{
"riddleId" : "GDysTi7d81",
"text" : "A pessimistic bunny who doesn't bounce is this"
},
{
"riddleId" : "XB3ODdKFwy",
"text" : "Where does a squirrel keep its winter clothes?"
},
{ "riddleId" : "jtv82DnFiG", "text" : "What is red and comes once a year?" },
{
"riddleId" : "Ob0cwuy3mQ",
"text" : "32 days of pure darkness, 56 days of pure daylight."
},
{
"riddleId" : "AV6UXNYJvz",
"text" : "Four legs have I, though sometimes three\nOn me you'll find no calf, or shin, or ..."
},
{
"riddleId" : "wEodueMUF0",
"text" : "What has all of the colors of the rainbow?"
},
{
"riddleId" : "CsYTvEMiPo",
"text" : "I face down. I feel awkward. My face turns red. What am I?"
},
{
"riddleId" : "gZ6QdRXSVI",
"text" : "You can see me in water, but I never get wet. What am I?"
},
{
"riddleId" : "SA1LBF9K5N",
"text" : "My first is often at the front door.\nMy second is found in the cereal family.\nMy ..."
},
{
"riddleId" : "4sJRioYt1u",
"text" : "You wake up dazed and confused, rubbing your eyes you find yourself in the center of ..."
},
{
"riddleId" : "bg1PMmw7dC",
"text" : "North, north, south, south, west, east, west, east, beta, alpha, beta, alpha, select..."
},
{
"riddleId" : "guO7jL1wso",
"text" : "They enjoy company with both one-time merchants and clients alike. If they leave ..."
},
{
"riddleId" : "1eBwlazEtj",
"text" : "Running for a long time from a vehicle"
},
{
"riddleId" : "D0SBzZMFiA",
"text" : "5+3+2 = 151012\n9+2+4 = 183643\n8+6+3 = 482426\n5+4+5 = 202526\nTHEN ;\n7+2+5 = ?"
},
{ "riddleId" : "NHz2jUciV1", "text" : "Chased a vehicle for quite a while." },
{
"riddleId" : "pTetVw2W6K",
"text" : "Somebody once told me the _______ was gonna roll me"
},
{
"riddleId" : "g03JmbWeZ8",
"text" : "What goes into the water black and comes out red?"
},
{
"riddleId" : "LQW017Uw2p",
"text" : "I go in a corner, yet I go all around the world. What am I?"
},
{
"riddleId" : "8hzqpy2Dmo",
"text" : "What place has enough room for everyone to live?"
},
{
"riddleId" : "yFbMtK6Ikn",
"text" : "I am taken from a mine, and shut up in a wooden case, from which I am never released..."
},
{
"riddleId" : "16JCbz5oN4",
"text" : "I hold stuff together, and keep others out. What am I?"
},
{ "riddleId" : "K9Mfvb0EoL", "text" : "A stain of hate that lasts forever." },
{
"riddleId" : "zTfhUiKqYW",
"text" : "You can listen to it, is BLISS ON A TAPE"
},
{
"riddleId" : "dmWsNPD3J7",
"text" : "A feeling, someone's stomach, or ability to dare"
},
{
"riddleId" : "DKVAeamQUv",
"text" : "I cannot be killed, nor stripped away. I lurk within every man and can bring a ..."
},
{
"riddleId" : "sqbXkZeTnm",
"text" : "Take the most coins you can win in the coin game, divide by the cost of a treasure ..."
},
{
"riddleId" : "kaJFrfb9Qq",
"text" : "What starts on four legs, then two, then finally, three?"
},
{
"riddleId" : "2PzCARiQXT",
"text" : "The scene was shot repeatedly, but the fox paws were missing from one take because of..."
},
{
"riddleId" : "HxSZrX2BjO",
"text" : "Chaos can be found in a resting place of a sheep"
},
{
"riddleId" : "ZVwxcztY1A",
"text" : "The most powerful thing in the world. Gets more power with the more there are. Nobody..."
},
{
"riddleId" : "XDKokpHJ2F",
"text" : "A famous and energetic first-mate, alongside a partial man chasing Giant Richard."
},
{
"riddleId" : "gRDCcBSpnQ",
"text" : "From green to yellow to white, in the end I'm a child's delight. They blow..."
},
{
"riddleId" : "CZR5fdsp7G",
"text" : "What flies when it's born, lies when it's alive, and runs when it's ..."
},
{
"riddleId" : "wC3TMJIrU1",
"text" : "Policing the high seas, can be an act of subterfuge."
},
{ "riddleId" : "oILN39SaGl", "text" : "A saucy meeting between friends." },
{
"riddleId" : "kwtez1lTAD",
"text" : "To take a load off a beast, remove any birds. That is, do this to it."
},
{
"riddleId" : "kt2BevV9dW",
"text" : "I am the one thing that is always made obsolete by the end the year."
},
{
"riddleId" : "k8CxtJqeT6",
"text" : "Fire, water, earth and air must all work in harmony for me to run and provide ..."
},
{
"riddleId" : "dKHGnc86v2",
"text" : "I grow when you feed me, but you'll need to use me first."
},
{ "riddleId" : "pr9UlPfsxS", "text" : "What do you call a bird with lift" },
{
"riddleId" : "pOGJST6a2Q",
"text" : "Chuck Taylor discusses the downsides of Vs. What does he do?"
},
{
"riddleId" : "BTFRSVnWfZ",
"text" : "I am the only one with the power to split the world in half."
},
{
"riddleId" : "Y56ZHGtei0",
"text" : "An ornament for the neck, one of 206"
},
{
"riddleId" : "9xVkzAS4gK",
"text" : "When we are two adversaries fighting alone, neither one can overcome the other.\nWhen ..."
},
{
"riddleId" : "hJgBRZeUL2",
"text" : "Born underground, raised by the sun, a host for the living, caterer of fun. What am I..."
},
{
"riddleId" : "iy1IdXxGPS",
"text" : "I grow in/on your skin.. I can be white or black. I won't hurt you unless you ..."
},
{
"riddleId" : "WgzVFtJ2dr",
"text" : "What is better to write on? An empty stomach or A full stomach?"
},
{
"riddleId" : "mUsbXwjHSI",
"text" : "I contain walls of meat and walls of sweets.\nMy clothing lies on the inside.\n..."
},
{
"riddleId" : "TZFpNCg8ju",
"text" : "I am taken from a mine. They shut me up in a wooden box, yet I am still used everyday..."
},
{
"riddleId" : "5vjoKQhiOr",
"text" : "A poison of the soul, passion's cruel counterpart; from love she grows till love..."
},
{
"riddleId" : "4nXGKOdVzL",
"text" : "2 doctors walk into a bar. What is this called? A..."
},
{
"riddleId" : "swtE6Aa3FT",
"text" : "Echoes from the shadow realm, whispers of things yet to come. Thought's strange ..."
},
{
"riddleId" : "tdaO7N8JCF",
"text" : "If I drink, I die. If I eat, I live. (plural)"
},
{
"riddleId" : "lc3wsu95YT",
"text" : "I belong either high above the clouds or far below the ground.\nMy purpose is to ..."
},
{
"riddleId" : "sfWiKDgEOX",
"text" : "I am part of a castle wall.\nMy comrades slice and tear at invading armies while I ..."
},
{
"riddleId" : "APWt5ed1bE",
"text" : "A poison of the soul, passion's cruel counterpart; from love she grows till love..."
},
{
"riddleId" : "JmcPSZCyLY",
"text" : "There is a baseball player in a jug."
},
{
"riddleId" : "Ctya09Qgrk",
"text" : "Billy has a dad named Joe. Billys grandmother has four kids. The oldest is named ..."
},
{ "riddleId" : "ewNMx1fk3D", "text" : "What has four wheels and flies?" },
{ "riddleId" : "n96sNIZKOa", "text" : "What is always the greatest number?" },
{
"riddleId" : "jDa3twY2ud",
"text" : "I am known by all in the scientific community although I am not a person, the ..."
},
{
"riddleId" : "JC5sXzAGBh",
"text" : "If my head is gone, it will grow back.\nIf my back is gone, it will grow head."
},
{
"riddleId" : "CxrgtGwUL2",
"text" : "Claws that never let go even when they open to let you come and go."
},
{
"riddleId" : "k0n1BujP9V",
"text" : "No man has seen it but all men know it. lighter than air, sharper than any sword. ..."
},
{ "riddleId" : "ZGdsBlhewr", "text" : "What goes z-z-u-b z-z-u-b z-z-u-b?" },
{
"riddleId" : "AiQLpzSjlb",
"text" : "No man has seen it but all men know it. Lighter than air, sharper than any sword. ..."
},
{
"riddleId" : "lLF35U9PYQ",
"text" : "An island people who curve their snooker shots."
},
{
"riddleId" : "UM4V5Gz2fR",
"text" : "She wields the broken sword, and separates true kings from tyrants. Of what do I ..."
},
{
"riddleId" : "TgwPyoW8Yl",
"text" : "My 117 cousins and I live across every state but dine at the same table.\nI can be ..."
},
{
"riddleId" : "lm0wDRx2i5",
"text" : "In the dark is where I shine, I am seen when stars align. Some believe I seal your ..."
},
{
"riddleId" : "f71ZlmFhUQ",
"text" : "I have a red nose and a white coat. The taller I stand the shorter I grow. What am I?"
},
{
"riddleId" : "kpwrzSX83q",
"text" : "Where would you find a male sheep in an encyclopaedia?"
},
{
"riddleId" : "nIDQ6ljTFs",
"text" : "I am an act of gravity. I result in a switch from hot to cool, and a change in colors..."
},
{
"riddleId" : "yoMdANYxPp",
"text" : "A backup religious leader named Nate who steps up to the table is an . . ."
},
{ "riddleId" : "W4bAHSk6lq", "text" : "Can you piece me together?" },
{
"riddleId" : "F8Rzmb0pMT",
"text" : "An attempt at marketing, leads to organised crime"
},
{ "riddleId" : "58aETikpmx", "text" : "A door is not a door. What is it?" },
{
"riddleId" : "vAci5QLKTD",
"text" : "The gate stands there with two doors closed. But once you replace the doors with ..."
},
{
"riddleId" : "R7qtur9vFe",
"text" : "A ship wrecks at sea and every single person dies except two people how did they ..."
},
{
"riddleId" : "cBvWM2OpnE",
"text" : "Finish the song. What is love? Baby don't hurt me, don't hurt __, __ ____"
},
{ "riddleId" : "UXHncKAuQj", "text" : "Decode the hidden message" },
{
"riddleId" : "6i2emgvEKF",
"text" : "A painter wanted to lose weight. Instead of a diet, what did he use?"
},
{ "riddleId" : "yqb7mtL1fi", "text" : "I am both scary and annoying" },
{
"riddleId" : "qXrKOH7J4L",
"text" : "A very small flat fish found in libraries before the internet with many newspaper and..."
},
{ "riddleId" : "TNDaz3tCOl", "text" : "You are here." },
{
"riddleId" : "w2adUN976e",
"text" : "I can be a surprise, a present, or a movie,"
},
{
"riddleId" : "ejFVwK6XaS",
"text" : "What word can be written forward, backwards, and upside down, but still read the same..."
},
{
"riddleId" : "TMJFY4pOe8",
"text" : "What would you call a shortened elephant."
},
{
"riddleId" : "FtVoXf7M5J",
"text" : "Two men are in a desert. They are both wearing backpacks. One of them is dead, the ..."
},
{
"riddleId" : "BZUkcxGtFP",
"text" : "What sort of volleyballer would tamper with an opponent's bottle?"
},
{
"riddleId" : "H2ozUPvpTx",
"text" : "A self made wall that is unseen from above, but also sought out for sight seeing. (..."
},
{
"riddleId" : "njLRu8HP3Z",
"text" : "A place which cannot be found in this world or any other because it doesn't ..."
},
{
"riddleId" : "eJlyKhwbxo",
"text" : "A container full of guys and the worst ones are all called Bill"
},
{ "riddleId" : "1wqHQo9TRa", "text" : "A rotating supporter." },
{
"riddleId" : "Jb92YFypmu",
"text" : "The lowest charged particle, causes mayhem"
},
{
"riddleId" : "PtBq2z8yZF",
"text" : "A few bees come back to the screen again and again despite being killed. What kind of..."
},
{
"riddleId" : "UsiJdWYGw9",
"text" : "Watch, a person from a particular country."
},
{
"riddleId" : "ujgOD6AETM",
"text" : "A house of rare wood was set on fire, but burning it was not considered arson. As it ..."
},
{
"riddleId" : "QY4GsrRbaM",
"text" : "I am a child's nightmare who falls short of par. Who am I?"
},
{
"riddleId" : "uhBI4lUswC",
"text" : "I used to be a symbol for the sun, although you wouldn't know that from looking ..."
},
{ "riddleId" : "laZDSgY5mX", "text" : "Berries, weaving, and oatmeal." },
{
"riddleId" : "qx5aLQ17Eg",
"text" : "I have keys but no locks, space but no room. You can enter but you can't exit. ..."
},
{
"riddleId" : "FoDY4qh7W5",
"text" : "End with a vowel or end with a consonant, it remains edible. But end with a different..."
},
{
"riddleId" : "sIr0hQxHKe",
"text" : "There was a green house.\nInside the green house, there is a white house.\nInside the ..."
},
{
"riddleId" : "pLRFODkoES",
"text" : "What's black, white, and blue all over? (pun, two words)"
},
{
"riddleId" : "FImvhseYGy",
"text" : "A fraction of a fraction becomes a group who disdains objective truths."
},
{
"riddleId" : "VTErzXW3AY",
"text" : "Watermelon is 99% water. I have 100 pounds of watermelon. After a week, drying in the..."
},
{ "riddleId" : "GnfdXJpvRN", "text" : "The worship of water." },
{
"riddleId" : "y14JYWGTa6",
"text" : "What begins as a guiding force of youth ends as a study of innovation. When these two..."
},
{
"riddleId" : "Sm56uzoxtW",
"text" : "A sometimes candlelit place of quiet contemplation where great ideas come and great ..."
},
{
"riddleId" : "Ucwvo7GDSO",
"text" : "Twin Spanish suns provide portable shade for a dignified lady."
},
{
"riddleId" : "FpOPaunVBT",
"text" : "Look to your right and you'll see a pond with lilies. A net hovers above it, ..."
},
{
"riddleId" : "qlxVnfTi7C",
"text" : "Turn a boat inside out, and come on, take a seat. Be sure to pack your best towel, we..."
},
{
"riddleId" : "yQ97Li20IH",
"text" : "I can be milk, a surprise, or even a child."
},
{
"riddleId" : "WTBJIqyCpR",
"text" : "When you ruin a knot in your hair, four sides are left. What is it?"
},
{ "riddleId" : "7vIl6CPiGX", "text" : "What asks, but never answers?" },
{
"riddleId" : "8spgaPuX65",
"text" : "How would you write the number one if it were to disappear?"
},
{
"riddleId" : "k6vqEW529x",
"text" : "Start with the thin line between two states, flip or then widen it with a"
},
{
"riddleId" : "F19LOKdwrb",
"text" : "A sewage receptacle where doubts are sent to decompose (two words)."
},
{
"riddleId" : "RQcHWBF5SC",
"text" : "A moment in time, caught through an eye of an eye, but not just any eye, a mechanical..."
},
{
"riddleId" : "vMDwge9HSo",
"text" : "A heart's second beat drives you away with a deep aversion. It can be described..."
},
{ "riddleId" : "xj2uZIP0dl", "text" : "My name is found flying off." },
{
"riddleId" : "9sPDRmHeto",
"text" : "Give me a number that cannot be 1024 or 729, and what I'll give you is not ..."
},
{ "riddleId" : "3F1tNE5Hmo", "text" : "A loud noise of astounding beauty." },
{
"riddleId" : "7Ae1cKmP5t",
"text" : "The destruction of speed, provides energy."
},
{
"riddleId" : "nr7UyF0Lxg",
"text" : "Fire is born/created. It can travel. It can devour and grow. It can be deprived and ..."
},
{
"riddleId" : "dHuLYTFRtn",
"text" : "The locomotive protection in the Wild West"
},
{
"riddleId" : "zIAXbPmTcK",
"text" : "Country that does not have jumping fighters despite many people believe it does"
},
{
"riddleId" : "WF2IXsqwcy",
"text" : "I am an officer holding up a placard that says \"N\". Who am I?"
},
{
"riddleId" : "pG6v3Dwol8",
"text" : "Tiny ripples in water, is convenient in the kitchen"
},
{
"riddleId" : "GlRkn81CQz",
"text" : "These are the only creatures that perform a mouth-rite and use hog hairs to cleanse ..."
},
{
"riddleId" : "Y4owLiK1sO",
"text" : "To have something spanish, someone running around. Have a hat."
},
{
"riddleId" : "PvfbiVEmAS",
"text" : "I was once a part of you, bite me and you will die."
},
{
"riddleId" : "6mKxPNgRu2",
"text" : "An agreement between cosmetics companies fits in your pocket because it's this"
},
{
"riddleId" : "N0SE7BojcF",
"text" : "An automobile decaying on a scrap heap, can reveal what lurks underground."
},
{
"riddleId" : "LMhcoHYFwA",
"text" : "What has levels that cannot be walked, a window that's there for thought, a ..."
},
{
"riddleId" : "HSzWu3RtlG",
"text" : "I know a word. Six letters it contains. Take away one. And twelve is what remains."
},
{ "riddleId" : "WX8JrOVj3D", "text" : "I am retained deep within a castle" },
{
"riddleId" : "cWzinCJYLV",
"text" : "I am sometimes installed as a form of privacy, yet up close you'll see straight ..."
},
{
"riddleId" : "mH5DxfZ34c",
"text" : "A cup of tea is the best way to begin solving this problem."
},
{
"riddleId" : "yS0vDAd3Zu",
"text" : "I am a group as blue as the oceans which I inhabit, but my loyalties are with my land..."
},
{
"riddleId" : "ZN58qBwTGV",
"text" : "When does a small treat for refreshing your breath and a body part make up a ..."
},
{
"riddleId" : "7YBq2m4KZ3",
"text" : "Gun wielding mathematician studies this"
},
{
"riddleId" : "LaqRhT8zcI",
"text" : "Bankers always wear three piece instead of two piece suits because they are this."
},
{
"riddleId" : "ueUOTCEBrN",
"text" : "If the sun had an occupation, what would it be?"
},
{
"riddleId" : "UXo6ziZGRs",
"text" : "I am the end of Earth, yet the beginning of everything. Single me out, an object ..."
},
{
"riddleId" : "F9fhAgDKi1",
"text" : "I've been in your house at your table before, but yet with the right people in a..."
},
{
"riddleId" : "9XSUWnj4uH",
"text" : "I can be a first glimpse of masculinity, change one letter and I trip, change another..."
},
{
"riddleId" : "Ckjb6XO2cE",
"text" : "A peaceful mideast greeting followed by one who uses a common conjunction make this ..."
},
{
"riddleId" : "TH9MKl3XSn",
"text" : "Its beginning is cold and leafy. And its end is small but toxic. Take bits of both ..."
},
{ "riddleId" : "aKDJYhBqzF", "text" : "A vodka and orange, is almost cool" },
{
"riddleId" : "COG9hYvi1c",
"text" : "What do you call a bear with no teeth?"
},
{
"riddleId" : "ZSO6ipIcN4",
"text" : "1. L O _ _ _ E\n2. E D U _ _ _ E\n3. _ _ _ E R\n4. _ _ _ T L E\n\nWhat is the missing ..."
},
{ "riddleId" : "iSJQr4FHkd", "text" : "Precipitation of a monarch" },
{ "riddleId" : "gcm8AQWfeX", "text" : "A drink with impact" },
{
"riddleId" : "vW1icHLCmh",
"text" : "I am thinking of a 6-digit number. The sum of the digits is 43. \n\nAnd only two of the..."
},
{
"riddleId" : "F6HqcGX1up",
"text" : "Charlie Chaplin once played a skinny Irishman who always bounced back from any ..."
},
{
"riddleId" : "1iWUCVbQlk",
"text" : "Start with the bottom of the sea, cover it with falling rain, then cover that with ..."
},
{
"riddleId" : "m3O8FDQiJk",
"text" : "I was known as the king of the north but then I was brutally killed along side my ..."
},
{
"riddleId" : "NMBm8seOK3",
"text" : "The skin conditions of roofers who don't protect themselves."
},
{
"riddleId" : "UMHL1Ndpu4",
"text" : "Even though it is free, it is not quite zero."
},
{
"riddleId" : "1EhHBSDWUF",
"text" : "A saggy square to run the fruity game"
},
{
"riddleId" : "IJjK3q4P7T",
"text" : "I am my opposite. I don't exist. What am I?"
},
{
"riddleId" : "3jChJnPZLs",
"text" : "What does the top pyramid block equal?"
},
{
"riddleId" : "tOE2LDA5yw",
"text" : "I exist only as a theory, a hypothetical explanation of what appears empty. [2 words]"
},
{
"riddleId" : "7hmJcHwxSr",
"text" : "The vigil held by an expert exam taker who is on strike."
},
{ "riddleId" : "mElybtFa45", "text" : "Imagine a doctor of papers." },
{
"riddleId" : "j9SO8UwPhH",
"text" : "What has four fingers and a thumb but isn't living?"
},
{
"riddleId" : "FU5h16VYnX",
"text" : "A cooked lump of flesh that becomes a sentence describing what you do to it if you ..."
},
{
"riddleId" : "HxrqbUDy5t",
"text" : "I may sound edible, but once you take away a letter, you will know that my friend..."
},
{
"riddleId" : "ErjhWwRtY1",
"text" : "Your trip goes as follows: Manila, Madrid, Amsterdam, Stockholm, Wellington. If your ..."
},
{
"riddleId" : "zbUOhyslZw",
"text" : "As one, I am small. As many, we are large. If one of us is missing, he's lost ..."
},
{
"riddleId" : "IKgojx89BX",
"text" : "If 176 equals 127867, what does 562 equal???"
},
{
"riddleId" : "TUpNBOoVhj",
"text" : "How many different ways can 8 books be arranged on a bookshelf?"
},
{
"riddleId" : "oMiTrw1YCu",
"text" : "A well balanced city in the southern US, notable for being always in the same place ..."
},
{
"riddleId" : "0fSH5zrCnW",
"text" : "I am a follower of a neighbor, a child, an adult, and a robin."
},
{
"riddleId" : "SALBn8iwT7",
"text" : "When you miss your ex, but not because you want them back. Rather, because it is this..."
},
{
"riddleId" : "YG0l5f3ghU",
"text" : "There is 200 fish in a fish tank and 99% are goldfish. How many goldfishes would need..."
},
{