-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathgames.json
6604 lines (6603 loc) · 298 KB
/
games.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
{
"games": [
{
"id": 2,
"name": "1v1.LOL",
"catagory": "action",
"popularity": "80M+",
"releaseDate": "May 1, 2020",
"rating": "TODO",
"featured": true,
"link": "https://macvg-games.github.io/action-games/1v1lol/",
"genre": "Shooter Games",
"build": "Unity WebGL",
"dev": "JustPlay.LOL",
"about": "1v1.LOL is a fun battle royale and survival shooting game where your only goal is to survive. Use the controls smart and well to attack or defense by shooting weapons or building stuff from your materials! React fast and defeat all enemies to win! There are different modes that you can play, with the classic multiplayer battle royale, training obstacles, and more fun maps for you to explore!",
"controls": [
"WASD Keys: Move",
"Space: Jump",
"Mouse: Turn",
"Left Click: shoot / Use Material",
"Right click: aim",
"Numbers / Certain Letters: Switch Weapons / Materials",
"Esc: Pause"
],
"thumb": "splash.png",
"download": true
},
{
"id": 4,
"name": "10 Minutes Till Dawn",
"catagory": "action",
"popularity": "10M+",
"releaseDate": "May 11, 2022",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/10-minutes-till-dawn/",
"genre": "Survival Games",
"build": "Unity WebGL",
"dev": "flanne",
"about": "10 Minutes Till Dawn is a very exciting fantasy survival game for you to play! Use WASD to move and dodge the creatures or else you'll loose hearts and die. Use your mouse to aim and click to shoot. You can collect the creature's coins when they die and upgrade your character to gain abilities!",
"controls": [
"WASD Keys: Move",
"Click: Shoot",
"R: Reload",
"Esc: Pause"
],
"thumb": "splash.png"
},
{
"id": 332,
"name": "Adam and Eve 5 Part 1",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "December 2018",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/adam-eve/",
"genre": "Point and Click Strategy Games",
"build": "HTML5, JavaScript",
"dev": "Functu Games",
"about": "⚠️DO NOT click \"Clear Save\" or the game won't work!⚠️ Adam and Eve is back with another sequel: Adam and Eve 5 Part 1! Adam and Eve is a game series so horrible that it's actually fun to waste some time on! Everything on this game is bad, even the name! Because the game is so bad that you actually want to spend time to play it! Click on things to make a path for Adam so he can go find his beloved Eve, enjoy!",
"controls": ["Click: Action"],
"thumb": "logo.jpg"
},
{
"id": 333,
"name": "Adam and Eve 5 Part 2",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "December 2018",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/adam-eve-2/",
"genre": "Point and Click Strategy Games",
"build": "HTML5, JavaScript",
"dev": "Functu Games",
"about": "⚠️DO NOT click \"Clear Save\" or the game won't work!⚠️ Adam and Eve is back with another sequel: Adam and Eve 5 Part 2! Continue the adventure you started in part 1 here! Adam and Eve is a game series so horrible that it's actually fun to waste some time on! Everything on this game is bad, even the name! Because the game is so bad that you actually want to spend time to play it! Click on things to make a path for Adam so he can go find his beloved Eve! Enjoy!",
"controls": ["Click: Action"],
"thumb": "logo.jpg"
},
{
"id": 10,
"name": "A Dark Room",
"catagory": "strategy",
"popularity": "5M+",
"releaseDate": "June 10, 2013",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/adarkroom/",
"genre": "Text-Based Strategy Games",
"build": "HTML5, JavaScript",
"dev": "Doublespeak Games",
"about": "A Dark Room is a fun game where you can make decisions on what to do, what to make, or what materials to gather in order to survive and beat the game. Simply click on the buttons to do different things and build a village.",
"controls": ["Click: Action"],
"thumb": "splash.png",
"download": true
},
{
"id": 14,
"name": "Alien Hominid",
"catagory": "action",
"popularity": "50M+",
"releaseDate": "November 21, 2004",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/alienhominid/",
"genre": "Run and Gun Games",
"build": "Flash",
"dev": "The Behemoth",
"about": "Alien Hominid is a fast-paced action game where you control an alien and shoot or dodge the police officers!",
"controls": ["Still working on this one O_O"],
"thumb": "alienhominid.jpg"
},
{
"id": 15,
"name": "Amidst the Clouds",
"catagory": "action",
"popularity": "5M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/amidst-the-clouds/",
"genre": "Platformer Games",
"build": "HTML5, JavaScript",
"dev": "Casper van Dommelen",
"about": "Amidst the Clouds is a really creative game where you need to get to the exit using arrow keys to move, and jumping on the special white \"smoke\" will make you float up or down, and the airflows will push you! Press space to start the game.",
"controls": ["Still working on this one O_O"],
"thumb": "splash.png"
},
{
"id": 17,
"name": "Angry sharks",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/angry-sharks/",
"genre": "Reaction Games",
"build": "HTML5, JavaScript",
"dev": "InLogic Games",
"about": "Use your mouse to guide your hungry shark and eat the fish! By touching a fish for a long enough time period you get score by eating it. Avoid touching the pufferfish or the green chemical waste or you'll loose health!",
"controls": ["Mouse: Swim"],
"thumb": "assets/favicon/icon-512x512.png"
},
{
"id": 334,
"name": "Apple Shooter",
"catagory": "action",
"popularity": "5M+",
"releaseDate": "March 2008",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/apple-shooter/",
"genre": "Shooting Games",
"build": "HTML5, JavaScript",
"dev": "Wolf Games",
"about": "Apple Shooter is a simple but addicting game where your goal is to shoot the apple on your friend's head without hitting them! Everytime you hit the apple, you shoot from a little further away and the game becomes more challenging. Can you reach the last level without shooting your friend? The longer you hold, the stronger the arrow!",
"controls": ["Drag: Aim", "Release: shoot"],
"thumb": "Untitled.jpg"
},
{
"id": 338,
"name": "Arcane Archer",
"catagory": "action",
"popularity": "5M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/arcane-archer/",
"genre": "RPG Games",
"build": "HTML5, JavaScript",
"dev": "OnRush Studio",
"about": "Arcane Archer is a fun RPG game where you control a powerful archer to defeat enemies on each stage and advance through different levels! The archer will aim and shoot automatically, all you have to do is to dodge attacks from enemies. You earn xp for each defeated enemy and you can choose new abilities and upgrades using the xp! There are many different and unique levels to play, so good luck guiding your archer through this adventure!",
"controls": ["Arrow / WASD Keys: Move", "Drag: Move"],
"thumb": "logo.avif"
},
{
"id": 19,
"name": "Avalanche",
"catagory": "action",
"popularity": "10M+",
"releaseDate": "August 10, 2007",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/avalanche/",
"genre": "Reaction Games",
"build": "Flash",
"dev": "The Game Homepage",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "avalanche.png"
},
{
"id": 337,
"name": "Awesome Tanks 2",
"catagory": "action",
"popularity": "10M+",
"releaseDate": "July 2012",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/awesome-tanks-2/",
"genre": "Shooting Games",
"build": "HTML5, JavaScript",
"dev": "Alexander Gettle",
"about": "Awesome Tanks 2 is a very popular shooting game where you control a tank to defeat enemies in different levels and difficulties and earn money! Move around and react fast to defeat enemy tanks and take cover so you don't get shot by them! You can also shoot explosives to kill enemies. Remember to defeat every enemy to finish the level and earn the maximum reward! Use the money to upgrade your tank in different ways. Have fun!",
"controls": [
"Arrow / WASD Keys: Move",
"Click: Shoot",
"Mouse: Aim",
"Number Keys: Switch Weapons"
],
"thumb": "logo.jpg"
},
{
"id": 20,
"name": "Backrooms",
"catagory": "action",
"popularity": "30M+",
"releaseDate": "January 7, 2022",
"rating": "TODO",
"featured": true,
"link": "https://macvg-games.github.io/action-games/backrooms/",
"genre": "Horror Games",
"build": "Unity WebGL",
"dev": "Fancy",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "img/splash.jpg"
},
{
"id": 292,
"name": "Backrooms 2D",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/backrooms-2d/",
"genre": "Horror Games",
"build": "Unity WebGL",
"dev": "JujuProdGames",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "Backrooms2D.png"
},
{
"id": 293,
"name": "Bacon May Die",
"catagory": "action",
"popularity": "50M+",
"releaseDate": "April 15, 2021",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/bacon-may-die/",
"genre": "Run and Gun Games",
"build": "HTML5, JavaScript",
"dev": "SnoutUp Games",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "BaconMayDie.png"
},
{
"id": 32,
"name": "Black Knight",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "April 2005",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/blackknight/",
"genre": "Run and Gun Games",
"build": "Flash",
"dev": "Brain Jam Studios",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "blackknight.png"
},
{
"id": 348,
"name": "Blumgi Slime",
"catagory": "action",
"popularity": "50M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/blumgi-slime/",
"genre": "Platformer Games",
"build": "HTML5, JavaScript",
"dev": "Blumgi",
"about": "In this fun and satisfying game Blumgi Slime, your goal is to control the slime and jump your way to the end! All you can do is jump, but you need to jump at just the right angle and force to either overcome an obstacle, bounce, or dodge a cliff! If you fall into water, than it's game over. Use the walls wisely to bounce and change the slime's direction! This game is even more fun when you're playing in two players, because you get to compete with your friend who reaches the goal first! Have fun!",
"controls": [
"Space Bar / Click: Jump",
"A: Jump (Player 1)",
"M: Jump (Player 2)",
"R: Restart"
],
"thumb": "logo.jpg"
},
{
"id": 36,
"name": "Bob the Robber 2",
"catagory": "action",
"popularity": "5M+",
"releaseDate": "April 24, 2012",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/bobtherobber2/",
"genre": "Escaping Games",
"build": "HTML5, JavaScript",
"dev": "Meow Beast",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "splash.jpeg"
},
{
"id": 367,
"name": "Bomb It 7",
"catagory": "action",
"popularity": "10M+",
"releaseDate": "March 2018",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/bomb-it-7/",
"genre": "Arcade Games",
"build": "HTML5, JavaScript",
"dev": "Spil Games",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": [
"Arrow Keys: Move (Player 1)",
"Space: Drop Bomb (Player 1)",
"WASD Keys: Move (Player 2)",
"Enter: Drop Bomb (Player 2)"
],
"thumb": "logo.jpg"
},
{
"id": 37,
"name": "Box Head",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/boxhead2play/",
"genre": "Action Games",
"build": "Flash",
"dev": "Sean Cooper",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "boxhead2play.jpg"
},
{
"id": 347,
"name": "Boxel Rebound",
"catagory": "action",
"popularity": "10M+",
"releaseDate": "April 20, 2017",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/boxel-rebound/",
"genre": "Platformer Games",
"build": "HTML5, JavaScript",
"dev": "Doppler Creative",
"about": "Boxel Rebound is a poopular Chrome extension platformer game, brought to the web by MacVG. In this fast-paced reaction game, you need to control a block to jump over obstacles, spikes, and cliffs. Try to reach the end as fast as possible! As you advance, levels will be getting harder and there will also be other techniques like trampolines, speed up blocks, and resizers. Jump at the right time to avoid dying and get as many points as possible! Other than the preloaded 50 levels, you can also create your own unique fun levels and enjoy it yourself or with friends! Have fun!",
"controls": ["Space Bar / Up Arrow / Click: Jump"],
"thumb": "logo.jpg"
},
{
"id": 46,
"name": "Champion Island",
"catagory": "action",
"popularity": "500M+",
"releaseDate": "July 23, 2021",
"rating": "TODO",
"featured": true,
"link": "https://macvg-games.github.io/action-games/champion-island/",
"genre": "RPG Games",
"build": "HTML5, JavaScript",
"dev": "Google Doodle",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "splash.png"
},
{
"id": 47,
"name": "Champion Archer",
"catagory": "action",
"popularity": "5M+",
"releaseDate": "April 1, 2012",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/championarcher/",
"genre": "Tower Defense Games",
"build": "Flash",
"dev": "Stick Page",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "championarcher.png"
},
{
"id": 55,
"name": "CraftMine",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/craftmine/",
"genre": "Adventure Games",
"build": "HTML5, JavaScript",
"dev": "Anonymous",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "images/craftmine.png"
},
{
"id": 56,
"name": "Creative Kill Chamber",
"catagory": "action",
"popularity": "10M+",
"releaseDate": "august 3, 2010",
"rating": "TODO",
"featured": true,
"link": "https://macvg-games.github.io/action-games/creativekillchamber/",
"genre": "Escaping Games",
"build": "Flash",
"dev": "Stick Page",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "creativekillchamber.jpg"
},
{
"id": 62,
"name": "Cubefield",
"catagory": "action",
"popularity": "5M+",
"releaseDate": "January 2006",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/cubefield/",
"genre": "Reaction Games",
"build": "HTML5, JavaScript",
"dev": "Nils Asejevs",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "assets/unnamed.png",
"download": true
},
{
"id": 64,
"name": "Dante",
"catagory": "action",
"popularity": "5M+",
"releaseDate": "September 13, 2022",
"rating": "TODO",
"featured": true,
"link": "https://macvg-games.github.io/action-games/dante/",
"genre": "Platformer Games",
"build": "HTML5, JavaScript",
"dev": "Salvatore Previti",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "splash.png",
"download": true
},
{
"id": 355,
"name": "Dead Again",
"catagory": "action",
"popularity": "5M+",
"releaseDate": "September 13, 2022",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/dead-again/",
"genre": "RPG Games",
"build": "HTML5, JavaScript",
"dev": "Lax Viking Games",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": [
"Arrow / WASD Keys: Move",
"R / Space: Reload",
"Click: Shoot"
],
"thumb": "thumb.png"
},
{
"id": 66,
"name": "Death Run 3D",
"catagory": "action",
"popularity": "50M+",
"releaseDate": "December 1, 2014",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/death-run-3d/",
"genre": "Reaction Games",
"build": "HTML5, JavaScript",
"dev": "Wang Hailong",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "img/death.png"
},
{
"id": 67,
"name": "Defend the Tank",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/defend-the-tank/",
"genre": "Tower Defense Games",
"build": "HTML5, JavaScript",
"dev": "Anonymous",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "images/splash.jpg"
},
{
"id": 296,
"name": "Dodge",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/dodge/",
"genre": "Reaction Games",
"build": "HTML5, JavaScript",
"dev": "Anonymous",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "Dodge.png",
"download": true
},
{
"id": 368,
"name": "Down the Hill",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/down-the-hill/",
"genre": "Reaction Games",
"build": "HTML5, JavaScript",
"dev": "Anonymous",
"about": "In this fun and fast paced reaction game, your goal is to control the character to either go left or right down the hill, avoiding obstacles like trees, lava, spikes, cars, bombs, honey, and more. Plan your route while having a fast reaction time, because anything can happen to knock you off the hill! Collect diamonds on the hill to buy new cosmetics. Have fun!",
"controls": [
"Left Arrow / Click Left: Go Left",
"Right Arrow / Click Right: Go Right"
],
"thumb": "logo.jpg"
},
{
"id": 73,
"name": "Dragon vs Bricks",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/dragon-vs-bricks/",
"genre": "Reaction Games",
"build": "HTML5, JavaScript",
"dev": "Anonymous",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "icon.jpg"
},
{
"id": 84,
"name": "Endless War 3",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/endlesswar3/",
"genre": "Empire Games",
"build": "Flash",
"dev": "Anonymous",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "endlesswar3.png"
},
{
"id": 86,
"name": "Evil Glitch",
"catagory": "action",
"popularity": "5M+",
"releaseDate": "May 31, 2017",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/evil-glitch/",
"genre": "Shooting Games",
"build": "HTML5, JavaScript",
"dev": "Agar3s",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "evil.png",
"download": true
},
{
"id": 90,
"name": "Fancy Pants Adventures",
"catagory": "action",
"popularity": "10M+",
"releaseDate": "April 2006",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/fancypantsadventures/",
"genre": "Platformer Games",
"build": "Flash",
"dev": "Borne Games",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "fancypantsadventure.png"
},
{
"id": 92,
"name": "Fireboy and Watergirl",
"catagory": "action",
"popularity": "50M+",
"releaseDate": "November 19, 2009",
"rating": "TODO",
"featured": true,
"link": "https://macvg-games.github.io/action-games/fireboywatergirlforesttemple/",
"genre": "Teamwork Games",
"build": "HTML5, JavaScript",
"dev": "Oslo Albet",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "logo.jpeg"
},
{
"id": 373,
"name": "Five Nights at Freddy's",
"catagory": "action",
"popularity": "100M+",
"releaseDate": "August 8, 2014",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/fnaf/",
"genre": "Horror Games",
"build": "HTML5, JavaScript",
"dev": "Scottgames",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "logo.jpg"
},
{
"id": 97,
"name": "Five Nights at winston's",
"catagory": "action",
"popularity": "5M+",
"releaseDate": "February 27, 2021",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/fnaw/",
"genre": "Horror Games",
"build": "HTML5, JavaScript",
"dev": "Calder Young",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "splash.png"
},
{
"id": 99,
"name": "Froggy's Battle",
"catagory": "action",
"popularity": "5M+",
"releaseDate": "August 21, 2022",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/froggys-battle/",
"genre": "Timing Games",
"build": "Unity WebGL",
"dev": "Doot",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "splash.png"
},
{
"id": 101,
"name": "Frying Nemo",
"catagory": "action",
"popularity": "5M+",
"releaseDate": "May 5, 2003",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/frying-nemo/",
"genre": "Timing Games",
"build": "Unity WebGL",
"dev": "Traveler Tales",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "splash.png"
},
{
"id": 290,
"name": "Funny Shooter 2",
"catagory": "action",
"popularity": "50M+",
"releaseDate": "August 2022",
"rating": "TODO",
"featured": true,
"link": "https://macvg-games.github.io/action-games/funnyshooter2/",
"genre": "Shooter Games",
"build": "Unity WebGL",
"dev": "GoGoMan",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "thumb.png"
},
{
"id": 103,
"name": "Generic Fishing Game",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/generic-fishing-game/",
"genre": "Action Games",
"build": "HTML5, JavaScript",
"dev": "Casper van Dommelen",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "splash.png"
},
{
"id": 377,
"name": "Geometry Dash Classic",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/geometry-dash/",
"genre": "Platformer Games",
"build": "HTML5, JavaScript",
"dev": "RobTop Games",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Click: Jump"],
"thumb": "logo.jpg"
},
{
"id": 104,
"name": "Geometry Dash Scratch",
"catagory": "action",
"popularity": "100M+",
"releaseDate": "April 19, 2016",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/geodash/",
"genre": "Platformer Games",
"build": "Scratch",
"dev": "Griffpatch",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "geoscratchicon.png",
"download": true
},
{
"id": 106,
"name": "Getaway Shootout",
"catagory": "action",
"popularity": "10M+",
"releaseDate": "Unknown",
"rating": "TODO",
"featured": true,
"link": "https://macvg-games.github.io/action-games/getaway-shootout/",
"genre": "Shooting Games",
"build": "Unity WebGL",
"dev": "New Eich Games",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "img/images.jpg"
},
{
"id": 107,
"name": "Gimme the Airpod",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/gimme-the-airpod/",
"genre": "Dueling Games",
"build": "Unity WebGL",
"dev": "Anonymous",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "img/logo.png"
},
{
"id": 379,
"name": "Gobdun",
"catagory": "action",
"popularity": "5M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/gobdun/",
"genre": "Action Games",
"build": "HTML5, JavaScript",
"dev": "Venturous",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": [
"Up Arrow: Move Forward / Attack",
"Down Arrow: Turn Around / Block",
"Left / Right Arrow Keys: Turn Left / Right",
"P: Pause",
"Note: WASD keys also work"
],
"thumb": "logo.jpg"
},
{
"id": 110,
"name": "GOODNIGHT",
"catagory": "action",
"popularity": "5M+",
"releaseDate": "2018",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/goodnight/",
"genre": "Platformer Games",
"build": "HTML5, JavaScript",
"dev": "deepsleep",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "goodnight.jpg"
},
{
"id": 381,
"name": "Groovy Ski",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/groovy-ski/",
"genre": "Reaction Games",
"build": "HTML5, JavaScript",
"dev": "Anonymous",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Click: Change Direction"],
"thumb": "logo.jpg"
},
{
"id": 382,
"name": "G-Switch",
"catagory": "action",
"popularity": "50M+",
"releaseDate": "February 3, 2010",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/gswitch/",
"genre": "Reaction Games",
"build": "HTML5, JavaScript",
"dev": "Serius Games",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Any Key: Flip Gravity", "Esc: Pause"],
"thumb": "logo.jpg"
},
{
"id": 383,
"name": "G-Switch 2",
"catagory": "action",
"popularity": "50M+",
"releaseDate": "August 7, 2015",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/gswitch-2/",
"genre": "Reaction Games",
"build": "HTML5, JavaScript",
"dev": "Serius Games",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Any Key: Flip Gravity", "Esc: Pause"],
"thumb": "logo.jpg"
},
{
"id": 384,
"name": "G-Switch 3",
"catagory": "action",
"popularity": "50M+",
"releaseDate": "November 22, 2016",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/gswitch-3/",
"genre": "Reaction Games",
"build": "HTML5, JavaScript",
"dev": "Serius Games",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Any Key: Flip Gravity", "Esc: Pause"],
"thumb": "logo.jpg"
},
{
"id": 120,
"name": "Helicopter",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/helicopter/",
"genre": "Reaction Games",
"build": "Flash",
"dev": "Anonymous",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Click: Fly Up"],
"thumb": "helicopter.png"
},
{
"id": 390,
"name": "Hide and Smash",
"catagory": "action",
"popularity": "5M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/hide-and-smash/",
"genre": "Reaction Games",
"build": "HTML5, JavaScript",
"dev": "Madbox",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Drag: Move", "Drop: Hide"],
"thumb": "logo.jpg"
},
{
"id": 124,
"name": "Hungry Lamu",
"catagory": "action",
"popularity": "5M+",
"releaseDate": "July 16, 2022",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/hungry-lamu/",
"genre": "Horror Games",
"build": "Unity WebGL",
"dev": "Kulu",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "splash.png"
},
{
"id": 336,
"name": "Inifnite Soccer",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/infinite-soccer/",
"genre": "Endless Runner Games",
"build": "HTML5, JavaScript",
"dev": "AVIX Games",
"about": "In this fun game, AVIX Games combined endless runner and soccer into this amazing reaction game, where you navigate your player to dodge obstacles while collecting coins, activate Turbo to smash everything out of the way, and then reach the end to shoot a penalty kick to get as much money as possible! In the final shootout, press the space bar at just the right time to get triple the money collected and use the money to buy the team you want and play as the team! Good luck!",
"controls": [
"Up Arrow: Jump",
"Down Arrow: Slide",
"Left / Right Arrow: Dash Left / Right",
"Space: Turbo / Shoot",
"Note: WASD keys and dragging also work"
],
"thumb": "logo.avif"
},
{
"id": 304,
"name": "Iron Snout",
"catagory": "action",
"popularity": "50M+",
"releaseDate": "October 17, 2014",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/iron-snout/",
"genre": "Run and Gun Games",
"build": "HTML5, JavaScript",
"dev": "SnoutUp Games",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "IronSnout.png"
},
{
"id": 129,
"name": "Jetpack Joyride",
"catagory": "action",
"popularity": "50M+",
"releaseDate": "September 1, 2011",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/jetpack-joyride/",
"genre": "Endless Runner Games",
"build": "HTML5, JavaScript",
"dev": "Halfbrick Studios",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "splash.jpg"
},
{
"id": 130,
"name": "JustFall.lol",
"catagory": "action",
"popularity": "30M+",
"releaseDate": "April 14, 2021",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/just-fall/",
"genre": "Survival Games",
"build": "Unity WebGL",
"dev": "JustPlay.LOL",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "unnamed.png"
},
{
"id": 132,
"name": "Kitchen Gun Game",
"catagory": "action",
"popularity": "1M+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/kitchen-gun-game/",
"genre": "Shooting Games",
"build": "HTML5, JavaScript",
"dev": "Ash K",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "splash.png"
},
{
"id": 134,
"name": "Knife Master",
"catagory": "action",
"popularity": "500K+",
"releaseDate": "Unknown",
"rating": "TODO",
"link": "https://macvg-games.github.io/action-games/knife-master/",
"genre": "Action Games",
"build": "HTML5, JavaScript",
"dev": "Cuga",
"about": "Oops, you caught us, we're still working hard to provide game description on this game! In the upcoming updates, more and more games will have their descriptions and instructions to help you beat it, so stay tuned for more updates!",
"controls": ["Still working on this one O_O"],
"thumb": "512x512.jpg"
},
{
"id": 140,
"name": "Mario",
"catagory": "action",
"popularity": "100M+",
"releaseDate": "September 13, 1985",