forked from webrcade/webrcade
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdefault-feed.json
1427 lines (1426 loc) · 101 KB
/
default-feed.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
{
"title": "Default",
"longTitle": "Default Feed",
"description": "The default feed contains a collection of high-quality publicly available games and demos across the various applications (emulators, engines, etc.) that are supported by webЯcade.",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/default-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/default-background.png",
"categories": [
{
"title": "Atari 2600",
"longTitle": "Atari 2600 Games",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600-background.png",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600-thumb.png",
"description": "The Atari 2600, originally branded as the Atari Video Computer System (Atari VCS) until November 1982, is a home video game console developed and produced by Atari, Inc. Released on September 11, 1977, it popularized the use of microprocessor-based hardware and of games stored on swappable ROM cartridges.",
"items": [
{
"title": "Aardvark",
"description": "Guide Oscar the Aardvark in his quest for tasty ant eggs and the most delicious ants hidden deep below ground. But be careful with your tongue, you could get an unexpected bite!",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/aardvark-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/aardvark-demo-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/Aardvark.bin"
}
},
{
"title": "Amoeba Jump",
"description": "In this game you play as Mr. Amoeba, a friendly microbe who enjoys eating bacteria pretty much indiscriminately. However, you first have to jump up the platforms and earn 1,000 points before those delicious bacteria start appearing.",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/amoebajump-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/amoebajump-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/AmoebaJump.bin"
}
},
{
"title": "Blinky Goes Up",
"description": "Blinky Goes Up is an original platform game for the Atari 2600 by Jan Hermanns. Your goal is to ascend through each level in this vertical scrolling platformer, collecting every gold nugget along the way.",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/blinky-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/blinky-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/blinky.bin"
}
},
{
"title": "Doggone It!",
"description": "Doggone It! is a one-player game. You control Hank, a delivery driver who suffers from cynophobia (fear of dogs). Hank must grab packages one at a time from the back of his truck and deliver them to the recipients at the bottom of the screen.",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/doggoneit-thumb2.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/doggoneit-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/Doggone_It!.bin"
}
},
{
"title": "Fall Down",
"description": "Fall Down pits the ever-opposed forces of RED and BLUE against each other in an ultimate battle to capture scrolling platforms! The first player to fall past a platform captures it and scores a point.",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/falldown-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/falldown-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/falldown.bin"
}
},
{
"title": "Gunfight",
"description": "It's shoot-out time and you've got to be faster than your opponent or the computer. Move, dodge, or hide behind a covered wagon or cactus. But whatever you do, don't waste your time because your opponent is shooting back. Gunfight is heavily inspired by the 1975 Midway arcade game Gun Fight.",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/gunfight-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/gunfight-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/gunfight.bin"
}
},
{
"title": "Halo 2600",
"description": "Halo 2600 is a 2010 action-adventure game developed by Ed Fries and published by AtariAge for the Atari 2600, a video game console released in 1977 that ended production in 1992. Inspired by the Halo video games series, the game sees players control Master Chief and fight through 64 screens with varied enemies.",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/halo2600-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/halo2600-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/Halo2600.bin"
}
},
{
"title": "Hunchy 2",
"description": "Hunchy II is a sequel to the 1982 classic arcade game Hunch Back which is loosely based on the novel \"The Hunchback of Notre Dame\" (1831) by Victor Hugo. Your task is to guide the hunchbacked Quasimodo in his quest to rescue the gypsy girl Esmeralda from the cathedral of Notre Dame.",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/hunchy2-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/hunchy2-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/hunchy2.bin"
}
},
{
"title": "I Ran",
"description": "It's just another typical running day in the city. Jump, Slide and run to reach the end avoiding obstacles like snakes, elves, giant bullets, UFOs and maybe a giraffe.",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/iran-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/iran-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/iran_final.bin"
}
},
{
"title": "Juno First",
"description": "There is no one left. No attack fleet. No reinforcements. Just you and a handful of reserve ships. Enemy forces are threatening the Juno colony – Earth’s last defense post. You must fend off wave after wave of enemy ships, skimming dangerously above the planet’s force field. How long can you hold them off?",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/junofirst-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/junofirst-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/junofirst.bin"
}
},
{
"title": "Ninjish Guy",
"longTitle": "Ninjish Guy in Low Res World (Pre-release)",
"description": "Ninjish Guy in Low-Res World is a platform game where you have to jump, slide and stomp your way through more than forty labyrinthine screens plagued with enemies, fire, sharks and other hazards, plus some tough bosses that will try to destroy you.",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/ninjish-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/ninjish-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/NinjishGuy_prerelease.bin"
}
},
{
"title": "Oystron",
"description": "In the Irata solar system lies the planet Stella. It is surrounded by an energy belt. In this belt there live space oysters. They make good food, so there are other outer space creatures living among them, that eat the oysters.",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/oystron-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/oystron-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/OYSTR29.BIN"
}
},
{
"title": "Peril",
"description": "In the depths of a haunted facility the evil RoboKing has awakened. Only a pilot with ninjish reflexes can survive the perilous mission and destroy the evil RoboKing. Avoid the obstacle, defeat the evil guardians and face the evil boss.",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/peril-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/peril-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/NewPeril-RC1.bin"
}
},
{
"title": "Robot City",
"description": "Robot City is based on the very addicting Odyssey 2 prototype game Robot City written by Graham Thomasson. The year is 2601. An unknown mechanical life form has touched down on the dark side of the moon. Any attempt to halt the progress of the “Robot City” is met with resistance from the hundreds of intelligent robot tanks (iBots) that swarm all over it.",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/robotcity-thumb2.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/robotcity-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/robotcity_rc8.bin"
}
},
{
"title": "Seawolf",
"description": "In Seawolf you command a submarine lurking below the surface of the ocean, where you need to attack enemy convoys while avoiding depth charges and other dangers. But use your resources wisely, as you don't want to be a sitting duck when you run out of torpedoes, or worse, fuel! And watch out for the Red Cross ships, as they have a surprise for you if you accidently target them!",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/seawolf-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/seawolf-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/seawolf.bin"
}
},
{
"title": "Skeleton+",
"description": "Skeleton+ is a 3D maze game written by Eric Ball. In order to escape this labyrinth you need to hunt down and eliminate 80 skeletons lurking about without being killed yourself! There are eight mazes, with each maze containing 10 skeletons.",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/skeleton-thumb2.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/skeleton-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/skelplus.bin"
}
},
{
"title": "Slide Boy",
"longTitle": "Slide Boy in Maze Land",
"description": "Slide your way out of dangerous mazes, avoid the obstacles, activate some switches and exit each room before the time run out.",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/slideboy-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/slideboy-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/slideboy_final.bin"
}
},
{
"title": "Space Instigators",
"description": "Space Instigators is a version of the popular arcade game Space Invaders that is more faithful to the original than Atari's 2600 port. This version fits nine invaders in a row without flicker, an impressive feat on the Atari 2600. The graphics, colors and sounds are truer to the original version than Atari's effort.",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/spaceinstigators-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/spaceinstigators-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/SpaceInstigators.bin"
}
},
{
"title": "Star Fire",
"description": "Star Fire is based on the 1979 arcade game of the same name. The gameplay is a wave-based space shoot'em-up, with several surprises that you won't find in the original arcade game. It carefully tries to not only adopt most features of the original, but to enhance the gameplay whereever possible as well.",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/starfire-thumb2.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/starfire-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/starntsc.bin"
}
},
{
"title": "Stay Frosty",
"description": "You were just chilling out at the North Pole, when a short-circuiting string of Christmas lights on Santa's barn set the reindeer dust on fire. Now magic fireballs are threatening to melt everything. It's up to you to put them out so you can keep your cool, however that's not an easy task for someone made of frozen water!",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/stayfrosty-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/stayfrosty-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/StayFrosty.bin"
}
},
{
"title": "Toyshop Trouble",
"description": "Santa's counting on you to ensure that all the toys are painted correctly! Can you get the job done before Santa's sleigh is loaded up on Christmas Eve? You don't want to be responsible for children waking up Christmas morning without toys under their trees, do you? Time to juggle those cans of paint and get moving!",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/toyshop-trouble-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/toyshop-trouble-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/ToyshopTrouble.bin"
}
},
{
"title": "Thrust",
"description": "The resistance is about to launch a major offensive against the Intergalactic Empire. You have been commissioned by the resistance to steal Klystron pods from the Empire's storage planets. Each planet is defended by a battery of \"Limpet\" guns, powered by a nuclear power plant.",
"type": "2600",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/2600/thrust-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/2600/thrust-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/2600/Thrust.bin"
}
}
]
},
{
"title": "Atari 7800",
"longTitle": "Atari 7800 Games",
"background": "https://webrcade.github.io/webrcade-default-feed/images/7800-background.png",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/7800-thumb.png",
"description": "The Atari 7800 ProSystem, or simply the Atari 7800, is a home video game console officially released by Atari Corporation in 1986 as the successor to both the Atari 2600 and Atari 5200. Designed by General Computer Corporation, the 7800 has significantly improved graphics hardware over Atari's previous consoles, but the same Television Interface Adapter chip that launched with the 2600 in 1977 is used to generate audio.",
"items": [
{
"title": "Attack of the PETSCII Robots",
"longTitle": "Attack of the PETSCII Robots (Demo)",
"type": "7800",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/7800/petscii-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/7800/petscii-background.png",
"description": "Attack of the PETSCII Robots is a top-down action/puzzle game. The object is to destroy all of the robots. To do this, you have to search objects in the game for weapons and other items to help you along the way. Many scenarios require complex thinking and problem solving, rather than just action shooting.",
"backgroundPixelated": true,
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/7800/petscii7800demo.a78"
}
},
{
"title": "Bentley Bear",
"longTitle": "Bentley Bear's Crystal Quest",
"type": "7800",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/7800/bentley-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/7800/bentley-background.png",
"description": "Your goal in Bentley Bear's Crystal Quest is to retrieve all five Crystals that Berthilda has stolen while avoiding all of the enemies, hazards, and pitfalls that await you in your quest. You begin the game with three turns, and you can earn more along the way. You also have an energy meter, which depletes as you work your way through each level.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/7800/Bentley Bear's Crystal Quest (20151220).a78"
}
},
{
"title": "Dragon's Cache",
"type": "7800",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/7800/dragoncache-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/7800/dragoncache-background.png",
"description": "In Dragon’s Cache you must match three or more gemstones in rows, columns, or diagonal lines as they fall from the top of the board. Unmatched gems will stay on the board until they are matched. The game will end when enough unmatched gems accumulate to reach past the top of the board, or, if you’re in racing mode, you reduce your predefined score to zero.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/7800/Dragon's Cache (20210207).a78"
}
},
{
"title": "Dragon's Descent",
"type": "7800",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/7800/dragondescent-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/7800/dragondescent-background.png",
"description": "Dragon’s Descent is a roguelike action game. The player can explore thousands of levels, with a variety of encounters and an escalating challenge as they descend through a sprawling labyrinth.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/7800/Dragon's Descent (20210107).a78"
}
},
{
"title": "E.X.O.",
"longTitle": "E.X.O. (Alpha)",
"type": "7800",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/7800/exo-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/7800/exo-background.png",
"description": "Your objective is to rescue your 4 team members who are all inconveniently being held in different places. Heavily inspired by games like Cybernoid, Starquake, Exile and even Adventure (Flick screen shooter/adventure/explore type games), E.X.O draws on these archetypes.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/7800/E X O (Alpha 35) (20210320).a78"
}
},
{
"title": "Failsafe",
"type": "7800",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/7800/failsafe-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/7800/failsafe-background.png",
"description": "In FailSafe you must make your way through five different terrains in search of the Depot where you will pick up Fail-Safe clues. One letter in the code, in its correct position, appears in the center of your fuel gauge. The sixth terrain is the most dangerous of all - the missile silo is heavily guarded by all enemies, including a mine field! If you make your way past that, you will have to enter the four-digit hexadecimal code to stop the launch and save the world.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/7800/FailSafe (NTSC) (20100227).a78"
}
},
{
"title": "Flappy Bird",
"longTitle": "Flappy Bird (Beta)",
"type": "7800",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/7800/flappybird-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/7800/flappybird-background.png",
"description": "Flappy Bird is a side-scroller where the player controls a bird, attempting to fly between columns of green pipes without hitting them.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/7800/Flappy Bird (Beta) (20141221).a78"
}
},
{
"title": "Knight Guy",
"longTitle": "Knight Guy in Low Res World: Castle Days",
"type": "7800",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/7800/knightguy-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/7800/knightguy-background.png",
"description": "An evil dragon kidnapped your beloved pet! Go and rescue him. 100 screens plagued with perils, multiple bosses, and a challenging final boss.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/7800/Knight Guy In Low Res World - Castle Days (RC 01-1) (20201001).a78"
}
},
{
"title": "Meteor Shower",
"type": "7800",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/7800/meteorshower-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/7800/meteorshower-background.png",
"description": "Meteors are falling to Earth! Defend Earth’s surface by blasting away at the falling rocks… But beware! Alien forces have learned what was happening and are taking advantage of our vulnerability to attack us!",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/7800/Meteor Shower (NTSC) (20120218).a78"
}
},
{
"title": "Millie and Molly",
"longTitle": "Millie and Molly (Demo)",
"type": "7800",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/7800/milliemolly-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/7800/milliemolly-background.png",
"description": "Millie and Molly is a retro inspired puzzle game featuring 100 levels spread over five themed worlds. This is an Atari 7800 conversion of the Commodore 64 retro smash created by Carleton Handley.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/7800/Millie And Molly (Demo) (20201206).a78"
}
},
{
"title": "Serpentine",
"type": "7800",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/7800/serpentine-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/7800/serpentine-background.png",
"description": "The goal of Serpentine is to eat the other serpents and avoid being eaten. Head-on collisions with snakes that aren't smaller than you will result in death. You can grow by eating frogs, eggs, and smaller snakes head-on. You can eat the tail/side segments of snakes of any size.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/7800/Serpentine (20161029).a78"
}
},
{
"title": "Slide Boy",
"longTitle": "Slide Boy in Mazeland",
"type": "7800",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/7800/slideboy-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/7800/slideboy-background.png",
"description": "Slide your way out of dangerous mazes, avoid the obstacles, activate some switches and exit each room before the time run out.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/7800/slideboyinmazeland_20210512.a78"
}
},
{
"title": "TiME Salvo",
"type": "7800",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/7800/timesalvo-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/7800/timesalvo-background.png",
"description": "The Time Traveler journeyed to the year 802,701 and discovered that humanity has split into two distinct species. Gentle humanoids called the Eloi are tended to as cattle by the other species - foul underground creatures called the Morlocks. In T:ME Salvo, you take control of the furious Time Traveler, in his futile effort to break the cycle.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/7800/TiME Salvo (20160910).a78"
}
}
]
},
{
"title": "Nintendo NES",
"longTitle": "Nintendo Entertainment System Games",
"background": "https://webrcade.github.io/webrcade-default-feed/images/nes-background.png",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/nes-thumb.png",
"description": "The Nintendo Entertainment System (NES) is an 8-bit third-generation home video game console produced by Nintendo. Nintendo first released it in Japan as the Family Computer, commonly known as the Famicom, in 1983. The NES, a remodelled version, was released internationally in the following years.",
"items": [
{
"title": "Alter Ego",
"type": "nes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/nes/alterego-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/nes/alterego-background.png",
"description": "You control a hero who has a phantom twin, his alter ego. When the hero moves, his alter ego moves in a mirrored fashion. In some levels the movements are mirrored horizontally, in others vertically. You can switch between the hero and his alter ego a limited number of times per level.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/nes/Alter_Ego.nes"
}
},
{
"title": "Battle Kid",
"longTitle": "Battle Kid: Fortress of Peril (Demo)",
"type": "nes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/nes/battlekid-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/nes/battlekid-background.png",
"description": "Battle Kid is very similar to I Wanna Be the Guy, an indie freeware game for the PC, in terms of the design of the main character and the projectile weapon he possesses, the trial-and-error difficulty, and instant death mechanics of all enemies and hazards. However, the similarities end here as the actual gameplay and control is much more in the likeness of Mega Man games on the NES and the boss fights at the end of each major stage.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/nes/BattleKid-Demo.nes"
}
},
{
"title": "Battle Kid 2",
"longTitle": "Battle Kid 2: Mountain of Torment (Demo)",
"type": "nes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/nes/battlekid2-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/nes/battlekid2-background.png",
"description": "The next phase of the vile group's plan has begun! The Supermech have have been destroyed, but that was only the beginning. You must venture through a giant mountain base and overcome its many dangers. Along the way, items will be found to allow access to new areas and grant you new abilities. An even bigger game than before awaits! Will the torment get to you?",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/nes/BattleKid2-NewDemo.nes"
}
},
{
"title": "Blade Buster",
"type": "nes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/nes/bladebuster-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/nes/bladebuster-background.png",
"description": "Blade Buster is a score attack shmup that comes with two game modes; two and five minutes, each ending with an epic boss battle.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/nes/BladeBuster.nes"
}
},
{
"title": "Driar",
"type": "nes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/nes/driar-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/nes/driar-background.png",
"description": "Driar is a platform-game for the Nintendo Entertainment System/Famicom written by Stefan Adolfsson and David Eriksson. Take control of Driar and collect all the stars on each level to progress. You can walk around the screen (if you exit the screen on the right side you will reappear on the left side). There are 38 levels in total.",
"props": {
"pal": true,
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/nes/Driar.nes"
}
},
{
"title": "Elite",
"type": "nes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/nes/elite-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/nes/elite-background.png",
"description": "Elite is a space trading video game. It was originally written and developed for the BBC Micro and Acorn Electron computers. Elite's open-ended game model and revolutionary 3D graphics earned it a place as a classic and a genre maker in gaming history.",
"props": {
"pal": true,
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/nes/elite.nes"
}
},
{
"title": "Lan Master",
"type": "nes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/nes/lanmaster-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/nes/lanmaster-background.png",
"description": "Your goal is to connect a set of computers with the provided fragments of wires. To accomplish this, you need to rotate the wires and computers appropriately within the alloted time limit.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/nes/Lan_Master.nes"
}
},
{
"title": "Lawn Mower",
"type": "nes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/nes/lawnmower-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/nes/lawnmower-background.png",
"description": "You control a lawn mower, with a goal of cutting ten lawns. The speed of the mower can be controlled by pressing a button. If you run out of fuel, the game is over.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/nes/Lawn_Mower.nes"
}
},
{
"title": "Legends of Owlia",
"longTitle": "The Legends of Owlia",
"type": "nes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/nes/owlia-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/nes/owlia-background.png",
"description": "The Legends of Owlia is Gradual Games' second release for the NES. It is an action-adventure game inspired by StarTropics, Crystalis, and the Legend of Zelda. Guide heroine Adlanniel and her owl friend Tyto to free the great owls and defeat Mermon king of the Mermen.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/nes/owlia.nes"
}
},
{
"title": "NES Virus Cleaner",
"type": "nes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/nes/nesvirus-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/nes/nesvirus-background.png",
"description": "In this game, you take on the role of a virus cleaning program, collecting bugs and avoiding hazards.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/nes/nes_virus_cleaner.nes"
}
},
{
"title": "Nomolos",
"longTitle": "Nomolos: Storming the Catsle",
"type": "nes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/nes/nomolos-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/nes/nomolos-background.png",
"description": "Guide Nomolos through 12 action packed levels and defeat 4 of Boulder's most fearsome henchmen before finally confronting the evil Hippo in her lair, the Catsle.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/nes/nomolos.nes"
}
},
{
"title": "PROTO DERE .NES",
"type": "nes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/nes/protodere-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/nes/protodere-background.png",
"description": "In ‘PROTO DERE .NES’, you play as a character trying to escape a burning underground mine. Use your athletic prowess to jump over fires and climb ladders to reach the exit.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/nes/PROTO DERE.NES"
}
},
{
"title": "Sir Ababol",
"type": "nes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/nes/sirababol-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/nes/sirababol-background.png",
"description": "Sir Ababol is a 2D platform game about Sir Ababol, a young crusader from Manchester City who lives in the 11th century. He witnesses the courage of St. George from Capadocia against the infidels and stumbles over a rock, falling into the Alcoraz River that carries him to the Monegros' Desert. When he wakes up he realizes he has lost his sword.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/nes/Sir Ababol (2013)(The Mojon Twins)[!].nes"
}
},
{
"title": "Streemerz",
"type": "nes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/nes/streemerz-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/nes/streemerz-background.png",
"description": "Try climbing to the top of this one by throwing streamers and climbing them. On your way up you better watch out for the various pie throwing clowns, burning candles, and bouncing balls.",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/nes/streemerz-v02.nes"
}
}
]
},
{
"title": "Nintendo SNES",
"longTitle": "Super Nintendo Games",
"background": "https://webrcade.github.io/webrcade-default-feed/images/snes-background.png",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/snes-thumb.png",
"description": "The SNES is Nintendo's second programmable home console, following the Nintendo Entertainment System (NES). The console introduced advanced graphics and sound capabilities compared with other systems at the time. The system was designed to accommodate the ongoing development of a variety of enhancement chips integrated into game cartridges to be competitive into the next generation.",
"items": [
{
"title": "Christmas Craze",
"description": "The first SNES homebrew game by RetroZone, Christmas Craze. Dodge aliens and grab gifts or fight your friends with snowballs in two player present picking battles.",
"type": "snes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/snes/christmascraze-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/snes/christmascraze-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/snes/Christmas_Craze.smc"
}
},
{
"title": "Gunman Clive",
"longTitle": "Gunman Clive (Demo)",
"description": "Gunman Clive is a platform game developed and published by Swedish indie video game development studio Hörberg Productions. The game follows a lone gunslinger in a futuristic Wild West as he tries to save the mayor's daughter from a group of technologically well-armed bandits.",
"type": "snes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/snes/gunmanclive-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/snes/gunmanclive-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/snes/GunmanClive.smc"
}
},
{
"title": "Jet Pilot Rising",
"description": "Jet Pilot Rising is a homebrew game created by Dieter Von Laser. The game itself is a one button affair. You guide a cat riding a rocket, collecting coins and avoiding enemies and obstacles.",
"type": "snes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/snes/jetpilotrising-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/snes/jetpilotrising-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/snes/Jet Pilot Rising (J) (V1.1).sfc"
}
},
{
"title": "MazezaM Challenge",
"description": "MazezaM Challenge (pronounced \"may-zam\") is a simple puzzle game based on MazezaM from Malcolm Tyrrell. You will have to go through 33 levels of mazes. You enter the maze on the left and you have to get to the exit on the right by pushing rows of blocks left and right.",
"type": "snes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/snes/mazezam-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/snes/mazezam-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/snes/MazezaM.sfc"
}
},
{
"title": "Rodas Cross",
"longTitle": "Rodas Cross (Demo)",
"description": "Demo release of an action-adventure game with RPG elements for the Super Nintendo developed by Kaffeeware.",
"type": "snes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/snes/rodascross-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/snes/rodascross-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/snes/rodas_cross_demo_v1_03.smc"
}
},
{
"title": "Skipp and Friends",
"description": "The object of the game is to move all three characters to the exit in each level. Each player has 2 limited special abilities that you may use to help advance through the level. The in-game status bar displays the name of each ability and how many times it can be used during that level.",
"type": "snes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/snes/skippandfriends-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/snes/skippandfriends-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/snes/SAF_hardware.smc"
}
},
{
"title": "Super Boss Gaiden",
"description": "The very last Nintendo PlayStation prototype has fallen in the hands of the public, and homebrew enthusiasts have already managed to fully emulate the system. Instead of calmly discussing the situation and planning out the proper legal counter action, the boss promptly switches to rampage mode and proceeds to punch, kick and throw everything in sight, including employees and PlayStation mascots.",
"type": "snes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/snes/superbossgaiden-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/snes/superbossgaiden-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/snes/Super Boss Gaiden (J) (V1.2).sfc"
}
},
{
"title": "REM",
"longTitle": "REM (Demo)",
"description": "A single level demo of an eery homebrew platform game for the Super Nintendo.",
"type": "snes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/snes/rem-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/snes/rem-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/snes/rem.sfc"
}
},
{
"title": "Uwol: Quest for Money",
"description": "Uwol enjoys a quiet retirement at his cozy house in the beach of Pepinoni (province of Badajoz), so he doesn’t realize that somebody has stolen all his money from the bank. Luckly, his good ol’ friend Meemaid, the evil sorceress-turned-super heroine learned about the incident as she was using the ATM in the very moment the bank was being robbed. That’s why they decide to head back over to the new and refurnished Storm Palace to regain the lost fortune.",
"type": "snes",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/snes/uwol-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/snes/uwol-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/snes/questformoney.sfc"
}
}
]
},
{
"title": "Nintendo Game Boy",
"longTitle": "Nintendo Game Boy Games",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gb-background.png",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gb-thumb.png",
"description": "The Game Boy is an 8-bit handheld game console developed and manufactured by Nintendo. The Game Boy was designed by Nintendo's chief engineer Gunpei Yokoi and its Nintendo R&D1 team.",
"items": [
{
"title": "Retroid",
"type": "gb",
"description": "\"Retroid\" is a Game Boy game based on the classic arcade game that was originally published as \"Breakout\" by Atari and later brought to perfection as \"Arkanoid\" by the Japanese software firm Taito. The player controls a paddle at the bottom of the screen that reflects a ball to destroy bricks at the top of the screen.",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gb/retroid-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gb/retroid-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gb/Retroid.gb",
"hwType": 3,
"colors": 1,
"palette": 1
}
},
{
"title": "Dangan",
"type": "gb",
"description": "Dangan GB is a short simplistic boss-rush/bullet-hell SHMUP released for the Game Boy to celebrate the console's 30th anniversary.",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gb/dangan-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gb/dangan-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gb/dangan.gb",
"hwType": 1
}
},
{
"title": "Tuff",
"type": "gb",
"description": "Tuff is an original game for Nintendo's black and white Game Boy, based on a mix of Jump'n'Run and Metroidvania style game elements.",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gb/tuff-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gb/tuff-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gb/tuff.gb",
"hwType": 1
}
},
{
"title": "Bouncing Ball",
"longTitle": "The Bouncing Ball",
"description": "In this game you are in control of a little ball, which is constantly bouncing around. Your goal is to bounce through all 50 unique levels by collecting every heart you can find on your way.",
"type": "gb",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gb/bouncingball-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gb/bouncingball-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gb/THEBOUNCINGBALL.GB",
"hwType": 3,
"colors": 1,
"palette": 1
}
},
{
"title": "Super Princess",
"type": "gb",
"description": "The evil Lord Zurrapa has stolen the kingdom's crown and now our Super Princess has to take it back! Unveil the secrets of the maze, kill all enemies and bring the glory back to the country!",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gb/superprincess-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gb/superprincess-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gb/SuperPrincess.gb",
"hwType": 3,
"colors": 1,
"palette": 1
}
},
{
"title": "Polka Sheep",
"type": "gb",
"description": "All the sheep of the flock have been captured in mysterious giant bubbles! Help Polka Sheep rescue his friends using his velcro powers! He can fasten himself to all velcro surfaces within the environments. Avoid hundreds of evil wolves, thousands of kawaii parrots and millions of poisoned spikes to liberate all your friends! It’s an epic fight to restore peace in the flock.",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gb/polkasheep-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gb/polkasheep-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gb/PolkaSheep.gb",
"hwType": 3,
"colors": 1,
"palette": 1
}
},
{
"title": "Into the Blue",
"description": "This game consists of a vertical play field with panels rising from the bottom. The panels can be rearranged and will disappear if three (or more) matching panels are lined up in a horizontal or vertical row. This game is inspired by the Sega Genesis title Megapanel.",
"type": "gb",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gb/intotheblue-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gb/intotheblue-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gb/Into%20the%20Blue.gb",
"hwType": 1
}
},
{
"title": "Rocket Man",
"longTitle": "Rocket Man (Demo) ",
"description": "Rocket man is a young aspiring hero with great passion for technology. One day he runs into Light, a villain with telekinetic powers who plans to take control of the city. Accompanied by his virtual assistant Ellie, Rocket Man must defeat Light and his robot henchmen to bring peace back to the city.",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gb/rocketman-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gb/rocketman-background.png",
"type": "gb",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gb/Rocket%20Man%20%28Demo%29%20v1.2.1.gb",
"hwType": 5,
"border": 1
}
},
{
"title": "Tobu Tobu Girl",
"type": "gb",
"description": "Your cat is floating into the atmosphere and you are the only one who can save it. Jump, dash, and flap your arms to maneuver around perilous obstacles racing against the clock to retrieve your pet friend before it is too late!",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gb/tobutobu-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gb/tobutobu-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gb/tobu.gb",
"hwType": 3,
"colors": 1,
"palette": 1
}
},
{
"title": "Lumberjack",
"description": "Lumberjack is a Game Boy homebrew where you help the world's most fragile lumberjack cut down an endless tree while avoiding getting killed by little owls, flimsy branches, or just standing still for too long.",
"type": "gb",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gb/lumberjack-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gb/lumberjack-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gb/ind-lj.gb",
"hwType": 3,
"colors": 1,
"palette": 1
}
}
]
},
{
"title": "Nintendo GBC",
"longTitle": "Nintendo Game Boy Color Games",
"description": "The Game Boy Color (commonly abbreviated as GBC) is a handheld game console, manufactured by Nintendo. It is the successor to the Game Boy and is part of the Game Boy family. The GBC features a color screen rather than monochrome, but it is not backlit. It is slightly thicker and taller and features a slightly smaller screen than the Game Boy Pocket, its immediate predecessor in the Game Boy line.",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gbc-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gbc-background.png",
"items": [
{
"title": "Space Invasion",
"description": "Space Invasion takes the classic alien invasion genre a step further with full color action, tons of levels, and a variety of aliens, each armed with a different weapon. It's up to you and your three shields to protect the earth.",
"type": "gbc",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gbc/spaceinvasion-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gbc/spaceinvasion-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gbc/SpaceInvasion01.gb"
}
},
{
"title": "µCity",
"description": " µCity (also spelled 'uCity', pronounced 'micro-city'), the open-source city-building game for Game Boy Color. The aim of the game is to build a city. Simple enough.",
"type": "gbc",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gbc/ucity-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gbc/ucity-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gbc/ucity.gbc"
}
},
{
"title": "Spelunky",
"description": "An attempt to demake Spelunky 2 for the Game Boy Color. In Spelunky players journey deep underground and explore amazing places filled with traps, treasure, and secrets.",
"type": "gbc",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gbc/spelunky-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gbc/spelunky-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gbc/GBCspelunky.gbc"
}
},
{
"title": "Infinity",
"longTitle": "Infinity (Preview)",
"description": "Infinity is a role-playing game for the Game Boy Color handheld game console, developed by Affinix Software primarily between the years 1999 and 2001. The game is incomplete and should be considered alpha/preview quality. In 2021, development on the game resumed and will hopefully see a commercial release soon.",
"type": "gbc",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gbc/infinity-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gbc/infinity-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gbc/infinity.gb"
}
},
{
"title": "Floracy",
"longTitle": "Floracy (Demo)",
"description": "\"Floracy\" is a roleplaying game with elements of strategy and action games, in which the player breeds plantlike creatures for exciting animated combats. Felix, hero of the video game \"Felix und die Rache der Null\", spends his time growing plants on his farm, which will develop into creatures after a while, the Floracy.",
"type": "gbc",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gbc/florancy-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gbc/florancy-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gbc/Floracy.GBC"
}
},
{
"title": "Super JetPak DX",
"description": "Your Astronaut is lost out at the furthest edges of an alien galaxy. Help him return home by deftly maneuvering over each planet's surface with your jet pack. Build the rocket ship, fuel it, and take off to the next planet.",
"type": "gbc",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gbc/jetpak-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gbc/jetpak-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gbc/JetPakDX.gb"
}
},
{
"title": "Last Crown Warriors",
"longTitle": "Last Crown Warriors (Demo)",
"description": "Action/strategy game for the Nintendo Game Boy. Take on waves of enemies as you try to conquer all of the bases within each stage. Each warrior has his own custom weapon, and each stage its own enemies.",
"type": "gbc",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gbc/lastcrown-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gbc/lastcrown-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gbc/Last%20Crown%20Warriors%20(Demo)%202.1.1.gb"
}
}
]
},
{
"title": "Nintendo GBA",
"longTitle": "Nintendo Game Boy Advance Games",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gba-background.png",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gba-thumb.png",
"description": "The Game Boy Advance (GBA) is a 32-bit handheld game console developed, manufactured and marketed by Nintendo as the successor to the Game Boy Color. Contrary to the previous Game Boy models, which have the \"portrait\" form factor of the original Game Boy, the Game Boy Advance was designed in a \"landscape\" form factor, putting the buttons to the sides of the device instead of below the screen.",
"items": [
{
"title": "Anguna",
"description": "A top-down fantasy action-adventure game, with 5 dungeons to explore. Anguna is a homebrew game for Gameboy Advance and Nintendo DS, featuring art by Chris Hildenbrand.",
"type": "gba",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gba/anguna-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gba/anguna-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gba/anguna.gba",
"saveType": 2,
"flashSize": 65536
}
},
{
"title": "Another World",
"description": "Another World, known as Out of This World in North America, is a 1991 cinematic platformer action-adventure game designed by Éric Chahi and published by Delphine Software. The game tells a story of Lester, a young scientist who, as a result of an experiment gone wrong, finds himself on a dangerous alien world where he is forced to fight for his survival.",
"type": "gba",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gba/anotherworld-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gba/anotherworld-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gba/Another_world.gba",
"saveType": 2,
"flashSize": 65536
}
},
{
"title": "Astrohawk Advance",
"longTitle": "Astrohawk Advance (Demo)",
"description": "Demo of an in-progress space shooter originally for the Super Nintendo. Demo features music & sound, bombs, ground-based enemies, alternating sectors, difficulty levels and high scores.",
"type": "gba",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gba/astrohawk-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gba/astrohawk-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gba/ahawk.bin"
}
},
{
"title": "Blast Arena Advance",
"description": "The objective of Blast Arena Advance is to collect as many jittering yellow squares as possible, while avoiding the shrapnel thrown out by the explosions. Using your cunning and skill, ricochet the cursor against the walls of your Game Boy to outwit and evade the deadly shrapnel.",
"type": "gba",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gba/blastarena-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gba/blastarena-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gba/BlastArenaAdvance_Mathew_Carr.gba",
"saveType": 2,
"flashSize": 65536
}
},
{
"title": "Flappy Bird",
"description": "Flappy Bird GBA is a port of the insanely popular mobile game Flappy Bird. The developer wanted to make Flappy Bird for GBA as close to the original as possible. He achieved this by making the game operate in portrait mode, meaning the console must to be tilted sideways to be played.",
"type": "gba",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gba/flappybird-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gba/flappybird-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gba/flappybird.gba",
"rotation": 270,
"saveType": 2,
"flashSize": 65536
}
},
{
"title": "LOCKJAW",
"longTitle": "LOCKJAW: The Overdose",
"description": "Lockjaw: The Overdose (abbreviated TOD) is a freeware Tetris clone for the Game Boy Advance by Damian Yerrick. At first, the gameplay of this clone isn't different from other Tetris clones. But after playing for a while, the playfield starts shaking and distorting along with the music, hence the name.",
"type": "gba",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gba/tod-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gba/tod-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gba/tod.gba"
}
},
{
"title": "MazezaM Challenge",
"description": "MazezaM Challenge (pronounced \"may-zam\") is a simple puzzle game based on MazezaM from Malcolm Tyrrell. You will have to go through 33 levels of mazes. You enter the maze on the left and you have to get to the exit on the right by pushing rows of blocks left and right.",
"type": "gba",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gba/mazezam-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gba/mazezam-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gba/MazezaM.gba"
}
},
{
"title": "Motocross Challenge",
"description": "The gameplay in Motocross Challenge is very similar to that of Excitebike. Players race on a track made up of different track pieces. There are gas and boost buttons. Boosting will drain the boost meter. Using normal gas replenishes the meter.",
"type": "gba",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gba/motocrosschallenge-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gba/motocrosschallenge-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gba/Motocross Challenge (USA) (Proto).gba"
}
},
{
"title": "POWDER",
"description": "POWDER is a roguelike developed specifically for the Gameboy Advance. Descend into the depths of the dungeon until you reach the foul daemon known as \"He who the author cannot spell consistently\", or, Baezl'bub. When you have slain Baezl'bub in heroic combat, or, if Baezl'bub dies in any way, retrieve his black heart and bring it to the surface world.",
"type": "gba",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gba/powder-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gba/powder-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gba/powder117.gba",
"saveType": 2,
"flashSize": 65536
}
},
{
"title": "Power Pig",
"description": "You play as a pig armed with a gravity gun that allows you to carry anything on your shoulders. This gravity gun is powered by coins you collect throughout the levels.",
"type": "gba",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gba/powerpig-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gba/powerpig-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gba/powerpig.gba"
}
},
{
"title": "Simonchu",
"description": "An evil villain tries to conquer Simonchu Land, and has sent his hordes of monsters to terrify the little animals that live there peacefully. Simonchu, the hamster, must not allow that to happen.",
"type": "gba",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gba/simonchu-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gba/simonchu-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gba/simonchu.gba"
}
},
{
"title": "Super Wings",
"description": "Programmer Mukunda \"eKid\" Johnson created this polished GBA shoot'em up specifically for a PDRoms' coding competition that was constrained to child-friendly games using a maximum of four colors.",
"type": "gba",
"thumbnail": "https://webrcade.github.io/webrcade-default-feed/images/gba/superwings-thumb.png",
"background": "https://webrcade.github.io/webrcade-default-feed/images/gba/superwings-background.png",
"props": {
"rom": "https://raw.githubusercontent.com/webrcade/webrcade-default-feed/main/content/gba/SuperWings.gba"
}
},
{