forked from culpixtg/syce_game_shack
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgame_data.js
1906 lines (1880 loc) · 74.1 KB
/
game_data.js
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
let lastUpdate = "9/28/2022"
const data = [
{
name: "1v1.lol",
id: "1v1.lol",
genre: "Building Simulator",
description: "1v1.lol is an online building simulator & third person shooting game. Battle royale, build fight, zone wars and more game modes to enjoy!",
link: "https://advanced-channeler.02.gz-associates.com/?t=tam-1v1-lol",
img: "Images/1v1-lol.png",
file_based: false,
publisher: "JustPlay.LOL",
controls: [
"Slide Left Click - Aim",
],
broken: true,
},
{
name: "2 Player Games",
id: "2_player_games",
genre: "2 Player",
description: "2 Player Games is a 2 player shooter game that you and your friend can play. You earn coins from playing which can then be used to buy other charaters with different guns and rarities.",
link: "Game Files/2 Player Games/index.html",
img: "Images/2_player_games.png",
file_based: true,
publisher: "Scratch - Llxma909",
controls: [
"Player 1: WAD - Movement, S - Shoot",
"Player 2: Up/Left/Right Arrow - Movement, Down Arrow - Shoot",
"R - Menu"
]
},
{
name: "99 Balls",
id: "99balls",
genre: "Arcade",
description: "In this game, you're trying to destroy all the balls before they reach the bottom. It may sound simple but it gets harder and harder as you reach higher levels.",
link: "https://files.acticdn.com/278374/22226/index.html",
img: "Images/99_balls.png",
file_based: false,
publisher: "GameSnacks",
controls: [
"Slide Left Click - Aim",
]
},
{
name: "2048",
id: "2048",
genre: "Puzzle",
description: "In this game, you're trying to slide the number tiles on the grid to combine them to create a tile with the number 2048. Can you go beyond 2048?",
link: "Game Files/2048/index.html",
img: "Images/2048.png",
file_based: true,
publisher: "Solebon LLC",
controls: [
"Arrow Keys/WASD - Move tiles",
]
},
// {
// name: "Adventure Capitalist",
// id: "adventure_capitalist",
// genre: "Incremental",
// description: "Adventure Capitalist is a game where you can form your own multi-national conglomerate to create a world-wide, monopolistic economy.",
// link: "https://than1089.github.io/adventure-capitalist/",
// // link: "Game Files/Adventure Capitalist/public/index.html",
// img: "Images/adventure_capitalist.png",
// file_based: false,
// publisher: "Hyper Hippo Productions",
// controls: [
// "Right Click - Buy Items",
// ]
// },
{
name: "Age of War",
id: "age_of_war",
genre: "Defense / Strategy",
description: "Take control of 16 different units and 15 different turrets to defend your base and destroy your enemy. In this game, you start at the caveman age, then evolve! There are a total of 5 ages, each with its own unique units and turrets.",
link: "Game Files/Age of War/index.html",
img: "Images/age_of_war.png",
file_based: false,
publisher: "Unknown",
controls: [
"Unknown",
]
},
{
name: "Airman Challenge",
id: "airman_challenge",
genre: "Adventure",
description: "See if you can complete the type of missions Airmen carry out everyday with this interactive game that puts you in the muddle of action around the world.",
link: "https://www.airforce.com/airmanchallenge/",
img: "Images/airman_challenge.png",
file_based: false,
publisher: "U.S. Air Force",
controls: [
"idk the controls to this game",
]
},
{
name: "Among Us",
id: "among_us",
genre: "Mystery",
description: "sus",
link: "Game Files/Among Us/index.html",
img: "Images/among_us.png",
file_based: true,
publisher: "kevin.games",
controls: [
"WASD/Arrow Keys - Movement",
"Q - Kill",
"E - Vent",
"F - Sabotage",
]
},
{
name: "Appel",
id: "appel",
genre: "Platformer",
description: "It's your job to help Appel navigate through each level, avoiding danger, and collecting as many golden apples as you can before finally facing Micro Manager and restoring peace to the world.",
link: "Game Files/Appel/index.html",
img: "Images/appel.png",
file_based: true,
publisher: "Scratch - griffpatch",
controls: [
"Arrow Keys/WASD/Spacebar - Movement",
]
},
{
name: "Asteroids",
id: "asteroids",
genre: "Arcade / Shooter",
description: "In this game you control a single spaceship in an asteroid field which is periodically traversed by flying saucers. The object of the game is to shoot and destroy the asteroids and saucers without getting hit by them.",
link: "Game Files/Asteroids/index.html",
img: "Images/asteroids.png",
file_based: true,
publisher: "Unknown",
controls: [
"Arrow Keys - Movement",
"Space - Shoot",
]
},
{
name: "Bacon May Die",
id: "bacon_may_die",
genre: "Action",
description: "In this game you are a pig fighting your way through hordes of bacon-hungry enemies.",
link: "https://tybsi.com/games/bacon-may-die/index.html",
img: "Images/bacon_may_die.png",
file_based: false,
publisher: "tybsi.com",
controls: [
"Arrow Keys - Movement",
"Left/Right Arrow Keys - Attack",
"Hold Left/Right Arrow Key - Long Range Attack",
]
},
{
name: "Ball Blast",
id: "ball_blast",
genre: "Arcade",
description: "In this game you must destroy all the balls without one hitting you. You can then upgrade and unlock new guns with coins that you get.",
link: "Game Files/Ball Blast/index.html",
img: "Images/ball_blast.png",
file_based: true,
publisher: "Scratch - AnimationsScratch",
controls: [
"Hold Right Click - Swipe & Shoot",
]
},
{
name: "Basketball Stars",
id: "basketball_stars",
genre: "2 Player / Sports",
description: "In this game you can play solo or with a friend as a varity of legendary basketball players.",
link: "Game Files/Basketball Stars/index.html",
img: "Images/basketball_stars.png",
file_based: true,
publisher: "Madpuffers",
controls: [
"Player 1: WASD - Movement, A (Jump) - Shoot",
"V - Special Item, B - Steal",
"Player 2: Arrow Keys - Movement, Up Arrow (Jump) - Shoot",
"K - Special Item, L - Steal",
]
},
{
name: "BasketBros.io",
id: "basketbros-io",
genre: "2 Player / Sports",
description: "BasketBros.io is a charming basketball game with a cool retro look that can be played with friends or against CPUs.",
link: "https://basketball.services/",
img: "Images/basketbros-io.png",
file_based: false,
publisher: "Blue Wizard Digital",
controls: [
"Unknown",
],
broken: true,
},
{
name: "Binding of Isaac",
id: "binding_of_isaac",
genre: "Rouge-like",
description: "The Binding of Isaac is a randomly generated action RPG shooter with heavy Rouge-like elements.",
link: "https://advanced-channeler.02.gz-associates.com/?s=%3furl%3D%252Fflash%252Fbinding-of-isaac.swf&t=tam-flash-ruffle",
img: "Images/binding_of_isaac.png",
file_based: false,
publisher: "Headup Games",
controls: [
"WASD - Movement",
"Arrow Keys/Mouse - Shoot",
"Space - Use Current Item",
"Q - Use Single Item",
"Shift/E - Place Bomb",
"R - Restart",
"Left CTRL - Drop Equiped Trinket"
]
},
{
name: "Bloxorz",
id: "bloxorz",
genre: "Puzzle",
description: "Bloxorz is a puzzle game that tests your logic and patience. The goal of the game is to put the bloxorz to the destination by rolling it.",
link: "Game Files/Bloxorz/index.html",
img: "Images/bloxorz.png",
file_based: true,
publisher: "addictinggames.com",
controls: [
"Arrow Keys - Movement",
]
},
{
name: "Bounce Back",
id: "bounce_back",
genre: "Adventure / Rouge-like",
description: "Bounce Back is a charming and addictive little Zelda inspired rogue-like adventure game where you use boomerangs to battle your way through 10 challenging procedurally generated levels.",
link: "Game Files/Bounce Back/index.html",
img: "Images/bounce_back.png",
file_based: true,
publisher: "JS13kGames",
controls: [
"WASD - Movement",
"Mouse - Aim",
"Click - Throw",
"Space - Dash",
]
},
{
name: "Bowmasters",
id: "bowmasters",
genre: "Archery",
description: "Bowmasters is one of the top archery arcade games in the world. Play multiplayer or solo with bowmen.",
link: "https://html5.iclouds.io/archery-master/?ref",
img: "Images/bowmasters.png",
file_based: false,
publisher: "iclouds.io",
controls: [
"Hold Right Click - Aim & Control Power",
"Release Right Click - Shoot",
]
},
{
name: "BoxBob",
id: "boxbob",
genre: "Puzzle",
description: "This is a challenging puzzle game with 16 levels where you play as Bob moving boxes to the correct spot.",
link: "https://games.engineering.com/boxbob/index.html",
img: "Images/boxbob.png",
file_based: false,
publisher: "engineering.com",
controls: [
"WASD/Arrow Keys - Movement",
"U - Undo",
"R - Restart",
]
},
{
name: "BreakLock",
id: "breaklock",
genre: "Puzzle",
description: "A hybrid of Mastermind and the Android pattern lock. A game you gonna love to hate. Link the dots to try to find the pattern, you will get clues to help you solve it.",
link: "Game Files/BreakLock/index.html",
img: "Images/breaklock.png",
file_based: true,
publisher: "engineering.com",
controls: [
"Unknown",
]
},
{
name: "Burrito Bison",
id: "burrito_bison",
genre: "Adventure",
description: "In this game you must launch Burrito Bison as far as you can, bouncing, flying, and soaring through the skies to fend off the invasion of gummies.",
link: "https://tybsi.com/games/burrito-bison-launcha-libre/index.html",
img: "Images/burrito_bison.png",
file_based: false,
publisher: "tynsi.com",
controls: [
"Hold Right Click - Aim & Power",
"Release Right Click - Release"
]
},
{
name: "Cannon Basketball 4",
id: "cannon_basketball_4",
genre: "Sports",
description: "Cannon Basketball 4 is a sports game where you launch basketballs as you try to solve puzzles, collect stars, and make baskets.",
link: "Game Files/Cannon Basketball 4/index.html",
img: "Images/cannon_basketball_4.png",
file_based: true,
publisher: "Armor Games",
controls: [
"Drag Mouse - Aim & Power",
"Right Click - Shoot"
]
},
{
name: "Chess",
id: "chess",
genre: "Classic",
description: "Chess is one of the oldest and most popular board games. It is played by two opponents, this game also includes an AI, where the objective of the game is to capture the opponent's king.",
link: "Game Files/Chess/index.html",
img: "Images/chess.png",
file_based: true,
publisher: "Unknown",
controls: [
"1st Right Click - Select Piece",
"2nd Right Click - Move Piece"
]
},
{
name: "Chrome Dinosaur",
id: "chrome_dinosaur",
genre: "Classic",
description: "In this game you need to guide a pixelated Tyrannosaurus rex across a side-scrolling landscape, avoiding obstacles to achieve a higher score.",
link: "Game Files/Chrome Dinosaur/index.html",
img: "Images/chrome_dinosaur.png",
file_based: true,
publisher: "Google",
controls: [
"Spacebar/Up Arrow - Jump",
"Down Arrow - Duck"
]
},
{
name: "Connect 4",
id: "connect_4",
genre: "Classic",
description: "Connect 4 is a tic-tac-toe-like two-player game in which players alternately place pieces on a board to acheive 4 in-a-row.",
link: "Game Files/Connect 4/index.html",
img: "Images/connect_4.png",
file_based: true,
publisher: "Unknown",
controls: [
"Right Click - Place Piece in Row",
"Right Click - Play Again"
],
broken: true
},
{
name: "Cookie Clicker",
id: "cookie_clicker",
genre: "Incremental",
description: "Cookie Clicker is an incremental web-broswer game where the goal is to produce as many cookies as you can by clicking on the big cookie and buying items.",
link: "Game Files/Cookie Clicker/index.html",
img: "Images/cookie_clicker.png",
file_based: true,
publisher: "Orteil",
controls: [
"Right Click - Click Cookie/Buy Items",
"Hold CTRL - Show Bulk of 10",
"Hold Shift - Show Bulk of 100",
]
},
{
name: "CraftMine",
id: "craftmine",
genre: "Adventure / Survival",
description: "CraftMine is a cool 2D Minecraft game, this game is all about surviving for as long as you can with surronding materials.",
link: "Game Files/CraftMine/index.html",
img: "Images/craftmine.png",
file_based: true,
publisher: "Unknown",
controls: [
"WAD - Movement",
"Right Click - Interact",
]
},
// {
// name: "Crossy Road",
// id: "crossy_road",
// genre: "Arcade",
// description: "The objective of this game is to move a charater through an endless path of static and moving obstacles as far as possible without dying.",
// link: "Game Files/Crossy Road/index.html",
// img: "Images/crossy_road.png",
// file_based: false,
// publisher: "Poki",
// controls: [
// "WASD/Arrow Keys/Right Click - Movement",
// ]
// },
{
name: "Cubefield",
id: "cubefield",
genre: "Endless",
description: "Cubefield is a simple but addictive game where there are only two controls. You must guide your ship through an endless field of ominous looking colored cubes without hitting them.",
link: "Game Files/Cubefield/index.html",
img: "Images/cubefield.png",
file_based: true,
publisher: "flecko.net",
controls: [
"Arrow Keys - Movement",
"P - Pause"
]
},
{
name: "Cube Surfer",
id: "cube_surfer",
genre: "Arcade",
description: "You need to try to stack as many cubes to make a tower run and surf on the road to reach the finish line.",
link: "https://html5.iclouds.io/box-surfing-v1/",
img: "Images/cube_surfer.png",
file_based: false,
publisher: "iclouds.io",
controls: [
"Hover Mouse - Slide Left/Right (might need to click first)",
]
},
{
name: "Cut the Rope",
id: "cut_the_rope",
genre: "Puzzle",
description: "In this game you must feed a creature named Om Nom with candy by cutting ropes in a certain manner, while using other tools such as bubbles and air cushions to avoid hazards and collect stars.",
link: "Game Files/Cut the Rope/index.html",
img: "Images/cut_the_rope.png",
file_based: true,
publisher: "ZeptoLab",
controls: [
"Click & Drag - Cut Rope",
"Click Bubble - Pop It"
]
},
{
name: "CTR Holiday",
id: "ctr_holiday",
genre: "Arcade",
description: "In this game you must feed a creature named Om Nom with candy by cutting ropes in a certain manner, while using other tools such as bubbles and air cushions to avoid hazards and collect stars.",
link: "Game Files/CTR Holiday/index.html",
img: "Images/ctr_holiday.png",
file_based: true,
publisher: "Zeptolab",
controls: [
"Click & Drag - Cut Rope",
"Click Bubble - Pop It"
]
},
{
name: "CTR Time Travel",
id: "ctr_time_travel",
genre: "Arcade",
description: "In this game you must feed a creature named Om Nom with candy by cutting ropes in a certain manner, while using other tools such as bubbles and air cushions to avoid hazards and collect stars.",
link: "Game Files/CTR Time Travel/index.html",
img: "Images/ctr_time_travel.png",
file_based: true,
publisher: "ZeptoLab",
controls: [
"Click & Drag - Cut Rope",
"Click Bubble - Pop It"
]
},
{
name: "Death Chase 3",
id: "death_chase_3",
genre: "Driving / Racing",
description: "Death Chase 3 is a platform type car racing game. Race on mountain roads; A road full of tricky passages, cliffs, underground tunnels, bridges and traps.",
link: "https://b0bz-d34thch4z3.netlify.app/",
img: "Images/death_chase_3.png",
file_based: false,
publisher: "Unknown",
controls: [
"Arrow Keys - Movement",
"X - Missile",
"N - Nitro",
"Space - Jump",
]
},
{
name: "Death Run 3D",
id: "death_run_3d",
genre: "Endless",
description: "Death Run 3D is an extremely fast game for true skillers only. If you love hardcore games, this game is the right for you. You fly inside a tube with various blocks and almost each of them is movable. Your task is avoid them. Gaps between blocks are very short so swift responses are the only way to success.",
link: "Game Files/Death Run 3D/index.html",
img: "Images/death_run_3d.png",
file_based: false,
publisher: "Unknown",
controls: [
"Unknown",
]
},
{
name: "Diep 2.io",
id: "diep_2-io",
genre: "Arcade",
description: "The more points you have the better. It's the main thing to pay attention in Diep 2.io 2. You can exchange XP points for upgrading your charater's skills. However that won't help you in case you meet week, but experienced player. And YES this game contains ads, thats because this is the original game, all revenue is going to the developers.",
link: "https://diepio-2.com/",
img: "Images/diep_2-io.png",
file_based: false,
publisher: "diep.io-2",
controls: [
"Unknown",
]
},
{
name: "Doodle Jump",
id: "doodle_jump",
genre: "Platformer",
description: "The aim of the game is to guide a four-legged creature called the Doodler up an unending series of platformers without falling.",
link: "Game Files/Doodle Jump/index.html",
img: "Images/doodle_jump.png",
file_based: true,
publisher: "Unknown",
controls: [
"Arrow Keys - Movement",
]
},
{
name: "Dragon Ball Z",
id: "dragon_ball_z",
genre: "Adventure",
description: "The epic episodic adventure of Goku and the Z Warriors as they defend the Earth and the Universe from super-powered fighters and monsters.",
link: "GBA-Emulator/launcher.html#dbz_supersonic",
img: "Images/dragon_ball_z.png",
file_based: true,
publisher: "Nintendo",
controls: [
"Unknown",
]
},
{
name: "Draw The Hill",
id: "draw_the_hill",
genre: "Arcade / Endless",
description: "In this cool driving game, use your skills to draw a path for the car to drive through the level. Make sure you draw a steady path or else you'll end the level.",
link: "Game Files/Draw The Hill/index.html",
img: "Images/draw_the_hill.png",
file_based: true,
publisher: "Math Playground",
controls: [
"Drag Right Click - Draw",
]
},
{
name: "Dreader",
id: "dreader",
genre: "Horror",
description: "Dreader is a short mouse maze game with horror elements. Warning: This game contains flashing lights and stripes and may be unsuitable for people with photosensitive epilepsy.",
link: "https://b0bzgx3mzz-dr3ad3r.netlify.app/",
img: "Images/dreader.png",
file_based: false,
publisher: "donitz.itch.io",
controls: [
"Move Mouse - Go through maze",
]
},
{
name: "Drift Hunters",
id: "drift_hunters",
genre: "Drifting",
description: "Drift Hunters is an awesome 3D car driving game in which you score points by drifting various cars. These points earn you money, that you can spend to upgrade your current car or buy a new one.",
link: "Game Files/Drift Hunters/index.html",
img: "Images/drift_hunters.png",
file_based: true,
publisher: "drift-hunters.co",
controls: [
"Unknown",
]
},
{
name: "Duck Life 2",
id: "duck_life_2",
genre: "Adventure",
description: "Duck Life is a game series where you train your duck for races and/or battles.",
link: "Game Files/Duck Life 2/index.html",
img: "Images/duck_life_2.png",
file_based: true,
publisher: "Poki",
controls: [
"Unknown",
]
},
{
name: "Duck Life 3",
id: "duck_life_3",
genre: "Adventure",
description: "Duck Life is a game series where you train your duck for races and/or battles.",
link: "Game Files/Duck Life 3/index.html",
img: "Images/duck_life_3.png",
file_based: true,
publisher: "Kongregate",
controls: [
"Unknown",
]
},
{
name: "Duck Life 4",
id: "duck_life_4",
genre: "Adventure",
description: "Duck Life is a game series where you train your duck for races and/or battles.",
link: "Game Files/Duck Life 4/index.html",
img: "Images/duck_life_4.png",
file_based: true,
publisher: "Unknown",
controls: [
"Unknown",
]
},
{
name: "Edge Not Found",
id: "edge_not_found",
genre: "Puzzle",
description: "Edge Not Found is a Sokoban-style puzzle game set on an infinitely repeating grid. There are 20+ puzzles and they get can pretty tricky.",
link: "Game Files/Edge Not Found",
img: "Images/edge_not_found.png",
file_based: true,
publisher: "js13kgames.com",
controls: [
"WASD/Arrow Keys - Movement",
"Space/Enter - Select",
"Z/Backspace - Undo",
"R - Restart",
"Esc - Toggle Menu"
]
},
{
name: "Evil Glitch",
id: "evil_glitch",
genre: "Shooter",
description: "You must fight to survive as long you can while evading enemies and destroying their bases to stop the corruption.",
link: "Game Files/Evil Glitch/index.html",
img: "Images/evil_glitch.png",
file_based: true,
publisher: "JS13kGames",
controls: [
"Unknown",
]
},
{
name: "Fireboy & Watergirl",
id: "fireboy_and_watergirl",
genre: "2 Player / Puzzle",
description: "Help Fireboy and Watergirl find the exit through the Forest Temple. Fireboy must avoid the water and Watergirl must avoid the fire, and be careful, the green mud kills them both!",
link: "https://advanced-channeler.02.gz-associates.com/?t=tam-fireboy-and-watergirl-4-crystal-temple",
img: "Images/fireboy_and_watergirl.png",
file_based: false,
publisher: "Unknown",
controls: [
"Unknown",
]
},
// {
// name: "Fishington.io",
// id: "fishington-io",
// genre: "Arcade",
// description: "Fishington.io is a multiplayer fishing game featuring characters from the game Betrayal.io. Cast your line and catch fish to sell on the market!",
// link: "https://fishington.io",
// img: "Images/fishington-io.png",
// file_based: false,
// publisher: "End Game Interactive, Inc.",
// controls: [
// "Unknown",
// ]
// },
{
name: "Flappy Bird",
id: "flappy_bird",
genre: "Arcade",
description: "You must navigate Faby, the bird, through pairs of pipes that have equally sized gaps placed at random heights.",
link: "Game Files/Flappy Bird/index.html",
img: "Images/flappy_bird.png",
file_based: true,
publisher: "Unknown",
controls: [
"Unknown",
]
},
{
name: "FNAF Final Purgatory",
id: "five_nights_at_freddys",
genre: "Horror",
description: "In this game, you get a job as a night guard at Freddy Fazbir's pizzeria. A few hours of work will replenish your budget decently. It can't help but please, but a little worm of doubt still began to gnaw at you and your suspicions began to creep in. And then midnight came. At exactly twelve o'clock the worst nightmare of your life will begin!",
link: "https://redlionsq.com/uploads/5/5/6/7/5567194/custom_themes/602302113323144959/fnaf-final-purgatory.html",
img: "Images/five_nights_at_freddys.png",
file_based: false,
publisher: "Unknown",
controls: [
"Unknown",
]
},
{
name: "Friday Night Funkin'",
id: "friday_night_funkin",
genre: "Rhythm",
description: "Friday Night Funkin' is a rhythm game where you must control a character called Boyfriend, who must defeat a series of opponents in order to continue dating his significant other, Girlfriend.",
link: "Game Files/Friday Night Funkin/index.html",
img: "Images/friday_night_funkin.png",
file_based: true,
publisher: "The Funkin' Crew Inc.",
controls: [
"Arrow Keys - Play Notes",
],
},
{
name: "Geometry Dash",
id: "geometry_dash",
genre: "Arcade",
description: "In this game you must control the movement of an icon and navigate along music-based levels, while avoiding obstacles such as spikes that instantly destroy the icon on impact.",
link: "Game Files/GeometryDash/index.html",
img: "Images/geometry_dash.png",
file_based: true,
publisher: "Unknown",
controls: [
"Unknown",
]
},
{
name: "Getaway Shootout",
id: "getaway_shootout",
genre: "2 Player / Shooter",
description: "Getaway Shootout is a chaotic race to reach the getaway objective in each map. Race against the computer or grab a friend to prove who is best. Collect power-ups and weapons along the way, and navigate through tough maps.",
link: "Game Files/Getaway Shootout/index.html",
img: "Images/getaway_shootout.png",
file_based: true,
publisher: "Unknown",
controls: [
"Unknown",
]
},
{
name: "Getting Over It",
id: "getting_over_it",
genre: "Adventure",
description: "Getting Over It is a climbing game. You move the hammer with the mouse, and that's all there is. With practice, you'll be able to jump, swing, climb and fly.",
link: "https://html5.iclouds.io/climb-over-it/",
img: "Images/getting_over_it.png",
file_based: false,
publisher: "iclouds.io",
controls: [
"Drag & Left Click - Swing Hammer",
]
},
{
name: "Gun Mayhem 2",
id: "gun_mayhem_2",
genre: "Action / Shooter",
description: "The aim of each round is simple - you must knock your enemies off of the stage and prevent them from jumping back on. You can push your enemies by shooting them. You can avoid being thrown off the stage yourself by using a series of jumps and double jumps. The gameplay is fast-paced and fun and you must have quick reactions to win!",
link: "Game Files/Gun Mayhem 2/index.html",
img: "Images/gun_mayhem_2.png",
file_based: false,
publisher: "Unknown",
controls: [
"Unknown",
]
},
{
name: "Gun Mayhem Redux",
id: "gun_mayhem_redux",
genre: "Action / Shooter",
description: "Gun Mayhem Redux is a third-person shooter game. The goal of the game is either to capture a flag for a certain duration or kill your opponents. To play the game you move a character up and down, back and forth while shooting at the enemy. The game provides you with eight campaign levels and a tutorial.",
link: "Game Files/Gun Mayhem Redux/index.html",
img: "Images/gun_mayhem_redux.png",
file_based: false,
publisher: "Unknown",
controls: [
"Unknown",
]
},
// {
// name: "Hakai",
// id: "hakai",
// genre: "?",
// description: "?",
// link: "https://freezydev.itch.io/hakai",
// img: "Images/.png",
// file_based: false,
// publisher: "Unknown",
// controls: [
// "Unknown",
// ]
// },
{
name: "Hextris",
id: "hextris",
genre: "Strategy",
description: "The goal of the game is to stop blocks from leaving the inside of the outer gray hexagon.",
link: "Game Files/Hextris/index.html",
img: "Images/hextris.png",
file_based: true,
publisher: "Unknown",
controls: [
"Left/Right Arrow Key - Rotate",
]
},
{
name: "Horde Killer",
id: "horde_killer",
genre: "Shooter",
description: "You vs 100 is a chaotic survival game where you face a vast horde of zombies determined to kill. Shoot them, blow them to pieces - do whatever it takes to avoid being mauled. Buy a range of new weapons and outfits for an explosively stylish apocalypse scenario.",
link: "https://heartfelt-salmiakki-9e8ee9.netlify.app/",
img: "Images/horde_killer.png",
file_based: false,
publisher: "Unknown",
controls: [
"Unknown",
]
},
{
name: "Idle Breakout",
id: "idle_breakout",
genre: "Idle",
description: "Click on a brick to break it and score points. Use points to purchase new balls with different abilities and upgrade them. Balls will automatically bounce and break bricks to score more points.",
link: "Game Files/Idle Breakout/index.html",
img: "Images/idle_breakout.png",
file_based: true,
publisher: "Unknown",
controls: [
"Unknown",
]
},
{
name: "Incredibox",
id: "incredibox",
genre: "Rhythm",
description: "Incredibox is a music app that lets you create your own music with the help of a merry crew of beatboxers.Choose your musical style among 8 impressive atmospheres and start to lay down, record and share your mix.",
link: "https://secretshxcksource00.github.io/tst2/",
img: "Images/incredibox.png",
file_based: false,
publisher: "incredibox.com",
controls: [
"Unknown",
],
broken: true
},
{
name: "Jetboy",
id: "jetboy",
genre: "Platformer",
description: "Jet Boy is a fun to play endless platform game. You need to avoid the mines and the holes in the ground and collect the fruit and the coins so you can buy Shields, the shields protect you for 10 seconds so you wont't get hurt… Buy Shields with In-App Purchase, Remove Admob Ads with In-App Purchase Controls",
link: "https://b0bz-j3tb0y.netlify.app/",
img: "Images/jetboy.png",
file_based: false,
publisher: "Bob's Shack",
controls: [
"Unknown",
]
},
{
name: "Knots",
id: "knots",
genre: "Puzzle",
description: "The goal is to untangle the ropes with a limited number of moves. Sounds easy, but one mistake can mess up the whole knot.",
link: "https://html5.iclouds.io/knots-master/index.html",
img: "Images/knots.png",
file_based: false,
publisher: "iclouds.io",
controls: [
"Unknown",
]
},
{
name: "Little Alchemy",
id: "little_alchemy",
genre: "Misc",
description: "In this game, you start with 4 basic elements and mix them to start creating more things. It's all about mixing elements to create intresting, fun and surprising items.",
link: "https://littlealchemy2.com/",
img: "Images/little_alchemy.png",
file_based: false,
publisher: "littlealchemy2.com",
controls: [
"Unknown",
]
},
{
name: "Mad Burger 3",
id: "mad_burger_3",
genre: "Managing / Launcher",
description: "Mad Burger 3 is a launcher game where you have to cook your and launch it as far as you can. Get good recipes, buy ingredients, and upgrade your skill.",
link: "https://dddavit.github.io/madburger/",
img: "Images/mad_burger_3.png",
file_based: false,
publisher: "Unknown",
controls: [
"Unknown",
]
},
{
name: "Mage Clash.io",
id: "mage_clash-io",
genre: "Arcade",
description: "Mageclash.io is a multiplayer fantasy game where you battle monsters and other players in order to become the most powerful player on the server. And YES this game contains ads, thats because this is the original game, all revenue is going to the developers.",
link: "https://www.mageclash.io/",
img: "Images/mage_clash-io.png",
file_based: false,
publisher: "mageclash.io",
controls: [
"Unknown",
]
},
{
name: "Mario Kart",
id: "mario_kart",
genre: "Adventure / Driving",
description: "Players compete in go-kart races while using various power up items.",
link: "./GBA-Emulator/launcher.html#mariokart",
img: "Images/mario_kart.png",
file_based: true,
publisher: "Nintendo",
controls: [
"Unknown",
]
},
{
name: "Minesweeper",
id: "minesweeper",
genre: "Classic / Puzzle",
description: "Minesweeper is a single-player logic-based computer game played on rectangular board whose object is to locate a predetermined number of randomly-placed mines in the shortest possible time by clicking on safe squares while avoiding the squares with mines.",
link: "https://www-ig-opensocial.googleusercontent.com/gadgets/ifr?url=https://sites.google.com/site/playminesweepergame/minesweeper.xml",
img: "Images/minesweeper.png",
file_based: false,
publisher: "Unknown",
controls: [
"Unknown",
]
},
{
name: "Moto X3M",
id: "moto_x3m",
genre: "Driving",
description: "The goal of this game is to race your motorbike through levels with massive, moving obstacles that you have to jump over or avoid. You can flip in the air to decrease your final time and earn a perfect score.",
link: "Game Files/Moto X3M/index.html",
img: "Images/moto_x3m.png",
file_based: true,
publisher: "Unknown",
controls: [
"Unknown",
]
},
{
name: "Moto X3M Pool Party",
id: "moto_x3m_pool_party",
genre: "Driving",
description: "The goal of this game is to race your motorbike through levels with massive, moving obstacles that you have to jump over or avoid. You can flip in the air to decrease your final time and earn a perfect score.",
link: "Game Files/Moto X3M Pool Party/index.html",
img: "Images/moto_x3m_pool_party.png",
file_based: true,
publisher: "Unknown",
controls: [
"Unknown",
]
},
{
name: "Moto X3M Spooky",
id: "moto_x3m_spooky",
genre: "Driving",
description: "The goal of this game is to race your motorbike through levels with massive, moving obstacles that you have to jump over or avoid. You can flip in the air to decrease your final time and earn a perfect score.",
link: "Game Files/Moto X3M Spooky/index.html",
img: "Images/moto_x3m_spooky.png",
file_based: true,
publisher: "Unknown",
controls: [
"Unknown",
]
},
{
name: "Moto X3M Winter",
id: "moto_x3m_winter",
genre: "Driving",
description: "The goal of this game is to race your motorbike through levels with massive, moving obstacles that you have to jump over or avoid. You can flip in the air to decrease your final time and earn a perfect score.",
link: "Game Files/Moto X3M Winter",
img: "Images/moto_x3m_winter.png",
file_based: true,
publisher: "Unknown",
controls: [
"Unknown",
]
},
{
name: "My Friend Pedro",
id: "my_friend_pedro",
genre: "Shooter",
description: "My Friend Pedro is a violent ballet about friendship, imagination, and one man's struggle to obliterate anyone in his path at the behest of a sentient banana.",
link: "https://advanced-channeler.02.gz-associates.com/?t=tam-flash-ruffle&s=%3Furl%3D%252Fflash-armorgames%252Fmy-friend-pedro-1598012ef.swf",
img: "Images/my_friend_pedro.png",
file_based: false,
publisher: "Armor Games",
controls: [
"Unknown",
]
},
// {