This repository has been archived by the owner on Aug 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame-patches.json
3122 lines (3122 loc) · 232 KB
/
game-patches.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
[
{
"name": "415607D3 - Gun.patch.toml",
"path": "patches/415607D3 - Gun.patch.toml",
"sha": "2f31770f2ec3a653c8a194ae17afac9fa247e831",
"size": 274,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/415607D3%20-%20Gun.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/415607D3%20-%20Gun.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/2f31770f2ec3a653c8a194ae17afac9fa247e831",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/415607D3%20-%20Gun.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/415607D3%20-%20Gun.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/2f31770f2ec3a653c8a194ae17afac9fa247e831",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/415607D3%20-%20Gun.patch.toml"
}
},
{
"name": "415607DD - Tony Hawk's Project 8.patch.toml",
"path": "patches/415607DD - Tony Hawk's Project 8.patch.toml",
"sha": "d0528911fde2d8d4ef73f14b60f0460528af5273",
"size": 1952,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/415607DD%20-%20Tony%20Hawk's%20Project%208.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/415607DD%20-%20Tony%20Hawk's%20Project%208.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/d0528911fde2d8d4ef73f14b60f0460528af5273",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/415607DD%20-%20Tony%20Hawk's%20Project%208.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/415607DD%20-%20Tony%20Hawk's%20Project%208.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/d0528911fde2d8d4ef73f14b60f0460528af5273",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/415607DD%20-%20Tony%20Hawk's%20Project%208.patch.toml"
}
},
{
"name": "415607F2 - Kung Fu Panda.patch.toml",
"path": "patches/415607F2 - Kung Fu Panda.patch.toml",
"sha": "f9ca0c63196a4e527d6b26c86f905ae57aaae6e4",
"size": 340,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/415607F2%20-%20Kung%20Fu%20Panda.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/415607F2%20-%20Kung%20Fu%20Panda.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/f9ca0c63196a4e527d6b26c86f905ae57aaae6e4",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/415607F2%20-%20Kung%20Fu%20Panda.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/415607F2%20-%20Kung%20Fu%20Panda.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/f9ca0c63196a4e527d6b26c86f905ae57aaae6e4",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/415607F2%20-%20Kung%20Fu%20Panda.patch.toml"
}
},
{
"name": "415607F5 - Bee Movie Game.patch.toml",
"path": "patches/415607F5 - Bee Movie Game.patch.toml",
"sha": "df9283f401b3c2c0bb1b82e5efdb5f65668a00cd",
"size": 318,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/415607F5%20-%20Bee%20Movie%20Game.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/415607F5%20-%20Bee%20Movie%20Game.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/df9283f401b3c2c0bb1b82e5efdb5f65668a00cd",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/415607F5%20-%20Bee%20Movie%20Game.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/415607F5%20-%20Bee%20Movie%20Game.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/df9283f401b3c2c0bb1b82e5efdb5f65668a00cd",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/415607F5%20-%20Bee%20Movie%20Game.patch.toml"
}
},
{
"name": "41560817 - Modern Warfare 2 (TU6).patch.toml",
"path": "patches/41560817 - Modern Warfare 2 (TU6).patch.toml",
"sha": "03e2fe22308c8e44a8888a4c58e59e7a4019c4f5",
"size": 672,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/41560817%20-%20Modern%20Warfare%202%20(TU6).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/41560817%20-%20Modern%20Warfare%202%20(TU6).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/03e2fe22308c8e44a8888a4c58e59e7a4019c4f5",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/41560817%20-%20Modern%20Warfare%202%20(TU6).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/41560817%20-%20Modern%20Warfare%202%20(TU6).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/03e2fe22308c8e44a8888a4c58e59e7a4019c4f5",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/41560817%20-%20Modern%20Warfare%202%20(TU6).patch.toml"
}
},
{
"name": "4156082F - Marvel Ultimate Alliance 2.patch.toml",
"path": "patches/4156082F - Marvel Ultimate Alliance 2.patch.toml",
"sha": "d86916cc9b4a7bc2cb41e682efb428f0a0c82bbe",
"size": 933,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4156082F%20-%20Marvel%20Ultimate%20Alliance%202.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4156082F%20-%20Marvel%20Ultimate%20Alliance%202.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/d86916cc9b4a7bc2cb41e682efb428f0a0c82bbe",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4156082F%20-%20Marvel%20Ultimate%20Alliance%202.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4156082F%20-%20Marvel%20Ultimate%20Alliance%202.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/d86916cc9b4a7bc2cb41e682efb428f0a0c82bbe",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4156082F%20-%20Marvel%20Ultimate%20Alliance%202.patch.toml"
}
},
{
"name": "4156084C - Transformers War for Cybertron.patch.toml",
"path": "patches/4156084C - Transformers War for Cybertron.patch.toml",
"sha": "2ef549543bd450664d44b5a6b09fa13a9e721dc4",
"size": 422,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4156084C%20-%20Transformers%20War%20for%20Cybertron.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4156084C%20-%20Transformers%20War%20for%20Cybertron.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/2ef549543bd450664d44b5a6b09fa13a9e721dc4",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4156084C%20-%20Transformers%20War%20for%20Cybertron.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4156084C%20-%20Transformers%20War%20for%20Cybertron.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/2ef549543bd450664d44b5a6b09fa13a9e721dc4",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4156084C%20-%20Transformers%20War%20for%20Cybertron.patch.toml"
}
},
{
"name": "415608AF - GoldenEye 007 Reloaded.patch.toml",
"path": "patches/415608AF - GoldenEye 007 Reloaded.patch.toml",
"sha": "33ecb3a6d4a9a7f50e161a8c5f3c4c38273c41d9",
"size": 666,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/415608AF%20-%20GoldenEye%20007%20Reloaded.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/415608AF%20-%20GoldenEye%20007%20Reloaded.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/33ecb3a6d4a9a7f50e161a8c5f3c4c38273c41d9",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/415608AF%20-%20GoldenEye%20007%20Reloaded.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/415608AF%20-%20GoldenEye%20007%20Reloaded.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/33ecb3a6d4a9a7f50e161a8c5f3c4c38273c41d9",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/415608AF%20-%20GoldenEye%20007%20Reloaded.patch.toml"
}
},
{
"name": "415608C5 - Family Guy Back to the Multiverse.patch.toml",
"path": "patches/415608C5 - Family Guy Back to the Multiverse.patch.toml",
"sha": "46527787792acc401797f83597072955c289b5fe",
"size": 365,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/415608C5%20-%20Family%20Guy%20Back%20to%20the%20Multiverse.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/415608C5%20-%20Family%20Guy%20Back%20to%20the%20Multiverse.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/46527787792acc401797f83597072955c289b5fe",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/415608C5%20-%20Family%20Guy%20Back%20to%20the%20Multiverse.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/415608C5%20-%20Family%20Guy%20Back%20to%20the%20Multiverse.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/46527787792acc401797f83597072955c289b5fe",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/415608C5%20-%20Family%20Guy%20Back%20to%20the%20Multiverse.patch.toml"
}
},
{
"name": "41560904 - Transformers-Rise of The Dark Spark.patch.toml",
"path": "patches/41560904 - Transformers-Rise of The Dark Spark.patch.toml",
"sha": "ae1d654798fe3d93e209ff63e6be1871e5d50b85",
"size": 577,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/41560904%20-%20Transformers-Rise%20of%20The%20Dark%20Spark.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/41560904%20-%20Transformers-Rise%20of%20The%20Dark%20Spark.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/ae1d654798fe3d93e209ff63e6be1871e5d50b85",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/41560904%20-%20Transformers-Rise%20of%20The%20Dark%20Spark.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/41560904%20-%20Transformers-Rise%20of%20The%20Dark%20Spark.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/ae1d654798fe3d93e209ff63e6be1871e5d50b85",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/41560904%20-%20Transformers-Rise%20of%20The%20Dark%20Spark.patch.toml"
}
},
{
"name": "424107DC - Dragon Ball Z Burst Limit (EU).patch.toml",
"path": "patches/424107DC - Dragon Ball Z Burst Limit (EU).patch.toml",
"sha": "7a43749002ab9afb40888d4d551050eac87240f3",
"size": 1051,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/424107DC%20-%20Dragon%20Ball%20Z%20Burst%20Limit%20(EU).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/424107DC%20-%20Dragon%20Ball%20Z%20Burst%20Limit%20(EU).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/7a43749002ab9afb40888d4d551050eac87240f3",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/424107DC%20-%20Dragon%20Ball%20Z%20Burst%20Limit%20(EU).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/424107DC%20-%20Dragon%20Ball%20Z%20Burst%20Limit%20(EU).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/7a43749002ab9afb40888d4d551050eac87240f3",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/424107DC%20-%20Dragon%20Ball%20Z%20Burst%20Limit%20(EU).patch.toml"
}
},
{
"name": "424107DC - Dragon Ball Z Burst Limit (US).patch.toml",
"path": "patches/424107DC - Dragon Ball Z Burst Limit (US).patch.toml",
"sha": "70c36dda15a202d4449d85fd76ec414c91655f46",
"size": 1051,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/424107DC%20-%20Dragon%20Ball%20Z%20Burst%20Limit%20(US).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/424107DC%20-%20Dragon%20Ball%20Z%20Burst%20Limit%20(US).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/70c36dda15a202d4449d85fd76ec414c91655f46",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/424107DC%20-%20Dragon%20Ball%20Z%20Burst%20Limit%20(US).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/424107DC%20-%20Dragon%20Ball%20Z%20Burst%20Limit%20(US).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/70c36dda15a202d4449d85fd76ec414c91655f46",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/424107DC%20-%20Dragon%20Ball%20Z%20Burst%20Limit%20(US).patch.toml"
}
},
{
"name": "425307D1 - The Elder Scrolls IV Oblivion (GOTY).patch.toml",
"path": "patches/425307D1 - The Elder Scrolls IV Oblivion (GOTY).patch.toml",
"sha": "4847ba7984edcb85b21647e500ae2d99784da1d9",
"size": 1109,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/425307D1%20-%20The%20Elder%20Scrolls%20IV%20Oblivion%20(GOTY).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/425307D1%20-%20The%20Elder%20Scrolls%20IV%20Oblivion%20(GOTY).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/4847ba7984edcb85b21647e500ae2d99784da1d9",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/425307D1%20-%20The%20Elder%20Scrolls%20IV%20Oblivion%20(GOTY).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/425307D1%20-%20The%20Elder%20Scrolls%20IV%20Oblivion%20(GOTY).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/4847ba7984edcb85b21647e500ae2d99784da1d9",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/425307D1%20-%20The%20Elder%20Scrolls%20IV%20Oblivion%20(GOTY).patch.toml"
}
},
{
"name": "425307DB - Wet.patch.toml",
"path": "patches/425307DB - Wet.patch.toml",
"sha": "4284bba8cd9046a6f92229c741bb67ea2287e3a0",
"size": 471,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/425307DB%20-%20Wet.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/425307DB%20-%20Wet.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/4284bba8cd9046a6f92229c741bb67ea2287e3a0",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/425307DB%20-%20Wet.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/425307DB%20-%20Wet.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/4284bba8cd9046a6f92229c741bb67ea2287e3a0",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/425307DB%20-%20Wet.patch.toml"
}
},
{
"name": "425307E6 - The Elder Scrolls V Skyrim.patch.toml",
"path": "patches/425307E6 - The Elder Scrolls V Skyrim.patch.toml",
"sha": "1e7259b2a81282c6bb216d54d4b5df53780cda95",
"size": 388,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/425307E6%20-%20The%20Elder%20Scrolls%20V%20Skyrim.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/425307E6%20-%20The%20Elder%20Scrolls%20V%20Skyrim.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/1e7259b2a81282c6bb216d54d4b5df53780cda95",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/425307E6%20-%20The%20Elder%20Scrolls%20V%20Skyrim.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/425307E6%20-%20The%20Elder%20Scrolls%20V%20Skyrim.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/1e7259b2a81282c6bb216d54d4b5df53780cda95",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/425307E6%20-%20The%20Elder%20Scrolls%20V%20Skyrim.patch.toml"
}
},
{
"name": "425607D3 - Turok.patch.toml",
"path": "patches/425607D3 - Turok.patch.toml",
"sha": "d51d5359839e2988d68dbf45234d651485f941d8",
"size": 466,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/425607D3%20-%20Turok.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/425607D3%20-%20Turok.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/d51d5359839e2988d68dbf45234d651485f941d8",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/425607D3%20-%20Turok.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/425607D3%20-%20Turok.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/d51d5359839e2988d68dbf45234d651485f941d8",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/425607D3%20-%20Turok.patch.toml"
}
},
{
"name": "42560816 - Epic Mickey 2 The Power Of Two.patch.toml",
"path": "patches/42560816 - Epic Mickey 2 The Power Of Two.patch.toml",
"sha": "9b9d38060264a4c286783a3aa95dfb0359aad801",
"size": 703,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/42560816%20-%20Epic%20Mickey%202%20The%20Power%20Of%20Two.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/42560816%20-%20Epic%20Mickey%202%20The%20Power%20Of%20Two.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/9b9d38060264a4c286783a3aa95dfb0359aad801",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/42560816%20-%20Epic%20Mickey%202%20The%20Power%20Of%20Two.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/42560816%20-%20Epic%20Mickey%202%20The%20Power%20Of%20Two.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/9b9d38060264a4c286783a3aa95dfb0359aad801",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/42560816%20-%20Epic%20Mickey%202%20The%20Power%20Of%20Two.patch.toml"
}
},
{
"name": "434307D4 - Resident Evil 5.patch.toml",
"path": "patches/434307D4 - Resident Evil 5.patch.toml",
"sha": "d1e08711b0806fc3fd955b6477a158998e75e6ba",
"size": 1153,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/434307D4%20-%20Resident%20Evil%205.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/434307D4%20-%20Resident%20Evil%205.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/d1e08711b0806fc3fd955b6477a158998e75e6ba",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/434307D4%20-%20Resident%20Evil%205.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/434307D4%20-%20Resident%20Evil%205.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/d1e08711b0806fc3fd955b6477a158998e75e6ba",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/434307D4%20-%20Resident%20Evil%205.patch.toml"
}
},
{
"name": "43430817 - Asura's Wrath.patch.toml",
"path": "patches/43430817 - Asura's Wrath.patch.toml",
"sha": "ccaf50cee6c7b6e0007fdc856755f107ce9dc55f",
"size": 1353,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/43430817%20-%20Asura's%20Wrath.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/43430817%20-%20Asura's%20Wrath.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/ccaf50cee6c7b6e0007fdc856755f107ce9dc55f",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/43430817%20-%20Asura's%20Wrath.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/43430817%20-%20Asura's%20Wrath.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/ccaf50cee6c7b6e0007fdc856755f107ce9dc55f",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/43430817%20-%20Asura's%20Wrath.patch.toml"
}
},
{
"name": "43430824 - DmC Devil May Cry.patch.toml",
"path": "patches/43430824 - DmC Devil May Cry.patch.toml",
"sha": "6db50231c993b08d0416ef7e9552674f1977a037",
"size": 328,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/43430824%20-%20DmC%20Devil%20May%20Cry.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/43430824%20-%20DmC%20Devil%20May%20Cry.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/6db50231c993b08d0416ef7e9552674f1977a037",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/43430824%20-%20DmC%20Devil%20May%20Cry.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/43430824%20-%20DmC%20Devil%20May%20Cry.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/6db50231c993b08d0416ef7e9552674f1977a037",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/43430824%20-%20DmC%20Devil%20May%20Cry.patch.toml"
}
},
{
"name": "43430830 - Lost Planet 3.patch.toml",
"path": "patches/43430830 - Lost Planet 3.patch.toml",
"sha": "ff72ffbe1fac09da608fa1ffab56ed749c8369ba",
"size": 864,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/43430830%20-%20Lost%20Planet%203.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/43430830%20-%20Lost%20Planet%203.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/ff72ffbe1fac09da608fa1ffab56ed749c8369ba",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/43430830%20-%20Lost%20Planet%203.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/43430830%20-%20Lost%20Planet%203.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/ff72ffbe1fac09da608fa1ffab56ed749c8369ba",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/43430830%20-%20Lost%20Planet%203.patch.toml"
}
},
{
"name": "43430841 - Resident Evil.patch.toml",
"path": "patches/43430841 - Resident Evil.patch.toml",
"sha": "17fba0df6611f31c113042bf0b59c7140c9d2f1e",
"size": 1086,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/43430841%20-%20Resident%20Evil.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/43430841%20-%20Resident%20Evil.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/17fba0df6611f31c113042bf0b59c7140c9d2f1e",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/43430841%20-%20Resident%20Evil.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/43430841%20-%20Resident%20Evil.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/17fba0df6611f31c113042bf0b59c7140c9d2f1e",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/43430841%20-%20Resident%20Evil.patch.toml"
}
},
{
"name": "43430842 - Resident Evil 0.patch.toml",
"path": "patches/43430842 - Resident Evil 0.patch.toml",
"sha": "c9f0aa15394d12e439e5a851de567beac8fc2d35",
"size": 1245,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/43430842%20-%20Resident%20Evil%200.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/43430842%20-%20Resident%20Evil%200.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/c9f0aa15394d12e439e5a851de567beac8fc2d35",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/43430842%20-%20Resident%20Evil%200.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/43430842%20-%20Resident%20Evil%200.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/c9f0aa15394d12e439e5a851de567beac8fc2d35",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/43430842%20-%20Resident%20Evil%200.patch.toml"
}
},
{
"name": "434D0822 - Leisure Suit Larry Box Office Bust.patch.toml",
"path": "patches/434D0822 - Leisure Suit Larry Box Office Bust.patch.toml",
"sha": "eed945e54adb2f687c7b21e4fceb16c8e67afdf7",
"size": 416,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/434D0822%20-%20Leisure%20Suit%20Larry%20Box%20Office%20Bust.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/434D0822%20-%20Leisure%20Suit%20Larry%20Box%20Office%20Bust.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/eed945e54adb2f687c7b21e4fceb16c8e67afdf7",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/434D0822%20-%20Leisure%20Suit%20Larry%20Box%20Office%20Bust.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/434D0822%20-%20Leisure%20Suit%20Larry%20Box%20Office%20Bust.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/eed945e54adb2f687c7b21e4fceb16c8e67afdf7",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/434D0822%20-%20Leisure%20Suit%20Larry%20Box%20Office%20Bust.patch.toml"
}
},
{
"name": "445007EA - Onechanbara Bikini Samurai Squad.patch.toml",
"path": "patches/445007EA - Onechanbara Bikini Samurai Squad.patch.toml",
"sha": "6af164dcfec5edeed46a68ec8b3c276f0a53a624",
"size": 679,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/445007EA%20-%20Onechanbara%20Bikini%20Samurai%20Squad.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/445007EA%20-%20Onechanbara%20Bikini%20Samurai%20Squad.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/6af164dcfec5edeed46a68ec8b3c276f0a53a624",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/445007EA%20-%20Onechanbara%20Bikini%20Samurai%20Squad.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/445007EA%20-%20Onechanbara%20Bikini%20Samurai%20Squad.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/6af164dcfec5edeed46a68ec8b3c276f0a53a624",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/445007EA%20-%20Onechanbara%20Bikini%20Samurai%20Squad.patch.toml"
}
},
{
"name": "445007F4 - お姉チャンバラZ~カグラ~.patch.toml",
"path": "patches/445007F4 - お姉チャンバラZ~カグラ~.patch.toml",
"sha": "c9841fb49c3bd48592e63543261496c440063e0c",
"size": 597,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/445007F4%20-%20%E3%81%8A%E5%A7%89%E3%83%81%E3%83%A3%E3%83%B3%E3%83%90%E3%83%A9Z%EF%BD%9E%E3%82%AB%E3%82%B0%E3%83%A9%EF%BD%9E.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/445007F4%20-%20%E3%81%8A%E5%A7%89%E3%83%81%E3%83%A3%E3%83%B3%E3%83%90%E3%83%A9Z%EF%BD%9E%E3%82%AB%E3%82%B0%E3%83%A9%EF%BD%9E.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/c9841fb49c3bd48592e63543261496c440063e0c",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/445007F4 - お姉チャンバラZ~カグラ~.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/445007F4%20-%20%E3%81%8A%E5%A7%89%E3%83%81%E3%83%A3%E3%83%B3%E3%83%90%E3%83%A9Z%EF%BD%9E%E3%82%AB%E3%82%B0%E3%83%A9%EF%BD%9E.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/c9841fb49c3bd48592e63543261496c440063e0c",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/445007F4%20-%20%E3%81%8A%E5%A7%89%E3%83%81%E3%83%A3%E3%83%B3%E3%83%90%E3%83%A9Z%EF%BD%9E%E3%82%AB%E3%82%B0%E3%83%A9%EF%BD%9E.patch.toml"
}
},
{
"name": "454107D9 - Need for Speed Most Wanted (2005).patch.toml",
"path": "patches/454107D9 - Need for Speed Most Wanted (2005).patch.toml",
"sha": "98ccbb7982de7004c1683f43d1075b406b1962f8",
"size": 773,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/454107D9%20-%20Need%20for%20Speed%20Most%20Wanted%20(2005).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/454107D9%20-%20Need%20for%20Speed%20Most%20Wanted%20(2005).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/98ccbb7982de7004c1683f43d1075b406b1962f8",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/454107D9%20-%20Need%20for%20Speed%20Most%20Wanted%20(2005).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/454107D9%20-%20Need%20for%20Speed%20Most%20Wanted%20(2005).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/98ccbb7982de7004c1683f43d1075b406b1962f8",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/454107D9%20-%20Need%20for%20Speed%20Most%20Wanted%20(2005).patch.toml"
}
},
{
"name": "454107F9 - Battlefield Bad Company.patch.toml",
"path": "patches/454107F9 - Battlefield Bad Company.patch.toml",
"sha": "93a2afe7b49e01b9b53c077f826bd165d84f5eea",
"size": 708,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/454107F9%20-%20Battlefield%20Bad%20Company.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/454107F9%20-%20Battlefield%20Bad%20Company.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/93a2afe7b49e01b9b53c077f826bd165d84f5eea",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/454107F9%20-%20Battlefield%20Bad%20Company.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/454107F9%20-%20Battlefield%20Bad%20Company.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/93a2afe7b49e01b9b53c077f826bd165d84f5eea",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/454107F9%20-%20Battlefield%20Bad%20Company.patch.toml"
}
},
{
"name": "45410809 - The Simpsons Game.patch.toml",
"path": "patches/45410809 - The Simpsons Game.patch.toml",
"sha": "e77eb1ab1afcbea347154365238d90c3d592b510",
"size": 377,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/45410809%20-%20The%20Simpsons%20Game.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/45410809%20-%20The%20Simpsons%20Game.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/e77eb1ab1afcbea347154365238d90c3d592b510",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/45410809%20-%20The%20Simpsons%20Game.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/45410809%20-%20The%20Simpsons%20Game.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/e77eb1ab1afcbea347154365238d90c3d592b510",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/45410809%20-%20The%20Simpsons%20Game.patch.toml"
}
},
{
"name": "4541080F - The Orange Box (TU5) (GameUI_360.dll).patch.toml",
"path": "patches/4541080F - The Orange Box (TU5) (GameUI_360.dll).patch.toml",
"sha": "dcc52a1a878bfce6666a0ba8261f6978e098aecd",
"size": 1206,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541080F%20-%20The%20Orange%20Box%20(TU5)%20(GameUI_360.dll).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541080F%20-%20The%20Orange%20Box%20(TU5)%20(GameUI_360.dll).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/dcc52a1a878bfce6666a0ba8261f6978e098aecd",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4541080F%20-%20The%20Orange%20Box%20(TU5)%20(GameUI_360.dll).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541080F%20-%20The%20Orange%20Box%20(TU5)%20(GameUI_360.dll).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/dcc52a1a878bfce6666a0ba8261f6978e098aecd",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541080F%20-%20The%20Orange%20Box%20(TU5)%20(GameUI_360.dll).patch.toml"
}
},
{
"name": "4541080F - The Orange Box (TU5) (engine_360.dll).patch.toml",
"path": "patches/4541080F - The Orange Box (TU5) (engine_360.dll).patch.toml",
"sha": "a2ae4f6ee9da158c9526fabcf142283a8b17b4d2",
"size": 2723,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541080F%20-%20The%20Orange%20Box%20(TU5)%20(engine_360.dll).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541080F%20-%20The%20Orange%20Box%20(TU5)%20(engine_360.dll).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/a2ae4f6ee9da158c9526fabcf142283a8b17b4d2",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4541080F%20-%20The%20Orange%20Box%20(TU5)%20(engine_360.dll).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541080F%20-%20The%20Orange%20Box%20(TU5)%20(engine_360.dll).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/a2ae4f6ee9da158c9526fabcf142283a8b17b4d2",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541080F%20-%20The%20Orange%20Box%20(TU5)%20(engine_360.dll).patch.toml"
}
},
{
"name": "4541080F - The Orange Box (TU5) (tf-bin-Server_360.dll).patch.toml",
"path": "patches/4541080F - The Orange Box (TU5) (tf-bin-Server_360.dll).patch.toml",
"sha": "ae6100b88d9a7747c77f9d2761e06743cb396749",
"size": 931,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541080F%20-%20The%20Orange%20Box%20(TU5)%20(tf-bin-Server_360.dll).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541080F%20-%20The%20Orange%20Box%20(TU5)%20(tf-bin-Server_360.dll).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/ae6100b88d9a7747c77f9d2761e06743cb396749",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4541080F%20-%20The%20Orange%20Box%20(TU5)%20(tf-bin-Server_360.dll).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541080F%20-%20The%20Orange%20Box%20(TU5)%20(tf-bin-Server_360.dll).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/ae6100b88d9a7747c77f9d2761e06743cb396749",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541080F%20-%20The%20Orange%20Box%20(TU5)%20(tf-bin-Server_360.dll).patch.toml"
}
},
{
"name": "4541080F - The Orange Box (default.xex).patch.toml",
"path": "patches/4541080F - The Orange Box (default.xex).patch.toml",
"sha": "426cd2d24b72bf298cf995bedb642b2b59e6789a",
"size": 1003,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541080F%20-%20The%20Orange%20Box%20(default.xex).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541080F%20-%20The%20Orange%20Box%20(default.xex).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/426cd2d24b72bf298cf995bedb642b2b59e6789a",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4541080F%20-%20The%20Orange%20Box%20(default.xex).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541080F%20-%20The%20Orange%20Box%20(default.xex).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/426cd2d24b72bf298cf995bedb642b2b59e6789a",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541080F%20-%20The%20Orange%20Box%20(default.xex).patch.toml"
}
},
{
"name": "4541080F - The Orange Box (engine_360.dll).patch.toml",
"path": "patches/4541080F - The Orange Box (engine_360.dll).patch.toml",
"sha": "ce66eb1b36336e7b83a6adcab26b609215ba1509",
"size": 3265,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541080F%20-%20The%20Orange%20Box%20(engine_360.dll).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541080F%20-%20The%20Orange%20Box%20(engine_360.dll).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/ce66eb1b36336e7b83a6adcab26b609215ba1509",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4541080F%20-%20The%20Orange%20Box%20(engine_360.dll).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541080F%20-%20The%20Orange%20Box%20(engine_360.dll).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/ce66eb1b36336e7b83a6adcab26b609215ba1509",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541080F%20-%20The%20Orange%20Box%20(engine_360.dll).patch.toml"
}
},
{
"name": "4541080F - The Orange Box (shaderapidx9_360.dll).patch.toml",
"path": "patches/4541080F - The Orange Box (shaderapidx9_360.dll).patch.toml",
"sha": "f8b023c1c77870ebe0c3039ad5a950f1e85df38a",
"size": 408,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541080F%20-%20The%20Orange%20Box%20(shaderapidx9_360.dll).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541080F%20-%20The%20Orange%20Box%20(shaderapidx9_360.dll).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/f8b023c1c77870ebe0c3039ad5a950f1e85df38a",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4541080F%20-%20The%20Orange%20Box%20(shaderapidx9_360.dll).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541080F%20-%20The%20Orange%20Box%20(shaderapidx9_360.dll).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/f8b023c1c77870ebe0c3039ad5a950f1e85df38a",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541080F%20-%20The%20Orange%20Box%20(shaderapidx9_360.dll).patch.toml"
}
},
{
"name": "4541080F - The Orange Box (tf-bin-Client_360.dll).patch.toml",
"path": "patches/4541080F - The Orange Box (tf-bin-Client_360.dll).patch.toml",
"sha": "4f097e76837e9530051c151aa64a3b9660cf0fa9",
"size": 603,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541080F%20-%20The%20Orange%20Box%20(tf-bin-Client_360.dll).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541080F%20-%20The%20Orange%20Box%20(tf-bin-Client_360.dll).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/4f097e76837e9530051c151aa64a3b9660cf0fa9",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4541080F%20-%20The%20Orange%20Box%20(tf-bin-Client_360.dll).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541080F%20-%20The%20Orange%20Box%20(tf-bin-Client_360.dll).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/4f097e76837e9530051c151aa64a3b9660cf0fa9",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541080F%20-%20The%20Orange%20Box%20(tf-bin-Client_360.dll).patch.toml"
}
},
{
"name": "45410850 - Mirror's Edge.patch.toml",
"path": "patches/45410850 - Mirror's Edge.patch.toml",
"sha": "393593b877f3658d81067521282dce3edca40583",
"size": 1663,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/45410850%20-%20Mirror's%20Edge.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/45410850%20-%20Mirror's%20Edge.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/393593b877f3658d81067521282dce3edca40583",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/45410850%20-%20Mirror's%20Edge.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/45410850%20-%20Mirror's%20Edge.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/393593b877f3658d81067521282dce3edca40583",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/45410850%20-%20Mirror's%20Edge.patch.toml"
}
},
{
"name": "4541087F - Skate 2.patch.toml",
"path": "patches/4541087F - Skate 2.patch.toml",
"sha": "48f9752f97c98f7157aa1edf168c62e9f55a373d",
"size": 1789,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541087F%20-%20Skate%202.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541087F%20-%20Skate%202.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/48f9752f97c98f7157aa1edf168c62e9f55a373d",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4541087F%20-%20Skate%202.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541087F%20-%20Skate%202.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/48f9752f97c98f7157aa1edf168c62e9f55a373d",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541087F%20-%20Skate%202.patch.toml"
}
},
{
"name": "454108D8 - Army of Two The 40th Day.patch.toml",
"path": "patches/454108D8 - Army of Two The 40th Day.patch.toml",
"sha": "e8302a5da8a55c87c0f72ffd2f1e4c8e44563c67",
"size": 1247,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/454108D8%20-%20Army%20of%20Two%20The%2040th%20Day.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/454108D8%20-%20Army%20of%20Two%20The%2040th%20Day.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/e8302a5da8a55c87c0f72ffd2f1e4c8e44563c67",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/454108D8%20-%20Army%20of%20Two%20The%2040th%20Day.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/454108D8%20-%20Army%20of%20Two%20The%2040th%20Day.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/e8302a5da8a55c87c0f72ffd2f1e4c8e44563c67",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/454108D8%20-%20Army%20of%20Two%20The%2040th%20Day.patch.toml"
}
},
{
"name": "454108E6 - Skate 3.patch.toml",
"path": "patches/454108E6 - Skate 3.patch.toml",
"sha": "c4e9d2941af2514fc07ecba459187f16048e2191",
"size": 583,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/454108E6%20-%20Skate%203.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/454108E6%20-%20Skate%203.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/c4e9d2941af2514fc07ecba459187f16048e2191",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/454108E6%20-%20Skate%203.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/454108E6%20-%20Skate%203.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/c4e9d2941af2514fc07ecba459187f16048e2191",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/454108E6%20-%20Skate%203.patch.toml"
}
},
{
"name": "454108EF - Bulletstorm.patch.toml",
"path": "patches/454108EF - Bulletstorm.patch.toml",
"sha": "2108ee4c572af4f30307d24ed0298d7242743795",
"size": 1526,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/454108EF%20-%20Bulletstorm.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/454108EF%20-%20Bulletstorm.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/2108ee4c572af4f30307d24ed0298d7242743795",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/454108EF%20-%20Bulletstorm.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/454108EF%20-%20Bulletstorm.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/2108ee4c572af4f30307d24ed0298d7242743795",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/454108EF%20-%20Bulletstorm.patch.toml"
}
},
{
"name": "45410914 - Rock Band 3 TU5.patch.toml",
"path": "patches/45410914 - Rock Band 3 TU5.patch.toml",
"sha": "e3646a4d4932bda0ede70db79c5b193fb1c7f149",
"size": 1305,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/45410914%20-%20Rock%20Band%203%20TU5.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/45410914%20-%20Rock%20Band%203%20TU5.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/e3646a4d4932bda0ede70db79c5b193fb1c7f149",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/45410914%20-%20Rock%20Band%203%20TU5.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/45410914%20-%20Rock%20Band%203%20TU5.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/e3646a4d4932bda0ede70db79c5b193fb1c7f149",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/45410914%20-%20Rock%20Band%203%20TU5.patch.toml"
}
},
{
"name": "45410914 - Rock Band 3.patch.toml",
"path": "patches/45410914 - Rock Band 3.patch.toml",
"sha": "97b96e8b85e97cee57691e0a9e077b3fbd64ac1f",
"size": 367,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/45410914%20-%20Rock%20Band%203.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/45410914%20-%20Rock%20Band%203.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/97b96e8b85e97cee57691e0a9e077b3fbd64ac1f",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/45410914%20-%20Rock%20Band%203.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/45410914%20-%20Rock%20Band%203.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/97b96e8b85e97cee57691e0a9e077b3fbd64ac1f",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/45410914%20-%20Rock%20Band%203.patch.toml"
}
},
{
"name": "45410915 - Fight Night Champion (TU0).patch.toml",
"path": "patches/45410915 - Fight Night Champion (TU0).patch.toml",
"sha": "b55631553af25cd78f6dab56a3f8e24d41168253",
"size": 559,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/45410915%20-%20Fight%20Night%20Champion%20(TU0).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/45410915%20-%20Fight%20Night%20Champion%20(TU0).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/b55631553af25cd78f6dab56a3f8e24d41168253",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/45410915%20-%20Fight%20Night%20Champion%20(TU0).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/45410915%20-%20Fight%20Night%20Champion%20(TU0).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/b55631553af25cd78f6dab56a3f8e24d41168253",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/45410915%20-%20Fight%20Night%20Champion%20(TU0).patch.toml"
}
},
{
"name": "45410915 - Fight Night Champion (TU1).patch.toml",
"path": "patches/45410915 - Fight Night Champion (TU1).patch.toml",
"sha": "94f16f42a6ff350d800651f6648a6bc55b6daf4f",
"size": 559,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/45410915%20-%20Fight%20Night%20Champion%20(TU1).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/45410915%20-%20Fight%20Night%20Champion%20(TU1).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/94f16f42a6ff350d800651f6648a6bc55b6daf4f",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/45410915%20-%20Fight%20Night%20Champion%20(TU1).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/45410915%20-%20Fight%20Night%20Champion%20(TU1).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/94f16f42a6ff350d800651f6648a6bc55b6daf4f",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/45410915%20-%20Fight%20Night%20Champion%20(TU1).patch.toml"
}
},
{
"name": "45410915 - Fight Night Champion (TU2).patch.toml",
"path": "patches/45410915 - Fight Night Champion (TU2).patch.toml",
"sha": "bf764872e5d84226347e5a4e80b21aa9c394fcf9",
"size": 559,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/45410915%20-%20Fight%20Night%20Champion%20(TU2).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/45410915%20-%20Fight%20Night%20Champion%20(TU2).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/bf764872e5d84226347e5a4e80b21aa9c394fcf9",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/45410915%20-%20Fight%20Night%20Champion%20(TU2).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/45410915%20-%20Fight%20Night%20Champion%20(TU2).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/bf764872e5d84226347e5a4e80b21aa9c394fcf9",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/45410915%20-%20Fight%20Night%20Champion%20(TU2).patch.toml"
}
},
{
"name": "45410916 - Alice Madness Returns.patch.toml",
"path": "patches/45410916 - Alice Madness Returns.patch.toml",
"sha": "b1c4a08f81b2b00831deb34b1eaeba13aef795b3",
"size": 1108,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/45410916%20-%20Alice%20Madness%20Returns.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/45410916%20-%20Alice%20Madness%20Returns.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/b1c4a08f81b2b00831deb34b1eaeba13aef795b3",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/45410916%20-%20Alice%20Madness%20Returns.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/45410916%20-%20Alice%20Madness%20Returns.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/b1c4a08f81b2b00831deb34b1eaeba13aef795b3",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/45410916%20-%20Alice%20Madness%20Returns.patch.toml"
}
},
{
"name": "4541092A - Shadows of the Damned.patch.toml",
"path": "patches/4541092A - Shadows of the Damned.patch.toml",
"sha": "049230cc1c539134a9b6c84b2d6b7f3a58bf3926",
"size": 904,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541092A%20-%20Shadows%20of%20the%20Damned.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541092A%20-%20Shadows%20of%20the%20Damned.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/049230cc1c539134a9b6c84b2d6b7f3a58bf3926",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4541092A%20-%20Shadows%20of%20the%20Damned.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541092A%20-%20Shadows%20of%20the%20Damned.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/049230cc1c539134a9b6c84b2d6b7f3a58bf3926",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541092A%20-%20Shadows%20of%20the%20Damned.patch.toml"
}
},
{
"name": "4541096D - SSX.patch.toml",
"path": "patches/4541096D - SSX.patch.toml",
"sha": "9468d55573c366f00d57962da3fdb598b3cb61b2",
"size": 792,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541096D%20-%20SSX.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541096D%20-%20SSX.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/9468d55573c366f00d57962da3fdb598b3cb61b2",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4541096D%20-%20SSX.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4541096D%20-%20SSX.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/9468d55573c366f00d57962da3fdb598b3cb61b2",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4541096D%20-%20SSX.patch.toml"
}
},
{
"name": "465307D6 - Armored Core 4 (USA).patch.toml",
"path": "patches/465307D6 - Armored Core 4 (USA).patch.toml",
"sha": "21b3f1fd30bc5e4c132a02e057225582dbbe29f6",
"size": 505,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/465307D6%20-%20Armored%20Core%204%20(USA).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/465307D6%20-%20Armored%20Core%204%20(USA).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/21b3f1fd30bc5e4c132a02e057225582dbbe29f6",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/465307D6%20-%20Armored%20Core%204%20(USA).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/465307D6%20-%20Armored%20Core%204%20(USA).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/21b3f1fd30bc5e4c132a02e057225582dbbe29f6",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/465307D6%20-%20Armored%20Core%204%20(USA).patch.toml"
}
},
{
"name": "465307D7 - Tenchu Z.patch.toml",
"path": "patches/465307D7 - Tenchu Z.patch.toml",
"sha": "15791cdd93ec314f0e9e9e6b5c60f2b91829bcbe",
"size": 360,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/465307D7%20-%20Tenchu%20Z.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/465307D7%20-%20Tenchu%20Z.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/15791cdd93ec314f0e9e9e6b5c60f2b91829bcbe",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/465307D7%20-%20Tenchu%20Z.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/465307D7%20-%20Tenchu%20Z.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/15791cdd93ec314f0e9e9e6b5c60f2b91829bcbe",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/465307D7%20-%20Tenchu%20Z.patch.toml"
}
},
{
"name": "474507D1 - Shutoko Battle X.patch.toml",
"path": "patches/474507D1 - Shutoko Battle X.patch.toml",
"sha": "c84036c18caa41ab20653b30e9cff09bb9b7362e",
"size": 402,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/474507D1%20-%20Shutoko%20Battle%20X.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/474507D1%20-%20Shutoko%20Battle%20X.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/c84036c18caa41ab20653b30e9cff09bb9b7362e",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/474507D1%20-%20Shutoko%20Battle%20X.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/474507D1%20-%20Shutoko%20Battle%20X.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/c84036c18caa41ab20653b30e9cff09bb9b7362e",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/474507D1%20-%20Shutoko%20Battle%20X.patch.toml"
}
},
{
"name": "475007D2 - Hail to the Chimp.patch.toml",
"path": "patches/475007D2 - Hail to the Chimp.patch.toml",
"sha": "b9fc41359e3bff71bbd7c6d90fa555a9eb88833b",
"size": 275,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/475007D2%20-%20Hail%20to%20the%20Chimp.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/475007D2%20-%20Hail%20to%20the%20Chimp.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/b9fc41359e3bff71bbd7c6d90fa555a9eb88833b",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/475007D2%20-%20Hail%20to%20the%20Chimp.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/475007D2%20-%20Hail%20to%20the%20Chimp.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/b9fc41359e3bff71bbd7c6d90fa555a9eb88833b",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/475007D2%20-%20Hail%20to%20the%20Chimp.patch.toml"
}
},
{
"name": "475807D1 - Lucha Libre AAA Heroes del Ring.patch.toml",
"path": "patches/475807D1 - Lucha Libre AAA Heroes del Ring.patch.toml",
"sha": "b5cb12be460de89915979eb58f8095ceb576564b",
"size": 1502,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/475807D1%20-%20Lucha%20Libre%20AAA%20Heroes%20del%20Ring.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/475807D1%20-%20Lucha%20Libre%20AAA%20Heroes%20del%20Ring.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/b5cb12be460de89915979eb58f8095ceb576564b",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/475807D1%20-%20Lucha%20Libre%20AAA%20Heroes%20del%20Ring.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/475807D1%20-%20Lucha%20Libre%20AAA%20Heroes%20del%20Ring.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/b5cb12be460de89915979eb58f8095ceb576564b",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/475807D1%20-%20Lucha%20Libre%20AAA%20Heroes%20del%20Ring.patch.toml"
}
},
{
"name": "494F07D1 - El Shaddai.patch.toml",
"path": "patches/494F07D1 - El Shaddai.patch.toml",
"sha": "c58f7fb0afd370be4e8c7a57a382e3ca6a36fd07",
"size": 937,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/494F07D1%20-%20El%20Shaddai.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/494F07D1%20-%20El%20Shaddai.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/c58f7fb0afd370be4e8c7a57a382e3ca6a36fd07",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/494F07D1%20-%20El%20Shaddai.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/494F07D1%20-%20El%20Shaddai.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/c58f7fb0afd370be4e8c7a57a382e3ca6a36fd07",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/494F07D1%20-%20El%20Shaddai.patch.toml"
}
},
{
"name": "4B4E0823 - Silent Hill Downpour (TU1).patch.toml",
"path": "patches/4B4E0823 - Silent Hill Downpour (TU1).patch.toml",
"sha": "35e7249b771aa0ac7e39499855e5a0c1bd180cab",
"size": 857,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4B4E0823%20-%20Silent%20Hill%20Downpour%20(TU1).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4B4E0823%20-%20Silent%20Hill%20Downpour%20(TU1).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/35e7249b771aa0ac7e39499855e5a0c1bd180cab",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4B4E0823%20-%20Silent%20Hill%20Downpour%20(TU1).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4B4E0823%20-%20Silent%20Hill%20Downpour%20(TU1).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/35e7249b771aa0ac7e39499855e5a0c1bd180cab",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4B4E0823%20-%20Silent%20Hill%20Downpour%20(TU1).patch.toml"
}
},
{
"name": "4B4E0823 - Silent Hill Downpour.patch.toml",
"path": "patches/4B4E0823 - Silent Hill Downpour.patch.toml",
"sha": "a668132ba3726e0ef3bb52edc649742af4c07601",
"size": 1302,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4B4E0823%20-%20Silent%20Hill%20Downpour.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4B4E0823%20-%20Silent%20Hill%20Downpour.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/a668132ba3726e0ef3bb52edc649742af4c07601",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4B4E0823%20-%20Silent%20Hill%20Downpour.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4B4E0823%20-%20Silent%20Hill%20Downpour.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/a668132ba3726e0ef3bb52edc649742af4c07601",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4B4E0823%20-%20Silent%20Hill%20Downpour.patch.toml"
}
},
{
"name": "4B5607E8 - Dead or Alive 5 Ultimate.patch.toml",
"path": "patches/4B5607E8 - Dead or Alive 5 Ultimate.patch.toml",
"sha": "5fdd96d35baa20de00029f91ff291ae0063423fa",
"size": 411,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4B5607E8%20-%20Dead%20or%20Alive%205%20Ultimate.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4B5607E8%20-%20Dead%20or%20Alive%205%20Ultimate.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/5fdd96d35baa20de00029f91ff291ae0063423fa",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4B5607E8%20-%20Dead%20or%20Alive%205%20Ultimate.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4B5607E8%20-%20Dead%20or%20Alive%205%20Ultimate.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/5fdd96d35baa20de00029f91ff291ae0063423fa",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4B5607E8%20-%20Dead%20or%20Alive%205%20Ultimate.patch.toml"
}
},
{
"name": "4C4107D7 - LEGO Star Wars The Complete Saga.patch.toml",
"path": "patches/4C4107D7 - LEGO Star Wars The Complete Saga.patch.toml",
"sha": "9b7d17530129081660ad18abd91163a80d81af9b",
"size": 376,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4C4107D7%20-%20LEGO%20Star%20Wars%20The%20Complete%20Saga.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4C4107D7%20-%20LEGO%20Star%20Wars%20The%20Complete%20Saga.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/9b7d17530129081660ad18abd91163a80d81af9b",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4C4107D7%20-%20LEGO%20Star%20Wars%20The%20Complete%20Saga.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4C4107D7%20-%20LEGO%20Star%20Wars%20The%20Complete%20Saga.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/9b7d17530129081660ad18abd91163a80d81af9b",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4C4107D7%20-%20LEGO%20Star%20Wars%20The%20Complete%20Saga.patch.toml"
}
},
{
"name": "4C4107F3 - LEGO Star Wars III The Clone Wars.patch.toml",
"path": "patches/4C4107F3 - LEGO Star Wars III The Clone Wars.patch.toml",
"sha": "d3749f37098f09921f131439a0312eece3ca5774",
"size": 1233,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4C4107F3%20-%20LEGO%20Star%20Wars%20III%20The%20Clone%20Wars.patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4C4107F3%20-%20LEGO%20Star%20Wars%20III%20The%20Clone%20Wars.patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/d3749f37098f09921f131439a0312eece3ca5774",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4C4107F3%20-%20LEGO%20Star%20Wars%20III%20The%20Clone%20Wars.patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4C4107F3%20-%20LEGO%20Star%20Wars%20III%20The%20Clone%20Wars.patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/d3749f37098f09921f131439a0312eece3ca5774",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4C4107F3%20-%20LEGO%20Star%20Wars%20III%20The%20Clone%20Wars.patch.toml"
}
},
{
"name": "4D5307D1 - Project Gotham Racing 3 (v10.0 or higher).patch.toml",
"path": "patches/4D5307D1 - Project Gotham Racing 3 (v10.0 or higher).patch.toml",
"sha": "8f203073186b6abe715a6b06514a667802c8671b",
"size": 1265,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4D5307D1%20-%20Project%20Gotham%20Racing%203%20(v10.0%20or%20higher).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4D5307D1%20-%20Project%20Gotham%20Racing%203%20(v10.0%20or%20higher).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/8f203073186b6abe715a6b06514a667802c8671b",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4D5307D1%20-%20Project%20Gotham%20Racing%203%20(v10.0%20or%20higher).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4D5307D1%20-%20Project%20Gotham%20Racing%203%20(v10.0%20or%20higher).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/8f203073186b6abe715a6b06514a667802c8671b",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4D5307D1%20-%20Project%20Gotham%20Racing%203%20(v10.0%20or%20higher).patch.toml"
}
},
{
"name": "4D5307D1 - Project Gotham Racing 3 (v9.0 or lower).patch.toml",
"path": "patches/4D5307D1 - Project Gotham Racing 3 (v9.0 or lower).patch.toml",
"sha": "22d6de76a8620ee866579ec02a77cba979625fa5",
"size": 1354,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4D5307D1%20-%20Project%20Gotham%20Racing%203%20(v9.0%20or%20lower).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4D5307D1%20-%20Project%20Gotham%20Racing%203%20(v9.0%20or%20lower).patch.toml",
"git_url": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/22d6de76a8620ee866579ec02a77cba979625fa5",
"download_url": "https://raw.githubusercontent.com/xenia-canary/game-patches/main/patches/4D5307D1%20-%20Project%20Gotham%20Racing%203%20(v9.0%20or%20lower).patch.toml",
"type": "file",
"_links": {
"self": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4D5307D1%20-%20Project%20Gotham%20Racing%203%20(v9.0%20or%20lower).patch.toml?ref=main",
"git": "https://api.github.com/repos/xenia-canary/game-patches/git/blobs/22d6de76a8620ee866579ec02a77cba979625fa5",
"html": "https://github.com/xenia-canary/game-patches/blob/main/patches/4D5307D1%20-%20Project%20Gotham%20Racing%203%20(v9.0%20or%20lower).patch.toml"
}
},
{
"name": "4D5307D2 - Kameo Elements of Power (TU2).patch.toml",
"path": "patches/4D5307D2 - Kameo Elements of Power (TU2).patch.toml",
"sha": "b91e9679f94fe033d1e62e3dd5cab3349d705e00",
"size": 567,
"url": "https://api.github.com/repos/xenia-canary/game-patches/contents/patches/4D5307D2%20-%20Kameo%20Elements%20of%20Power%20(TU2).patch.toml?ref=main",
"html_url": "https://github.com/xenia-canary/game-patches/blob/main/patches/4D5307D2%20-%20Kameo%20Elements%20of%20Power%20(TU2).patch.toml",