-
Notifications
You must be signed in to change notification settings - Fork 330
/
gamedata.json
6049 lines (6049 loc) · 136 KB
/
gamedata.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
[
{
"name": "[3d]ボールころころ2",
"dispName": "[3D]ボールころころ2",
"description": "",
"siteTags": [
"rolling sky",
"HTML5",
"scratch",
"3d",
"html5",
"ball",
"1 player",
"1 level"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": true,
"creator": "s00384206",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/ball2/",
"allowtransparency": "true",
"frameborder": "0",
"scrolling": "no",
"allowfullscreen": null,
"style": "min-width: 485px; min-height: 402px; "
}
},
"url": "scratch-rollingsky",
"thumbnailURL": "3d2.png"
},
{
"name": "2020game",
"dispName": "2020 Game",
"description": "2020 Game: Play through all the major events of 2020: The Australia wildfires, Covid-19, the Stock Market Crash, quarantine, the rise of TikTok, the USA Elections, etc.",
"siteTags": [
"1 player",
"HTML5",
"2d",
"side scrolling",
"1 level",
"platformer"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": true,
"creator": "Max Garkavyy",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/2020game"
}
},
"url": "2020game",
"thumbnailURL": "unknown.png"
},
{
"name": "2048hacked",
"dispName": "2048 HACKED",
"description": "2048 Hacked: Join the numbers and get to the 2048 tile! Careful: this game is extremely addictive! HOW TO PLAY: Use your arrow keys to move the tiles. When two tiles with the same number touch, they merge into one!",
"siteTags": [
"1 player",
"HTML5",
"puzzle",
"math",
"2d"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": true,
"creator": "GeekyGames",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"class": "ok",
"src": "../games/html5/2048hacked",
"style": "min-height: 1000px; min-width: 405px; "
}
},
"url": "2048hacked",
"thumbnailURL": "hack2048.png"
},
{
"name": "asmallworldcup",
"dispName": "A Small World Cup",
"description": "A Small World Cup: A fun and small foot ball world cup. Kick the ball into the goal! A Small World Cup is a a super fun soccer/football physics game! Play fast matches of physics non-sense football fun!",
"siteTags": [
"sports",
"ball",
"HTML5",
"2d",
"1 player",
"player vs cpu",
"soccer",
"2 players"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": true,
"creator": "RujoGames",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"frameborder": "1",
"scrolling": "no",
"src": "../games/html5/asmallworldcup",
"style": ""
}
},
"url": "a-small-world-cup",
"thumbnailURL": "asmallworldcup.png"
},
{
"name": "alieninvadersio",
"dispName": "Alien Invaders IO",
"description": "Alien Invaders IO: Alien Invaders io is a multiplayer game in which you are controlling a flying saucer that will abduct everything that is in your way. You'll start sucking small objects until your UFO will get bigger which will be capable of gulping down larger objects such us cars, houses or even buildings. There are three modes to choose from which are Classic, Solo and Battle. Unlock and purchase cool skins as you play this game. Have fun the war between UFOs in Alien Invaders io. Play NOW!",
"siteTags": [
"HTML5",
".io",
"3d",
"1 player",
"fake online multiplayer"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": true,
"creator": "Super Apps",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/alieninvadersio",
"style": "min-height: 720px; width: 100%; "
}
},
"url": "alieninvadersio",
"thumbnailURL": "Alien-Invaders-io.png"
},
{
"name": "amongussingleplayer",
"dispName": "Among Us Single Player",
"description": "Among Us Single Player: Welcome to stealth adventure game Among Us Online, A game based on Among Us, but in this game you can play only solo and as imposter on the space ship. You can do sabotage on spaceship or killing them one by one and without being caught. ",
"siteTags": [
"HTML5",
"2d",
"fangame",
"fake online multiplayer",
"1 player",
"moddable"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": true,
"creator": "Klopity",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/among-us-single-player"
}
},
"url": "amongus-sp",
"thumbnailURL": "among-us-single-player.jpg"
},
{
"name": "antiterroristrush3",
"dispName": "Anti Terrorist Rush 3",
"description": "Anti Terrorist Rush 3: The world is in danger. The hero goes on a special secret mission to destroy dangerous criminals. Our agent shoots automatically at enemies. Your task is to control additional weapons: - Throwing knives deal single damage. - The machine gun automatically aims and deals a quick damage. - Dogs effectively attack ground enemies. - Grenades are used for multi damage. Get rewards on missions and buy upgrades to win.",
"siteTags": [
"HTML5",
"2d",
"shooting"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": true,
"creator": "dennatolich",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/antiterroristrush3"
}
},
"url": "atr3",
"thumbnailURL": "atr3.png"
},
{
"name": "arcadewizard",
"dispName": "Arcade Wizard",
"description": "Arcade Wizard: Save Arcadia by getting back the Tome of Arcade Intellect from the evil wizard Alistair. In this action filled top down shooter you can unlock new orbs and skins by fighting waves of enemies.",
"siteTags": [
"HTML5",
"2d",
"1 player",
"fighting"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": true,
"creator": "taccommandeur",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/arcadewizard"
}
},
"url": "arcadewizard",
"thumbnailURL": "arcadewizard.png"
},
{
"name": "awesometanks",
"dispName": "Awesome Tanks",
"description": "Awesome Tanks: Move your tank with the arrow keys or WASD. Aim your tank and fire with your mouse. Defeat enemy tanks, collect coins, and destroy the enemy base in order to clear each level. Spend your money wisely to upgrade your tank with better armor, weapons, visibility, and more.",
"siteTags": [
"HTML5",
"tank",
"shooting",
"2d",
"1 player"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": "awesome tanks",
"isMobile": true,
"creator": "EmitterCritter",
"uploader": "rm",
"url": "awesometanks",
"thumbnailURL": "awesometanks.png",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/awesometanks"
}
}
},
{
"name": "awesometanks2",
"dispName": "Awesome Tanks 2",
"description": "Awesome Tanks 2: A shooting based tank battle game. In this game you are driving a super tank racing into the field of enemies. Can you kill all the enemies and upgrade your powerful weapons? Join in the tank battle now!",
"siteTags": [
"HTML5",
"tank",
"shooting",
"2d",
"1 player"
],
"series": "awesome tanks",
"isMobile": true,
"creator": "EmitterCritter",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/awesometanks2"
}
},
"url": "awesometanks2",
"thumbnailURL": "awesome-tanks-2.png",
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive"
]
},
{
"name": "backflipdive3d",
"dispName": "Backflip Dive 3D",
"description": "Backflip Dive 3D: Explore the adrenaline of flipping in the air after jumping from a crazy height. Jump and flip over at the right time and make a perfect landing. Accomplish all the task required to reach the final platform.",
"siteTags": [
"HTML5",
"3d",
"1 player"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": true,
"creator": "No Outlinks",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/backflipdive3d"
}
},
"url": "backflipdive3d",
"thumbnailURL": "backflip-dive-3d.jpg"
},
{
"name": "backrooms",
"dispName": "Backrooms (Alpha)",
"siteTags": [
"HTML5",
"3d",
"horror",
"1 player"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"description": "Backrooms: Nothing but the stink of old, moist carpets, the madness of mono-yellow, and the blinding light of fluorescent bulbs at maximum hum-buzz. Over 600 million sq. miles of randomly segmented rooms. God save you if you hear something wandering nearby, because it sure as hell has heard you.",
"series": null,
"isMobile": false,
"creator": "IEP_Esy",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"frameborder": "1",
"scrolling": "no",
"src": "../games/html5/backrooms/INDEX~1.HTM",
"style": ""
}
},
"url": "backrooms-alpha",
"thumbnailURL": "backrooms.png"
},
{
"name": "baldi'sbasicsfieldtripcampingremake",
"dispName": "Baldi's Basics Field Trip Camping Remake",
"description": "Baldi's Basics Field Trip Camping Remake: Mystman12’s famous survival horror parody set in a crazy school is a great example. Initially intended as an experiment for a game jam, it transformed into a viral phenomenon. The image of the goofy hairless antagonist dressed in a green shirt became iconic.",
"siteTags": [
"HTML5",
"1 player",
"horror",
"3d"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": false,
"creator": "BrawniestLine25",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"frameborder": "1",
"scrolling": "no",
"src": "../games/html5/baldisbasicsfieldtripcampingremake",
"style": ""
}
},
"url": "baldis-basics-field-trip-camping-remake",
"thumbnailURL": "bb.png"
},
{
"name": "basketandball",
"dispName": "Basket and Ball",
"description": "In Basket & Ball you have to bounce the rebel ball into the jolliest of baskets while solving puzzles and gathering bonuses.",
"siteTags": [
"HTML5",
"2d",
"ball",
"basketball",
"1 player",
"sports"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": true,
"creator": "Sun Temple",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/basketandball"
}
},
"url": "basketandball",
"thumbnailURL": "how%20to%20play%20thumb_0.jpg"
},
{
"name": "basketballlegends2020",
"dispName": "Basketball Legends 2020",
"description": "Basketball Legends 2020 is the ultimate basketball game where you can play as LeBron James, James Harden, Kawhi Leonard, Giannis Antetokounmpo, Luka Doncic, and much more, created by MadPuffers.",
"siteTags": [
"HTML5",
"basketball",
"ball",
"2d",
"sports",
"1 player",
"2 players",
"player vs player",
"player vs cpu"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": true,
"creator": "Mad Puffers",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/basketball-legends-2020"
}
},
"url": "bblegends2020",
"thumbnailURL": "basketball-legends-2020.webp"
},
{
"name": "basketballio",
"dispName": "Basketball.io",
"description": "Basketball IO: Dribble, shoot, score, WIN! Grab the ball and run it to the hoop! You can play as shooter and defender. Just grab the ball and run until you get to the hoop and do a perfect slam! Defend by smashing and blocking the opponents trying to steal the ball from your team. Beat your opponent team by scoring more before the time ends! Absolute fun and adrenaline for you as you take on the world with basketball.io",
"siteTags": [
"HTML5",
"ball",
"basketball",
"sports",
"3d",
"1 player"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": true,
"creator": "New Gamer",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/basketballio"
}
},
"url": "basketballio",
"thumbnailURL": "basketballio.jpeg"
},
{
"name": "bearonascooter",
"dispName": "Bear on a Scooter",
"description": "Bear on a Scooter: Use the arrow keys to balance the scooter. TIP: Start by leaning forward (LEFT). then press RIGHT to accelerate. But don't lean too far or you'll fall over!",
"siteTags": [
"HTML5",
"difficult",
"2d",
"1 player",
"1 level"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": true,
"creator": "ArcticArcade",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/bearonascooter"
}
},
"url": "bearonascooter",
"thumbnailURL": "bearonascooter.png"
},
{
"name": "bitlife",
"dispName": "BitLife",
"description": "BitLife: How will you live your BitLife? Will you try to make all the right choices in an attempt to become a model citizen sometime before you die? You could marry the love of your life, have kids, and pick up a good education along the way. Or will you play choices that horrify your parents? You could descend into a life of crime, fall in love or go on adventures, start prison riots, smuggle duffle bags, and cheat on your spouse. You choose your story... Discover how bit by bit life choices can add up to determine your success in life the game. Interactive story games have been around for years. But this is the first text life simulator to truly mash up and simulate adult life.",
"siteTags": [
"HTML5",
"2d",
"1 player"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": true,
"creator": "CandyWriter LLC",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/bitlife"
}
},
"url": "bitlife",
"thumbnailURL": "2e44fb60fd3f4606b1b06c17a2b9d60d-512x384.jpg"
},
{
"name": "blockysnakes",
"dispName": "Blocky Snakes",
"description": "Blocky Snakes is a online multiplayer snake game created by by Beedo Games. You have to eat all kinds of candy spread over a map to grow bigger and bigger.",
"siteTags": [
"HTML5",
"3d",
"1 player",
"fake online multiplayer",
"snake"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": false,
"creator": "Beedo Games",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/blockysnakes"
}
},
"url": "blockysnakes",
"thumbnailURL": "Blocky-Snakes.png"
},
{
"name": "bloxorz",
"dispName": "Bloxorz",
"description": "Bloxorz combines problem solving with spatial reasoning and logic. Can you solve all 33 challenging puzzles?",
"siteTags": [
"HTML5",
"3d",
"flash",
"puzzle",
"1 player"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": false,
"creator": "Damien Clarke",
"uploader": "rm",
"pageData": {
"isFrame": "embed",
"attributes": {
"src": "../games/flash/bloxorz/bloxorz.swf",
"pluginspage": "http://www.macromedia.com/go/getflashplayer",
"style": "height: 440px; width: 800px; "
}
},
"url": "bloxorz",
"thumbnailURL": "bloxorz.png"
},
{
"name": "bobtherobber2",
"dispName": "Bob The Robber 2",
"description": "",
"siteTags": [
"HTML5",
"1 player",
"puzzle",
"2d"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": false,
"creator": "Meow Beast",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/bobtherobber2"
}
},
"url": "bobtherobber2",
"thumbnailURL": "bobtherobber2.jpeg"
},
{
"name": "bouncinghell",
"dispName": "Bouncing Hell",
"description": "",
"siteTags": [
"HTML5",
"2d",
"1 player",
"platformer"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": true,
"creator": "Onduck Games",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/bouncinghell"
}
},
"url": "bouncinghell",
"thumbnailURL": "bouncinghell.webp"
},
{
"name": "boundland",
"dispName": "Boundland",
"description": "",
"siteTags": [
"HTML5",
"2d",
"1 player",
"platformer"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": false,
"creator": "Silen Games",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/boundland"
}
},
"url": "boundland",
"thumbnailURL": "boundland.jpeg"
},
{
"name": "boxelrebound",
"dispName": "Boxel Rebound",
"description": "Boxel Rebound: Whether you’re looking for a new challenge or want to blow off some steam, Boxel Rebound is the perfect game! This addictively fun game will have you coming back for more, again and again. The game’s goal is to guide your ball through the maze-like levels, using your arrow keys to control it; hold a little cube as it bounces through various obstacles. But be careful – one wrong move, and you’ll have to start the story again!",
"siteTags": [
"HTML5",
"2d",
"1 player",
"platformer",
"side scrolling platformer"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": true,
"creator": "Doppler Creative",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/boxelrebound"
}
},
"url": "boxelrebound",
"thumbnailURL": "1580483690.webp"
},
{
"name": "burritobisonlaunchalibre",
"dispName": "Burrito Bison Launcha Libre",
"description": "Burrito Bison is back and this time he invited his friends to fight the Gummies invasion and prevent them from dominating the world! Throw our brave bison as far as possible, hit the gummies to explode them, make money and bounce to advance ever further. Dozens of improvements will be bought for your bison to become more powerful. You will also unlock many new opponents and complete countless missions to get gold bonuses.",
"siteTags": [
"HTML5",
"2d",
"1 player",
"launch"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": true,
"creator": "Juicy Beast",
"uploader": "rm",
"url": "burritobisonlaunchalibre",
"thumbnailURL": "burritobisonlaunchalibre.jpeg",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/burritobisonlaunchalibre"
}
}
},
{
"name": "cardinalchains",
"dispName": "Cardinal Chains",
"description": "Cardinal Chains is a minimalist puzzle game centering on the concept of non-decreasing sequences. Each puzzle begins with a monochrome grid of numbers, plus a few colored cells marked with an X. Starting at these cells, you must link up numbers in non-decreasing order until the whole grid is filled with color.",
"siteTags": [
"HTML5",
"2d",
"1 player",
"puzzle"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": true,
"creator": "danielnora",
"uploader": "rm",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/cardinalchains"
}
},
"url": "cardinalchains",
"thumbnailURL": "download.png"
},
{
"name": "cavewar",
"dispName": "Cave War",
"description": "You were abducted and taken to a man-made cave. Fortunately, you got out of your cage and with a knife, you'll have to start your escape. Pick up all the ammo dropped by the enemy soldiers that you take down. Look out for weapons that will give you that edge in killing all your enemies. Be very careful about opening every door because there are also abominations on the premises which are harder to kill. Can you survive the horror of this game? Play this challenging first-person shooter now and see how long you can survive!",
"siteTags": [
"HTML5",
"3d",
"1 player",
"fps",
"shooter"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": false,
"creator": "Nirve Software",
"uploader": "TheDiamondfinder",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/cavewar",
"style": "min-width: 960px; min-height: 635px; "
}
},
"url": "cavewar",
"thumbnailURL": "cavewar.jpg"
},
{
"name": "circloo",
"dispName": "Circloo",
"description": "CircloO is a physics-puzzle game that combines the fast-paced gameplay of a platformer, with the puzzle-aspect of a physics game. ",
"siteTags": [
"HTML5",
"ball",
"2d",
"platformer",
"1 player"
],
"metaTags": [
"math games 66",
"mathgames66",
"unblocked",
"online",
"free",
"games",
"game",
"interactive",
"HTML5"
],
"series": null,
"isMobile": false,
"creator": "Florian van Strien",
"uploader": "rm",
"url": "circloo",
"thumbnailURL": "circloo.png",
"pageData": {
"isFrame": "iframe",
"attributes": {
"src": "../games/html5/circloo"
}
}
},