forked from dyang886/Game-Save-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame_saves.py
4044 lines (4044 loc) · 111 KB
/
game_saves.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
games = [
{
"en_US": "20 Small Mazes",
"zh_CN": "20 Small Mazes",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Roaming/Godot/app_userdata/20 Small Mazes/Saves",
"files": "all"
}
]
},
{
"en_US": "64.0",
"zh_CN": "64.0",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/LocalLow/rebelrabbit/64_0",
"files": "all"
}
]
},
{
"en_US": "A Dance of Fire and Ice",
"zh_CN": "冰与火之舞",
"steam_id": 977950,
"save_paths": [
{
"save_loc": "Windows",
"root_path": "{steam_library_path}/A Dance of Fire and Ice/User",
"files": "all"
}
]
},
{
"en_US": "A Plague Tale: Innocence",
"zh_CN": "瘟疫传说:无罪",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/752590/remote",
"files": "all"
}
]
},
{
"en_US": "A Plague Tale: Requiem",
"zh_CN": "瘟疫传说:安魂曲",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/1182900/remote",
"files": "all"
}
]
},
{
"en_US": "A Way Out",
"zh_CN": "逃出生天",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/Documents/My Games/A Way Out/Saves",
"files": "all"
}
]
},
{
"en_US": "Abzû",
"zh_CN": "智慧之海",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Local/AbzuGame/Saved/SaveGames",
"files": "all"
}
]
},
{
"en_US": "AI*Shoujo",
"zh_CN": "AI*少女",
"steam_id": 1250650,
"save_paths": [
{
"save_loc": "Windows",
"root_path": "{steam_library_path}/AI-Shoujo/UserData/save",
"files": "all"
}
]
},
{
"en_US": "Alba: A Wildlife Adventure",
"zh_CN": "阿尔芭:野生动物冒险",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/LocalLow/ustwo games/Alba/SaveFiles",
"files": "all"
}
]
},
{
"en_US": "Angry Birds Space",
"zh_CN": "愤怒的小鸟太空",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/210550/remote",
"files": "all"
}
]
},
{
"en_US": "Anno 1800",
"zh_CN": "纪元1800",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/Documents/Anno 1800/accounts",
"files": "all"
}
]
},
{
"en_US": "Arrow a Row",
"zh_CN": "箭箭剑",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/LocalLow/Lonerangerix/Arrow a Row",
"files": "all"
}
]
},
{
"en_US": "Assassin's Creed Odyssey",
"zh_CN": "刺客信条:奥德赛",
"save_paths": [
{
"save_loc": "Ubisoft",
"root_path": "{ubisoft_path}/savegames/{user_id}/5092",
"files": "all"
}
]
},
{
"en_US": "Assassin's Creed Origins",
"zh_CN": "刺客信条:起源",
"save_paths": [
{
"save_loc": "Ubisoft",
"root_path": "{ubisoft_path}/savegames/{user_id}/4923",
"files": "all"
}
]
},
{
"en_US": "Assassin's Creed Valhalla",
"zh_CN": "刺客信条:英灵殿",
"save_paths": [
{
"save_loc": "Ubisoft",
"root_path": "{ubisoft_path}/savegames/{user_id}/7013",
"files": "all"
}
]
},
{
"en_US": "Asterigos: Curse of the Stars",
"zh_CN": "失落迷城:群星的诅咒",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/Saved Games/AcmeGS/Asterigos/Saved/SaveGames",
"files": "all"
}
]
},
{
"en_US": "Astroneer",
"zh_CN": "星际工程师",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Local/Astro/Saved/SaveGames",
"files": "all"
}
]
},
{
"en_US": "Atomic Heart",
"zh_CN": "原子之心",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Local/AtomicHeart/Saved/SaveGames",
"files": "all"
}
]
},
{
"en_US": "Avicii Invector",
"zh_CN": "Avicii Invector",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/LocalLow/Hello There Games/AVICII Invector",
"files": "all"
}
]
},
{
"en_US": "Baba Is You",
"zh_CN": "Baba 是你",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Roaming/Baba_Is_You",
"files": "all"
}
]
},
{
"en_US": "Bad North",
"zh_CN": "残酷北方",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/688420/remote",
"files": "all"
}
]
},
{
"en_US": "Badland: Game of the Year Edition",
"zh_CN": "破碎大陆:年度版",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Roaming/BADLAND/data",
"files": "all"
}
]
},
{
"en_US": "Baldur's Gate 3",
"zh_CN": "博德之门3",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/1086940/remote",
"files": "all"
},
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Local/Larian Studios/Baldur's Gate 3/PlayerProfiles/Public/Savegames/Story",
"files": "all"
}
]
},
{
"en_US": "Beat Hazard",
"zh_CN": "危险节奏",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/49600/remote",
"files": "all"
}
]
},
{
"en_US": "Bejeweled",
"zh_CN": "宝石迷阵",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/ProgramData/Steam/Bejeweled/userdata",
"files": "all"
}
]
},
{
"en_US": "Bejeweled 2",
"zh_CN": "宝石迷阵2",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/ProgramData/Steam/Bejeweled2/users",
"files": "all"
}
]
},
{
"en_US": "Bejeweled 3",
"zh_CN": "宝石迷阵3",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Local/Steam/Bejeweled3/users",
"files": "all"
}
]
},
{
"en_US": "Bejeweled Twist",
"zh_CN": "宝石迷阵:旋转",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/ProgramData/Steam/BejeweledTwist/users",
"files": "all"
}
]
},
{
"en_US": "BattleBlock Theater",
"zh_CN": "战斗砖块剧场",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/238460/remote",
"files": "all"
}
]
},
{
"en_US": "Besiege",
"zh_CN": "围攻",
"steam_id": 346010,
"save_paths": [
{
"save_loc": "Windows",
"root_path": "{steam_library_path}/Besiege/Besiege_Data",
"files": ["CompletedLevels.txt"]
},
{
"save_loc": "Windows",
"root_path": "{steam_library_path}/Besiege/Besiege_Data/SavedMachines",
"files": "all"
}
]
},
{
"en_US": "Big Money!",
"zh_CN": "超级赚钱大亨",
"steam_id": 3360,
"save_paths": [
{
"save_loc": "Windows",
"root_path": "{steam_library_path}/Big Money Deluxe",
"files": ["savegame.dat"]
}
]
},
{
"en_US": "Biomutant",
"zh_CN": "生化变种",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Local/Biomutant/Saved/SaveGames",
"files": "all"
}
]
},
{
"en_US": "Biped",
"zh_CN": "只只大冒险",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/LocalLow/NExTStudios/Biped",
"files": "all"
}
]
},
{
"en_US": "Blasphemous",
"zh_CN": "神之亵渎",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/LocalLow/TheGameKitchen/Blasphemous/Savegames",
"files": "all"
}
]
},
{
"en_US": "Blazing Beaks",
"zh_CN": "神鸭特攻",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Local/BlazingBeaks",
"files": "all"
}
]
},
{
"en_US": "Bloons TD 6",
"zh_CN": "气球塔防6",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/960090",
"files": "all"
}
]
},
{
"en_US": "Borderlands 3",
"zh_CN": "无主之地3",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/Documents/My Games/Borderlands 3/Saved/SaveGames",
"files": "all"
}
]
},
{
"en_US": "Bright Memory: Infinite",
"zh_CN": "光明记忆:无限",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Local/BrightMemoryInfinite/Saved/SaveGames",
"files": "all"
}
]
},
{
"en_US": "Broforce",
"zh_CN": "武装原型",
"steam_id": 274190,
"save_paths": [
{
"save_loc": "Windows",
"root_path": "{steam_library_path}/Broforce/Saves",
"files": "all"
}
]
},
{
"en_US": "Brotato",
"zh_CN": "土豆兄弟",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Roaming/Brotato",
"files": "all"
}
]
},
{
"en_US": "Candleman: The Complete Journey",
"zh_CN": "蜡烛人完整版",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/591630/remote",
"files": "all"
}
]
},
{
"en_US": "Celeste",
"zh_CN": "蔚蓝",
"steam_id": 504230,
"save_paths": [
{
"save_loc": "Windows",
"root_path": "{steam_library_path}/Celeste/Saves",
"files": "all"
}
]
},
{
"en_US": "Child of Light",
"zh_CN": "光之子",
"save_paths": [
{
"save_loc": "Ubisoft",
"root_path": "{ubisoft_path}/savegames/{user_id}/611",
"files": "all"
}
]
},
{
"en_US": "Chuzzle",
"zh_CN": "毛毛",
"steam_id": 3310,
"save_paths": [
{
"save_loc": "Windows",
"root_path": "{steam_library_path}/Chuzzle Deluxe/Profiles",
"files": "all"
}
]
},
{
"en_US": "Cocoon",
"zh_CN": "茧",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/LocalLow/GeometricInteractive/Cocoon",
"files": "all"
}
]
},
{
"en_US": "Command & Conquer Remastered Collection",
"zh_CN": "命令与征服:重制版",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/1213210/remote",
"files": "all"
},
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/Documents/CnCRemastered/Save",
"files": "all"
}
]
},
{
"en_US": "Control",
"zh_CN": "控制",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/870780/remote",
"files": "all"
}
]
},
{
"en_US": "Cookie Clicker",
"zh_CN": "饼干点点乐",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/1454400/remote",
"files": "all"
}
]
},
{
"en_US": "Core Keeper",
"zh_CN": "地心护核者",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/LocalLow/Pugstorm/Core Keeper/Steam",
"files": "all"
}
]
},
{
"en_US": "Crash Bandicoot 4: It's About Time",
"zh_CN": "古惑狼4:时机已到",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Local/CrashBandicoot4/Saved/SaveGames",
"files": "all"
}
]
},
{
"en_US": "Creaks",
"zh_CN": "嘎吱作响",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/LocalLow/Amanita Design/Creaks/save",
"files": "all"
}
]
},
{
"en_US": "Creepy Tale",
"zh_CN": "惊悚故事",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/LocalLow/DeqafStudio/CreepyTale/playerData.deq",
"files": "special files"
}
]
},
{
"en_US": "Crypt of the NecroDancer",
"zh_CN": "节奏地牢",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/247080/remote",
"files": "all"
}
]
},
{
"en_US": "Cube Escape Collection",
"zh_CN": "方块逃脱合集",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/Documents/Rusty Lake/CubeEscapeCollection",
"files": "all"
}
]
},
{
"en_US": "Cube Escape: Paradox",
"zh_CN": "方块逃脱:悖论",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/Documents/Rusty Lake/Paradox",
"files": "all"
}
]
},
{
"en_US": "Cult of the Lamb",
"zh_CN": "咩咩羊启示录",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/LocalLow/Massive Monster/Cult Of The Lamb/saves",
"files": "all"
}
]
},
{
"en_US": "Cuphead",
"zh_CN": "茶杯头",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Roaming/Cuphead",
"files": "all"
}
]
},
{
"en_US": "Cyberpunk 2077",
"zh_CN": "赛博朋克2077",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/Saved Games/CD Projekt Red/Cyberpunk 2077",
"files": "all"
}
]
},
{
"en_US": "Dark Deception",
"zh_CN": "黑暗欺骗",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Local/DDeception/Saved/SaveGames",
"files": "all"
}
]
},
{
"en_US": "Dark Souls III",
"zh_CN": "黑暗之魂3",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Roaming/DarkSoulsIII",
"files": "all"
}
]
},
{
"en_US": "Darkwood",
"zh_CN": "阴暗森林",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/LocalLow/Acid Wizard Studio/Darkwood",
"files": "all"
}
]
},
{
"en_US": "Dave the Diver",
"zh_CN": "潜水员戴夫",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/LocalLow/nexon/DAVE THE DIVER/SteamSData",
"files": "all"
}
]
},
{
"en_US": "Days Gone",
"zh_CN": "往日不在",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Local/BendGame/Saved",
"files": "all"
}
]
},
{
"en_US": "Dead Cells",
"zh_CN": "死亡细胞",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/588650/remote",
"files": "all"
}
]
},
{
"en_US": "Dead Space (2023)",
"zh_CN": "死亡空间 (2023)",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/Documents/Dead Space (2023)/settings/steam",
"files": "all"
}
]
},
{
"en_US": "Death Stranding",
"zh_CN": "死亡搁浅",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Local/KojimaProductions/DeathStranding",
"files": "all"
}
]
},
{
"en_US": "Death Stranding: Director's Cut",
"zh_CN": "死亡搁浅:导演剪辑版",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Local/KojimaProductions/DeathStrandingDC",
"files": "all"
}
]
},
{
"en_US": "Deathloop",
"zh_CN": "死亡循环",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/Saved Games/Arkane Studios/Deathloop/base/savegame",
"files": "all"
}
]
},
{
"en_US": "Death's Door",
"zh_CN": "死亡之门",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/LocalLow/Acid Nerve/DeathsDoor/SAVEDATA",
"files": "all"
}
]
},
{
"en_US": "Deiland",
"zh_CN": "小王子的星球",
"save_paths": [
{
"save_loc": "Registry",
"root_path": "HKEY_CURRENT_USER\\Software\\Chibig\\Deiland",
"files": "all"
}
]
},
{
"en_US": "Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles",
"zh_CN": "鬼灭之刃 火之神血风谭",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Local/APK/Saved/SaveGames",
"files": "all"
}
]
},
{
"en_US": "Detroit: Become Human",
"zh_CN": "底特律:化身为人",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/Saved Games/Quantic Dream/Detroit Become Human",
"files": "all"
}
]
},
{
"en_US": "Deus Ex: Mankind Divided",
"zh_CN": "杀出重围:人类分裂",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/337000/remote",
"files": "all"
}
]
},
{
"en_US": "Devil May Cry 5",
"zh_CN": "鬼泣5",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/601150/remote/win64_save",
"files": "all"
}
]
},
{
"en_US": "Don't Starve Together",
"zh_CN": "饥荒联机版",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/Documents/Klei/DoNotStarveTogether",
"files": "all"
}
]
},
{
"en_US": "Doom Eternal",
"zh_CN": "毁灭战士:永恒",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/782330/remote",
"files": "all"
}
]
},
{
"en_US": "Dragon Age: Inquisition",
"zh_CN": "龙腾世纪审判",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/Documents/BioWare/Dragon Age Inquisition/Save",
"files": "all"
}
]
},
{
"en_US": "DREDGE",
"zh_CN": "渔帆暗涌",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/LocalLow/Black Salt Games/DREDGE/saves",
"files": "all"
}
]
},
{
"en_US": "Duck Game",
"zh_CN": "鸭王争霸赛",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/312530/remote/",
"files": "all"
}
]
},
{
"en_US": "Dying Light",
"zh_CN": "消逝的光芒",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/239140/remote/out",
"files": "all"
}
]
},
{
"en_US": "Dying Light 2 Stay Human",
"zh_CN": "消逝的光芒2",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/534380/remote/out",
"files": "all"
}
]
},
{
"en_US": "EA Sports FIFA 23",
"zh_CN": "EA Sports FIFA 23",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/Documents/FIFA 23/settings",
"files": "all"
}
]
},
{
"en_US": "EA Sports PGA Tour",
"zh_CN": "EA Sports PGA Tour",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/Documents/PGA TOUR/settings",
"files": "all"
}
]
},
{
"en_US": "Elden Ring",
"zh_CN": "艾尔登法环",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Roaming/EldenRing",
"files": "all"
}
]
},
{
"en_US": "Element TD 2",
"zh_CN": "元素塔防2",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/LocalLow/Element Studios/Element TD 2",
"files": "all"
}
]
},
{
"en_US": "Emily Wants to Play",
"zh_CN": "艾米丽要来玩",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Local/EmilyWantsToPlay/Saved/SaveGames",
"files": "all"
}
]
},
{
"en_US": "Emily Wants to Play Too",
"zh_CN": "艾米丽也要来玩",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/Local/EWTP_Too/Saved/SaveGames",
"files": "all"
}
]
},
{
"en_US": "Enter the Gungeon",
"zh_CN": "挺进地牢",
"save_paths": [
{
"save_loc": "Windows",
"root_path": "C:/Users/{user_name}/AppData/LocalLow/Dodge Roll/Enter the Gungeon",
"files": "all"
}
]
},
{
"en_US": "F1 22",
"zh_CN": "F1 22",
"save_paths": [
{
"save_loc": "Steam",
"root_path": "{steam_path}/userdata/{user_id}/1692250/remote",
"files": "all"
}