-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathgamedb.yaml
7051 lines (5961 loc) · 185 KB
/
gamedb.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- name: "1 Screen Platformer"
platform: steam
id: 791180
status: verified
# Native version doesn't support steam achievements
- name: "12 is Better Than 6"
platform: steam
id: 410110
compat_tool: proton-stable
status: playable
notes:
- Controller needs to be enabled in the game
- name: "140"
platform: steam
id: 242820
status: verified
store: humble:140
- name: "198X"
platform: steam
id: 1086010
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/7b42e2bdd7970b25e929cfd12c64f23c.png
logo: https://cdn2.steamgriddb.com/file/sgdb-cdn/logo/e1c1c18c55ad8fad38e352a95bf4192e.png
compat_tool: proton-stable
status: verified
- name: "2064: Read Only Memories"
platform: epic-store
id: f4e0c1dff48749fa9145c1585699e276
banner: steam:330820
compat_tool: proton-stable
status: verified
- name: "20XX"
platform: epic-store
id: Quail
banner: steam:322110
status: unsupported
- name: "The 39 Steps"
platform: steam
id: 234940
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/72b06526c9563289847a9be2d9b33336.png
- name: "Absolute Drift"
platform: epic-store
id: 19927295d6e3467887d4e830d8c85963
banner: steam:320140
status: verified
- name: "Absolute Drift"
platform: gog
id: 1136126792
banner: steam:320140
status: verified
- name: "ABZU"
platform: epic-store
id: Curry
banner: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/33e8dc3b7581c60b4a0d05dc7d57ca6d.png
status: verified
- name: "ACE COMBAT 7: SKIES UNKNOWN"
platform: steam
id: 502500
status: verified
store: humble:ace-combat-7-skies-unknown
compat_tool: proton-stable
- name: "Action Henk"
platform: steam
id: 285820
status: verified
store: humble:action-henk
launch_options: LD_LIBRARY_PATH= %command%
steam_input: enabled
- name: "Adios"
platform: epic-store
id: 73c56a1f38a548b2852ce8608c5e436e
banner: steam:1271400
status: unsupported
- name: "Aegis Defenders"
platform: steam
id: 371140
status: verified
store: humble:aegis-defenders
- name: "AER Memories of Old"
platform: epic-store
id: 26b63c46de9e4dcc856b3c6b106b6777
banner: steam:331870
status: unsupported
# fix black screen in native version
- name: "AER Memories of Old"
platform: steam
id: 331870
launch_options: '%command% -screen-fullscreen 0'
- name: "Against All Odds"
platform: epic-store
id: ad8aff099d2a445599f9797a24e9ff93
banner: steam:1465560
status: unsupported
- name: "Air Conflicts: Pacific Carriers"
platform: steam
id: 214910
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/450b97a48568c3118ff397f73abe4e4a.png
- name: "Alan Wake"
platform: epic-store
id: Heron
banner: steam:108710
status: unsupported
- name: "Alan Wake"
platform: steam
id: 108710
compat_tool: proton-stable
launch_options: WINEDLLOVERRIDES="xaudio2_7=native,builtin" %command%
- name: "Alba - A Wildlife Adventure"
platform: epic-store
id: 8a0173bbe3ac48ac903f5bc7277e7b4e
banner: steam:1337010
compat_tool: proton-stable
status: verified
- name: "Alien: Isolation"
platform: epic-store
id: 8935bb3e1420443a9789fe01758039a5
banner: steam:214490
status: verified
- name: "Alien: Isolation"
platform: steam
id: 214490
status: verified
store: humble:alien-isolation
- name: "Alpha Kimori Episode One"
platform: steam
id: 265870
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/9c70cb2f32394f12a8527ccb82da9942.png
background: https://cdn2.steamgriddb.com/file/sgdb-cdn/hero/0c22d45f31acf0f4192c8c12b7a55dee.png
logo: https://cdn2.steamgriddb.com/file/sgdb-cdn/logo/5a12243d83e5d4340291fd74318bffe2.png
- name: "The Alto Collection"
platform: epic-store
id: Hornbill
banner: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/763c4588edd1e9224afacb924a1ee160.png
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/99bec383f442456b15e91d19bfd8b379.png
status: unsupported
- name: "Alwa's Awakening"
platform: gog
id: 1396087560
banner: steam:549260
status: verified
- name: "AMID EVIL"
platform: steam
id: 673130
poster: https://cdn2.steamgriddb.com/grid/1ee799704c561645258fee3161779773.png
- name: "Amnesia: A Machine for Pigs"
platform: epic-store
id: d7db33dfe7634d6b8a188c708f2caa3c
banner: steam:239200
status: playable
notes:
- Uses a launcher
- No controller support
- name: "Amnesia: Rebirth"
platform: steam
id: 999220
status: verified
- name: "Amnesia: Rebirth"
platform: epic-store
id: f59de18db4dc445f88ffeff24d081234
banner: steam:999220
compat_tool: proton-stable
status: verified
- name: "Amnesia: The Dark Descent"
platform: epic-store
id: ece4c58603d04bcb97454be9a7492fa6
banner: steam:57300
status: playable
notes:
- Uses a launcher
- No controller support
- name: "Amnesia: The Dark Descent"
platform: steam
id: 57300
status: verified
store: humble:amnesia-the-dark-descent
- name: "Among the Sleep"
platform: steam
id: 250620
status: verified
store: humble:among-the-sleep
- name: "Among the Sleep - Enhanced Edition"
platform: epic-store
id: aa78f7be2ee64193b6b6444c5fc50157
banner: steam:250620
status: unsupported
- name: "Among Us"
platform: epic-store
id: 963137e4c29d4c79a81323b8fab03a40
banner: steam:945360
status: unsupported
- name: "Ancestors Legacy"
platform: steam
id: 620590
status: verified
store: humble:ancestors-legacy
- name: "Ancient Enemy"
platform: epic-store
id: a96de508ac71471fa05e7c1c695e3b5d
banner: steam:993790
status: unsupported
- name: "Ancient Enemy"
platform: gog
id: 1751965389
banner: steam:993790
status: unsupported
- name: "And Yet It Moves"
platform: steam
id: 18700
poster: https://cdn2.steamgriddb.com/grid/2c8672aac7553ab0e242888309515646.png
- name: "Anode"
platform: steam
id: 401120
status: verified
steam_input: enabled
- name: "Anodyne 2: Return to Dust"
platform: epic-store
id: Tanzanite
banner: steam:877810
status: verified
- name: "Antichamber"
platform: steam
id: 219890
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/0395b98de9a261e0dbc630e72b6bf183.png
- name: "APE OUT"
platform: epic-store
id: Coley
banner: steam:447150
status: verified
- name: "Aquaria"
platform: steam
id: 24420
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/c881b9a54d4eb04a01da953f05b19df1.png
background: https://cdn2.steamgriddb.com/file/sgdb-cdn/hero/c92a10324374fac681719d63979d00fe.jpg
logo: https://cdn2.steamgriddb.com/file/sgdb-cdn/logo/883e881bb4d22a7add958f2d6b052c9f.png
# native version doesn't play cut scenes
- name: "Aragami"
platform: steam
id: 280160
compat_tool: proton-stable
- name: "Arcade Classics Anniversary Collection"
platform: steam
id: 1018000
poster: https://cdn2.steamgriddb.com/grid/9416ee6f8b80c68e03265d13fb136a49.png
- name: "ARCADE GAME SERIES: DIG DUG"
platform: steam
id: 403400
poster: https://cdn2.steamgriddb.com/grid/7cb34c0383f7794851a539ae3ac9ea65.png
- name: "ARCADE GAME SERIES: GALAGA"
platform: steam
id: 403430
poster: https://cdn2.steamgriddb.com/grid/957d69a77e6adaf780ee179303385a72.png
- name: "ARCADE GAME SERIES: Ms. PAC-MAN"
platform: steam
id: 403410
poster: https://cdn2.steamgriddb.com/grid/a5659e43487df698265cc0f6c221b84c.png
- name: "ARCADE GAME SERIES: PAC-MAN"
platform: steam
id: 394160
poster: https://cdn2.steamgriddb.com/grid/1ff28419ba8f9066fa5f8de46f4e2976.png
- name: "A.R.E.S."
platform: steam
id: 92300
poster: https://cdn2.steamgriddb.com/grid/b9824e30cdd549d8a5d1ec681a91e378.png
- name: "Aritana and the Harpy's Feather"
platform: steam
id: 314360
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/1960f728c26175c4b3ccfac49a2679cf.png
background: https://cdn2.steamgriddb.com/file/sgdb-cdn/hero/e6dbc8adead86fe2fcc18a8682c1ec7e.png
logo: https://cdn2.steamgriddb.com/file/sgdb-cdn/logo/7b7324f8841c5f9a929c7c3a3cb60391.png
- name: "Ark: Survival Evolved"
platform: epic-store
id: aafc587fbf654758802c8e41e4fb3255
banner: steam:346110
status: unsupported
- name: "ARK: Survival Of The Fittest"
platform: steam
id: 407530
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/934b9dca01de63374a93d5436ca7cd32.jpg
background: https://cdn2.steamgriddb.com/file/sgdb-cdn/hero/5c469784eafc2ded9338dedda197db25.png
logo: https://cdn2.steamgriddb.com/file/sgdb-cdn/logo/e2f374c3418c50bc30d67d5f7454a5b4.png
- name: "ARMA: Cold War Assault"
platform: gog
id: 1207658661
banner: steam:65790
status: unsupported
- name: "Armagetron Advanced"
platform: flathub
id: org.armagetronad.ArmagetronAdvanced
banner: https://cdn2.steamgriddb.com/grid/988ff598513a313c79dc21f22e164a3b.png
poster: https://cdn2.steamgriddb.com/grid/0b1ef9f12fada942e4441fbbfbdca8b3.png
status: playable
- name: "ARMORED CORE VI FIRES OF RUBICON"
platform: steam
id: 1888160
status: verified
store: humble:armored-core-vi-fires-of-rubicon
- name: "art of rally"
platform: epic-store
id: 01805192c8074820b1257fcfd97f2648
banner: steam:550320
compat_tool: proton-stable
status: playable
notes:
- Message window on start-up ('Missing overlay DLL!') must be dismissed with mouse
- Foto mode requires mouse
- Rest of gameplay has full controller support
- name: "Assassin's Creed"
platform: steam
id: 15100
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/a5eb02f2e24db13fe5e4826cfd515b84.png
background: https://cdn2.steamgriddb.com/file/sgdb-cdn/hero/bd9e928c0f0fba89b5c8254bef1f9937.png
logo: https://cdn2.steamgriddb.com/file/sgdb-cdn/logo/1c336b8080f82bcc2cd2499b4c57261d.png
- name: "Assassin's Creed Revelations"
platform: steam
id: 201870
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/105fb0578a9e90c458f69bad63c38709.png
background: https://cdn2.steamgriddb.com/file/sgdb-cdn/hero/fd22a77ffd3cc179b3c1407d6ea0637b.jpg
logo: https://cdn2.steamgriddb.com/file/sgdb-cdn/logo/bf2fb7d1825a1df3ca308ad0bf48591e.png
- name: "Assault Android Cactus"
platform: steam
id: 250110
status: verified
store: humble:assault-android-cactus
- name: "Atari Vault"
platform: steam
id: 400020
status: verified
store: humble:atari-vault
- name: "Atom Zombie Smasher"
platform: steam
id: 55040
poster: https://cdn2.steamgriddb.com/grid/6c5bbaa133d30e1df4ac9ee7d0612f20.png
- name: "Atomicrops"
platform: steam
id: 757320
status: verified
store: humble:atomicrops
- name: "Auto Chess"
platform: epic-store
id: Chicken
banner: steam:1530300
status: unsupported
- name: "Automachef"
platform: steam
id: 984800
status: verified
store: humble:automachef
- name: "Automachef"
platform: epic-store
id: 069a60f6b0514a5fbe81b38957c1ddfd
banner: steam:984800
compat_tool: proton-stable
status: verified
- name: "Automobilista"
platform: steam
id: 431600
poster: https://cdn2.steamgriddb.com/grid/004cbc35eed8995456a63ec720fe63c7.png
- name: "Aven Colony"
platform: epic-store
id: dc07b9ead8214591b8df6d2546d2a0e3
banner: steam:484900
compat_tool: proton-stable
status: playable
notes:
- No controller support
- name: "Axiom Verge"
platform: steam
id: 332200
status: verified
store: humble:axiom-verge
- name: "Bad Hotel"
platform: steam
id: 231720
poster: https://cdn2.steamgriddb.com/grid/edfa0dea401c63103b072fd358c1d702.png
- name: "Bad North: Jotunn Edition"
platform: epic-store
id: Chives
banner: steam:688420
status: verified
- name: "Bad North: Jotunn Edition"
platform: steam
id: 688420
status: verified
store: humble:bad-north-jotunn-edition
# SteamDeck=0 to fix inability to trigger split-screen mode. --skip-launcher to maintain console compatibility
- name: "Baldur's Gate 3"
platform: steam
id: 1086940
launch_options: SteamDeck=0 %command% --skip-launcher
# native version has controller issues
- name: "Ballistic Tanks"
platform: steam
id: 493060
compat_tool: proton-stable
status: verified
store: humble:ballistic-tanks
- name: "Barony"
platform: epic-store
id: c98c4cd6d83a4524b4b22f13af95a104
banner: steam:371970
status: unsupported
- name: "Basingstoke"
platform: steam
id: 336940
status: verified
store: humble:basingstoke
- name: "Bastion"
platform: steam
id: 107100
status: verified
store: humble:bastion
- name: "Batman: Arkham Asylum Game of the Year Edition"
platform: steam
id: 35140
compat_tool: GE-Proton7-55
- name: "Batman: Arkham Origins"
platform: steam
id: 209000
status: verified
store: humble:batman-arkham-origins
- name: "Battle Breakers"
platform: epic-store
id: WorldExplorersLive
banner: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/ef652e54969dd661422f75e809bc118c.png
status: unsupported
- name: "Battle Chasers: Nightwar"
platform: steam
id: 451020
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/ff84eeace059e44588c3bd6c6ef0f399.png
status: verified
store: humble:battle-chasers-nightwar
- name: "Battle Riders"
platform: steam
id: 418060
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/077eb87be8f6ea0f644a0051afb10678.png
background: https://cdn2.steamgriddb.com/file/sgdb-cdn/hero/3b5f657f49a25ad6dae77d4e048d1003.png
logo: https://cdn2.steamgriddb.com/file/sgdb-cdn/logo/b83210dd590047ee38c4660f1f6060e5.png
# native version crashes on startup with AMD GPUs
- name: "BattleBlock Theater"
platform: steam
id: 238460
status: verified
compat_tool: proton-stable
- name: "Battleplan: American Civil War"
platform: steam
id: 285130
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/6e9365004b6395b837cbc0515b726caf.jpg
background: https://cdn2.steamgriddb.com/file/sgdb-cdn/hero/5624e6ca4bb96789d1a7658ac27895d1.png
logo: https://cdn2.steamgriddb.com/file/sgdb-cdn/logo/ac9768a5017d092a06f8b8b1fc28c20c.png
- name: "Bayonetta"
platform: steam
id: 460790
status: verified
store: humble:bayonetta
- name: "The Beast Inside"
platform: gog
id: 1341028548
banner: steam:792300
status: playable
notes:
- No controller support
- name: "BEAUTIFUL DESOLATION"
platform: gog
id: 1295420179
banner: steam:912570
status: playable
notes:
- No controller support
- name: "Beholder 2"
platform: gog
id: 1451215361
banner: steam:761620
status: verified
- name: "Betrayer"
platform: gog
id: 1090734724
banner: steam:243120
poster: https://cdn2.steamgriddb.com/grid/9fc497b1718cabc904e5af82c57bae53.png
background: https://cdn2.steamgriddb.com/hero/69a4241986721658eb6237d56c1b8abc.jpg
logo: https://cdn2.steamgriddb.com/logo/1145a30ff80745b56fb0cecf65305017.png
icon: https://cdn2.steamgriddb.com/icon/60c43e386965167ba97045a1fe957626.png
compat_tool: proton-stable
status: playable
notes:
- Displays keyboard icons
- name: "Beyond Blue"
platform: epic-store
id: 3a0cae9455844390ad00505a704d641e
banner: steam:883360
launch_options: ln -s 'Beyond Blue.exe' BeyondBlue.exe; ln -s 'Beyond Blue_Data' BeyondBlue_Data; eval $( echo "%command%" | sed "s/Beyond Blue.exe'.*/BeyondBlue.exe'/„ )
status: verified
- name: "Beyond Good & Evil"
platform: steam
id: 15130
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/9599bdab29c403b39cf3df8634b11b63.jpg
- name: "Beyond: Two Souls"
platform: steam
id: 960990
compat_tool: proton-stable
status: verified
- name: "Bezier"
platform: steam
id: 381320
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/cad8a995edf56073bf7f693deccb0685.png
background: https://cdn2.steamgriddb.com/file/sgdb-cdn/hero/ec4de54f2f3afa14175e5eabfc16ce1f.png
logo: https://cdn2.steamgriddb.com/file/sgdb-cdn/logo/6dc4166c5aa3123f245a786381d0eb9c.png
# needs logo
- name: "Biology Battle"
platform: steam
id: 335080
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/83ac8b4d3275014fb480cf49c2a855c0.png
background: https://cdn2.steamgriddb.com/file/sgdb-cdn/hero/3c4dbca5fa732d03efb4b0a88a837b29.png
- name: "Bionic Dues"
platform: steam
id: 238910
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/3e3218bd33c9b0f06b2887aafce565df.png
- name: "Birdsketball"
platform: steam
id: 470470
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/5efffd79ee6208229036f4ecaa306075.png
status: verified
- name: "Bit Blaster XL"
platform: steam
id: 433950
status: verified
store: humble:bit-blaster-xl
- name: "BIT.TRIP BEAT"
platform: steam
id: 63700
compat_tool: GE-Proton7-55
# native version has controller issues
- name: "BIT.TRIP Presents... Runner2: Future Legend of Rhythm Alien"
platform: steam
id: 218060
status: verified
store: humble:bittrip-presents-runner2-future-legend-of-rhythm-alien
compat_tool: proton-stable
- name: "BIT.TRIP RUNNER"
platform: steam
id: 63710
compat_tool: proton-stable
patch_dir: BIT.TRIP RUNNER
patches:
- exec: rm -f installscript.vdf
- name: "Black Book"
platform: epic-store
id: 1d74dcbca79540efb52cab2ff026215f
banner: steam:1138660
status: unsupported
- name: "Black Widow: Recharged"
platform: epic-store
id: a21fd90517bf428eb7c995a8c3261722
banner: steam:1714180
status: unsupported
- name: "BLACKHOLE"
platform: steam
id: 322680
status: verified
store: humble:blackhole
- name: "Blacksad: Under the Skin"
platform: gog
id: 1772238447
banner: steam:1003890
status: verified
- name: "Blair Witch"
platform: epic-store
id: 247a0f0f5803429eb3be2c06f3ea77ff
banner: steam:1092660
compat_tool: proton-stable
status: verified
- name: "Blasphemous"
platform: steam
id: 774361
status: verified
store: humble:blasphemous
steam_input: enabled
- name: "BlazeRush"
platform: steam
id: 302710
status: verified
store: humble:blazerush
- name: "Blazing Sails"
platform: epic-store
id: ed5f5b7f2e1f43c89ea8bafd15591bda
banner: steam:1158940
compat_tool: proton-stable
status: playable
notes:
- Limited controller support
- name: "Blockstorm"
platform: steam
id: 263060
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/107fce5988735e531cae0da812db9a62.png
background: https://cdn2.steamgriddb.com/file/sgdb-cdn/hero/a4939072217b46203c4f5764cb4dac40.jpg
logo: https://cdn2.steamgriddb.com/file/sgdb-cdn/logo/1f150b5bb708ed3c5bc048e673208672.png
- name: "Bloodstained: Ritual of the Night"
platform: steam
id: 692850
status: verified
store: humble:bloodstained-ritual-of-the-night
- name: "Bloons TD 6"
platform: steam
id: 960090
compat_tool: proton-stable
status: playable
notes:
- No controller support
- name: "Bloons TD 6"
platform: epic-store
id: 7786b355a13b47a6b3915335117cd0b2
banner: steam:960090
compat_tool: proton-stable
status: playable
notes:
- No controller support
- name: "Bomb Defense"
platform: steam
id: 656680
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/96113cc06ed225c5dd3dbbba2bed9330.png
background: https://cdn2.steamgriddb.com/file/sgdb-cdn/hero/a3209347dfea2ac488fc4595df350a9a.png
logo: https://cdn2.steamgriddb.com/file/sgdb-cdn/logo/282bb8a7afdb969e5ac8e1848f741d9a.png
- name: "Book of Demons"
platform: steam
id: 449960
status: verified
store: humble:book-of-demons
- name: "Boomerang Fu"
platform: steam
id: 965680
status: verified
store: humble:boomerang-fu
- name: "Borderlands 2"
platform: steam
id: 49520
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/9cbe9648489f5179555dd1e231476bde.png
- name: "Borderlands 2"
platform: epic-store
id: Dodo
banner: steam:49520
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/9cbe9648489f5179555dd1e231476bde.png
launch_options: -nolauncher
status: verified
- name: "Borderlands 3"
platform: epic-store
id: Catnip
banner: steam:397540
compat_tool: proton-stable
status: verified
- name: "Borderlands: The Pre-Sequel"
platform: epic-store
id: Turkey
banner: steam:261640
launch_options: -nolauncher
status: verified
- name: "Boreal Blade"
platform: steam
id: 598780
status: verified
# native version does not recognize controllers
- name: "Bot Vice"
platform: steam
id: 491040
status: verified
compat_tool: proton-stable
- name: "Box: The Game"
platform: steam
id: 879850
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/d0a3473e3d1e0b3758a82a9dab5327d0.png
background: https://cdn2.steamgriddb.com/file/sgdb-cdn/hero/05e41bc57a80ca4bbef3c523cc0d40d9.png
logo: https://cdn2.steamgriddb.com/file/sgdb-cdn/logo/2f601bfe0cde0094470c1add322af541.png
- name: "Braid"
platform: steam
id: 26800
status: verified
store: humble:braid
- name: "Braid Anniversary Edition"
platform: steam
id: 499180
status: verified
store: humble:braid-anniversary-edition
- name: "Brawlhalla"
platform: steam
id: 291550
status: verified
- name: "Breach & Clear"
platform: steam
id: 266130
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/4dd472bdb30a606e5306342fa82246f8.png
- name: "Breath of Death VII"
platform: steam
id: 107300
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/65d30ce7ebeb224fbdafebfb0c1fae4f.png
- name: "Breathedge"
platform: epic-store
id: 0a20ccd3f1b3464da750a4dbf8c80d7c
banner: steam:738520
status: unsupported
- name: "The Bridge"
platform: epic-store
id: Sunbird
banner: steam:204240
status: verified
- name: "Bridge Constructor: The Walking Dead"
platform: epic-store
id: 998af0ab527c493baefb8049250c9a0e
banner: steam:1336120
compat_tool: proton-stable
status: verified
- name: "Brigador: Up-Armored Edition"
platform: gog
id: 1356485086
banner: steam:274500
status: playable
notes:
- Displays keyboard icons
- name: "Bro Falls: Ultimate Showdown"
platform: steam
id: 1590320
status: verified
- name: "Broken Age"
platform: steam
id: 232790
status: verified
store: humble:broken-age
- name: "Broken Sword 2 - the Smoking Mirror: Remastered"
platform: steam
id: 33600
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/43829cbde6a6862b0f13133736da5c0c.png
- name: "Broken Sword: Director's Cut"
platform: steam
id: 57640
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/6871e7ecc0d05b7e8c849dcbbc92c9b8.png
- name: "Broken Sword: Director's Cut"
platform: gog
id: 1207658900
banner: steam:57640
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/6871e7ecc0d05b7e8c849dcbbc92c9b8.png
status: playable
notes:
- No controller support
- name: "Brothers - A Tale of Two Sons"
platform: epic-store
id: Tamarind
banner: steam:225080
status: verified
- name: "Brutal Legend"
platform: steam
id: 225260
status: verified
store: humble:brutal-legend
- name: "Bulletstorm"
platform: steam
id: 99810
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/8525d6d5e6d0b3c70790c9d45ec0f7d9.png
- name: "Butcher"
platform: gog
id: 1689871374
banner: steam:474210
status: playable
notes:
- Controller not working
- name: "B.U.T.T.O.N."
platform: steam
id: 92400
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/55b8db1a622cf24ddc99462f2444e226.png
- name: "Call of Duty: Black Ops - Multiplayer"
platform: steam
id: 42710
poster: https://cdn2.steamgriddb.com/grid/8359bc4376e89b729d92ddd9b8a53c46.png
- name: "Call of Duty: Modern Warfare 2 (2009) - Multiplayer"
platform: steam
id: 10190
poster: https://cdn2.steamgriddb.com/grid/114234b0d73c7887a1364b5c4405b29a.png
- name: "Call of Duty: Modern Warfare 3 (2011) - Multiplayer"
platform: steam
id: 42690
poster: https://cdn2.steamgriddb.com/grid/0e0033c73acf01c716d0d0785cf5683a.png
- name: "Call of Duty: United Offensive"
platform: steam
id: 2640
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/f9fb7c79045fc492a18b051150c2b269.png
background: https://cdn2.steamgriddb.com/file/sgdb-cdn/hero/3546ab441e56fa333f8b44b610d95691.jpg
logo: https://cdn2.steamgriddb.com/file/sgdb-cdn/logo/50c3d7614917b24303ee6a220679dab3.png
- name: "Call of Duty: WWII - Multiplayer"
platform: steam
id: 476620
poster: https://cdn2.steamgriddb.com/grid/40ce06f8aff01d15f97665a342933066.png
- name: "Call of the Sea"
platform: epic-store
id: 6278dd278d714aeb88239a423fa0f8be
banner: steam:1042490
compat_tool: proton-stable
status: playable
notes:
- "Can't conect to EPIC services, hence no achievements possible"
- name: "Canabalt"
platform: steam
id: 358960
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/0ad61421999b551a73c65aa7b140ff03.png
- name: "Cannon Brawl"
platform: steam
id: 230860
status: verified
store: humble:cannon-brawl
- name: "Car Mechanic Simulator 2018"
platform: epic-store
id: 8032b75cf0914afa87c78d6914adc165
banner: steam:645630
compat_tool: proton-stable
status: playable
notes:
- Limited controller support
# native version has controller issues
- name: "Cassette Beasts"
platform: steam
id: 1321440
compat_tool: proton-stable
- name: "Castle Crashers"
platform: steam
id: 204360
status: verified
- name: "Castle of no Escape 2"
platform: steam
id: 542350
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/e41415343bc2a455161dfe7d19386d0f.png
background: https://cdn2.steamgriddb.com/file/sgdb-cdn/hero/0f304eddb4ad6007a3093fd6d963a1d2.png
logo: https://cdn2.steamgriddb.com/file/sgdb-cdn/logo/34609bdc08a07ace4e1526bbb1777673.png
- name: "Castlevania Advance Collection"
platform: steam
id: 1552550
status: verified
store: humble:castlevania-advance-collection
- name: "Castlevania Anniversary Collection"
platform: steam
id: 1018010
poster: https://cdn2.steamgriddb.com/grid/ce63297260f8266fabf1f978049c306c.png
- name: "Cataegis : The White Wind"
platform: steam
id: 344130
poster: https://cdn2.steamgriddb.com/file/sgdb-cdn/grid/61f904fcab3a88ffe4d319eea75f0a7b.png
background: https://cdn2.steamgriddb.com/file/sgdb-cdn/hero/7e448ed9dd44e6e22442dac8e21856ae.jpg
logo: https://cdn2.steamgriddb.com/file/sgdb-cdn/logo/288cc0ff022877bd3df94bc9360b9c5d.png
- name: "Cave Story+"
platform: steam