-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathModLinks.xml
More file actions
11749 lines (11749 loc) · 485 KB
/
ModLinks.xml
File metadata and controls
11749 lines (11749 loc) · 485 KB
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
<?xml version="1.0"?>
<ModLinks xmlns="https://github.com/HollowKnight-Modding/HollowKnight.ModLinks/HollowKnight.ModManager"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://github.com/HollowKnight-Modding/HollowKnight.ModLinks/HollowKnight.ModManager https://raw.githubusercontent.com/HollowKnight-Modding/HollowKnight.ModLinks/main/Schemas/ModLinks.xml">
<Manifest>
<Name>Vampire Knight</Name>
<Description>A.. BLOODSUCKING will!</Description>
<Version>26.4.4.0</Version>
<Link SHA256="A84E23811E536AFCDE99DE39C48A8F66EC80AB58953BA5EF577378E7BC681AA7"><![CDATA[https://github.com/golddemon1973/VampireKnight/releases/download/v26.4.4.0/VampireKnight.zip]]></Link>
<Dependencies>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/golddemon1973/VampireKnight]]>
</Repository>
<Issues>
<![CDATA[https://github.com/golddemon1973/VampireKnight/issues]]>
</Issues>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>ivory</Author>
</Authors>
</Manifest>
<Manifest>
<Name>BlueSR_OST</Name>
<DisplayName>BlueSR_OST</DisplayName>
<Description>Replaces the OSTs in Greenpath, Fungal Wastes and Sealed Vessel fight with BlueSR's version.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="BF4FE7924B557D19639650ED69AF26F35B707BA7C7DA2118747D4082C4E2CACB"><![CDATA[https://github.com/SaigoNoTanuki/BlueSR-OST/releases/download/1.0.0/BlueSR_OST.zip]]></Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/SaigoNoTanuki/BlueSR-OST]]>
</Repository>
<Issues>
<![CDATA[https://github.com/SaigoNoTanuki/BlueSR-OST/issues]]>
</Issues>
<Tags>
<Tag>Cosmetic</Tag>
</Tags>
<Authors>
<Author>SaigoNoTanuki.</Author>
</Authors>
</Manifest>
<Manifest>
<Name>Ado Death Scream</Name>
<DisplayName>Ado Death Scream</DisplayName>
<Description>Plays Ado's scream when the Knight dies.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="4DBDD7554BE042CC2D7074574EEA8CA37C0EFF96CB70A384E4FD49E21C9F9D52"><![CDATA[https://github.com/SaigoNoTanuki/Ado-Death-Scream/releases/download/1.0.0.0/Ado_Death_Scream.zip]]></Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/SaigoNoTanuki/Ado-Death-Scream]]>
</Repository>
<Issues>
<![CDATA[https://github.com/SaigoNoTanuki/Ado-Death-Scream/issues]]>
</Issues>
<Tags>
<Tag>Cosmetic</Tag>
</Tags>
<Authors>
<Author>SaigoNoTanuki</Author>
</Authors>
</Manifest>
<Manifest>
<Name>DeVect</Name>
<Description>DeVect, titled 骨杖寂骑人 in Chinese, is a Hollow Knight mod that brings Defect-style orb gameplay from Slay the Spire into the Knight's moveset.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="062cd3d4ac19972ddcd68e12e206949a4edb91b8ad33bd7ddab041789832c73d"><![CDATA[https://github.com/windplusflower/DeVect/releases/download/v1.0/DeVect.zip]]></Link>
<Dependencies>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/windplusflower/DeVect]]>
</Repository>
<Issues>
<![CDATA[https://github.com/windplusflower/DeVect/issues]]>
</Issues>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>Windflower</Author>
</Authors>
</Manifest>
<Manifest>
<Name>ReplayTimerMod</Name>
<DisplayName>Replay Timer Mod</DisplayName>
<Description>Records your best times through each room and plays it back as a ghost on your next attempt.</Description>
<Version>0.3.0.0</Version>
<Link SHA256="b5bdf86243b9b8b5f324c8efb07b078ee384994086886666db2b8416a3a5e1e5"><![CDATA[https://github.com/AdiPrk/ReplayTimerMod/releases/download/v0.3.0/ReplayModHK1578.zip]]></Link>
<Dependencies>
</Dependencies>
<Repository>
<![CDATA[https://github.com/AdiPrk/ReplayTimerMod]]>
</Repository>
<Issues>
<![CDATA[https://github.com/AdiPrk/ReplayTimerMod/issues]]>
</Issues>
<Tags>
<Tag>Utility</Tag>
</Tags>
<Authors>
<Author>AdiPrk</Author>
<Author>Shichien</Author>
</Authors>
</Manifest>
<Manifest>
<Name>StubbornKnight</Name>
<Description>StubbornKnight is a stubborn knight mod. The Knight's mind is always fixated on one direction; you can only attack in the direction it desires.</Description>
<Version>1.1.0.0</Version>
<Link SHA256="d972c7ceea2b5bf10af8b1a40a57fcdeabd5e6d88d7e956836cb9fe9cd59b62e"><![CDATA[https://github.com/windplusflower/StubbornKnight/releases/download/v1.1/StubbornKnight.zip]]></Link>
<Dependencies>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/windplusflower/StubbornKnight]]>
</Repository>
<Issues>
<![CDATA[https://github.com/windplusflower/StubbornKnight/issues]]>
</Issues>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>Windflower</Author>
</Authors>
</Manifest>
<Manifest>
<Name>MossBeast</Name>
<DisplayName>MossBeast</DisplayName>
<Description>MossBeast is a complete port of The Beast boss fight from The Binding of Isaac to Hollow Knight.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="1dc785070163d3b9f073f9feae7d6cd7b0ea7be23bf1caa3a4080caf49e5b297"><![CDATA[https://github.com/windplusflower/MossBeast/releases/download/v1.0/MossBeast.zip]]></Link>
<Dependencies>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/windplusflower/MossBeast]]>
</Repository>
<Issues>
<![CDATA[https://github.com/windplusflower/MossBeast/issues]]>
</Issues>
<Tags>
<Tag>Boss</Tag>
</Tags>
<Authors>
<Author>Windflower</Author>
</Authors>
</Manifest>
<Manifest>
<Name>StartingNotches</Name>
<DisplayName>Starting Notches</DisplayName>
<Description>Lets you play with an adjustable amount of extra Charm Notches, default starts at 2.</Description>
<Version>1.0.1.0</Version>
<Link SHA256="a0c45bf48e668146821d4e79777cf8a10bf0c99b8ebe810ed77dfdd1bcb5985c"><![CDATA[https://github.com/PointZero86/StartingNotches/releases/download/v1.0.1.0/StartingNotches.zip]]></Link>
<Dependencies>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/PointZero86/StartingNotches]]>
</Repository>
<Issues>
<![CDATA[https://github.com/PointZero86/StartingNotches/issues]]>
</Issues>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>PointZero</Author>
</Authors>
</Manifest>
<Manifest>
<Name>EasierGeoEconomy</Name>
<DisplayName>Easier Geo Economy</DisplayName>
<Description>Allows you to multiply the amount gotten per geo piece. Also includes an option to not lose geo upon death.</Description>
<Version>0.1.0.0</Version>
<Link SHA256="B7A4BAD6485EDCDDF24B22F0F4FA2CB8B653691AE3E562F1737C54B216357367"><![CDATA[https://github.com/Thommie0208/EasierGeoEconomy/releases/download/v0.1/EasierGeoEconomy.zip]]></Link>
<Dependencies>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/Thommie0208/EasierGeoEconomy]]>
</Repository>
<Issues>
<![CDATA[https://github.com/Thommie0208/EasierGeoEconomy/issues]]>
</Issues>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>Thommie</Author>
</Authors>
</Manifest>
<Manifest>
<Name>PantheonArchitect</Name>
<DisplayName>Pantheon Architect</DisplayName>
<Description>Design and play custom Pantheon 5 lineups in Hollow Knight! Create your perfect boss gauntlet with any bosses in any order, then share your creations with friends using simple codes.</Description>
<Version>1.0.0.4</Version>
<Link SHA256="e7d10561faef728dd1798a2a692ef30adfc525b4548b81c6b57538dfc62b1fd8"><![CDATA[https://github.com/ultranumbzz/pantheon-architect/releases/download/1.0.0.4/PantheonArchitect.zip]]></Link>
<Dependencies>
</Dependencies>
<Repository>
<![CDATA[https://github.com/ultranumbzz/pantheon-architect]]>
</Repository>
<Issues>
<![CDATA[https://github.com/ultranumbzz/pantheon-architect/issues]]>
</Issues>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>ULTRAnumbz</Author>
</Authors>
</Manifest>
<Manifest>
<Name>HuKing</Name>
<DisplayName>HuKing Modboss</DisplayName>
<Description>A modboss of Elder Ghost Hu</Description>
<Version>2.1.0.0</Version>
<Link SHA256="FB0F2C01EFE0C3F84CBDB41082CA4CF770C99FF9A94E1137EBCA5953B16313D6"><![CDATA[https://github.com/windplusflower/HuKing/releases/download/2.1/HuKing.zip]]></Link>
<Dependencies>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/windplusflower/HuKing]]>
</Repository>
<Issues>
<![CDATA[https://github.com/windplusflower/HuKing/issues]]>
</Issues>
<Tags>
<Tag>Boss</Tag>
</Tags>
<Authors>
<Author>Windflower</Author>
</Authors>
</Manifest>
<Manifest>
<Name>Mythril Soul</Name>
<Description>Adds a new gamemode to Hollow Knight with permadeath expanded to dreams and pausing disabled at or below two masks (harder steel soul).</Description>
<Version>1.0.0.1</Version>
<Link SHA256="e54e07bd5f7f54238dea3e41decdc8cab263ecac2317a562e1610065f4b5e1a4"><![CDATA[https://github.com/gabeStuk/MythrilSoul/releases/download/1.0.0.1/MythrilSoul.zip]]></Link>
<Dependencies>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/gabeStuk/MythrilSoul]]>
</Repository>
<Issues>
<![CDATA[https://github.com/gabeStuk/MythrilSoul/issues]]>
</Issues>
<Tags>
<Tag>Expansion</Tag>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>Sponge2</Author>
</Authors>
</Manifest>
<Manifest>
<Name>U-tils</Name>
<Description>Utilities by and for U-tale</Description>
<Version>0.0.0.1</Version>
<Link SHA256="470288d1496e4ee588e8dc2c30347685257ee956f1c7aaaae1e99c3d8cbe7a76"><![CDATA[https://github.com/U-tale/U-tils/releases/download/v2/U_tils.2.zip]]></Link>
<Dependencies>
</Dependencies>
<Repository>
<![CDATA[https://github.com/U-tale/U-tils]]>
</Repository>
<Issues>
<![CDATA[https://github.com/U-tale/U-tils/issues]]>
</Issues>
<Tags>
<Tag>Utility</Tag>
</Tags>
<Authors>
<Author>U-tale</Author>
</Authors>
</Manifest>
<Manifest>
<Name>CharmReValance</Name>
<Description>Charm and ability overhaul and customization</Description>
<Version>1.25.10.07</Version>
<Link SHA256="73e89cf5a0531a41411a8cb4459f085e554a3279404af441981e1296c462f667"><![CDATA[https://github.com/ValancedBreakfast/CharmReValance/releases/download/1.25.10.07/CharmReValance.dll]]></Link>
<Dependencies>
<Dependency>HKMirror</Dependency>
<Dependency>Satchel</Dependency>
<Dependency>SFCore</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/ValancedBreakfast/CharmReValance]]>
</Repository>
<Issues>
<![CDATA[https://github.com/ValancedBreakfast/CharmReValance/issues]]>
</Issues>
<Tags>
<Tag>Charm</Tag>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>ValancedBreakfast</Author>
</Authors>
</Manifest>
<Manifest>
<Name>DamageValuesRewritten</Name>
<Description>Display damage values when enemies suffer damage</Description>
<Version>1.25.10.07</Version>
<Link SHA256="799c42143150387622d4ecd4597f2fefc17795d2e4682623857121f2e3d01a36"><![CDATA[https://github.com/ValancedBreakfast/DamageValuesRewritten/releases/download/1.25.10.07/DamageValuesRewritten.zip]]></Link>
<Dependencies>
</Dependencies>
<Repository>
<![CDATA[https://github.com/ValancedBreakfast/DamageValuesRewritten]]>
</Repository>
<Issues>
<![CDATA[https://github.com/ValancedBreakfast/DamageValuesRewritten/issues]]>
</Issues>
<Tags>
<Tag>Utility</Tag>
</Tags>
<Authors>
<Author>jngo102</Author>
<Author>ValancedBreakfast</Author>
</Authors>
</Manifest>
<Manifest>
<Name>MyHK</Name>
<Description>An assisting mod for HK that can improve the gaming experience significantly</Description>
<Version>1.2.0.5</Version>
<Link SHA256="da1385b43ccf91d50b39de34150db00418cdc4235c8c87377a72fa3bcc543580"><![CDATA[https://github.com/QiQi7-7/MyHK/releases/download/v1.2.0.5/MyHK-v1.2.0.5.zip]]></Link>
<Dependencies>
<Dependency>Satchel</Dependency>
<Dependency>HKTool</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/QiQi7-7/MyHK]]>
</Repository>
<Issues>
<![CDATA[https://github.com/QiQi7-7/MyHK/issues]]>
</Issues>
<Tags>
<Tag>Optimization</Tag>
</Tags>
<Authors>
<Author>QiQi7</Author>
</Authors>
</Manifest>
<Manifest>
<Name>Charm Editor</Name>
<Description>This mod allows you to change charm notches and dashmaster</Description>
<Version>1.1.0.0</Version>
<Link SHA256="7cb8e378626c1c35d4939951591b15b1e3c8ef9b589a0e598ab12de91c4dc309"><![CDATA[https://github.com/Vitaxses/HKCharmEditor/releases/download/v1.1.0.0/CharmEditor.zip]]></Link>
<Dependencies>
</Dependencies>
<Repository>
<![CDATA[https://github.com/Vitaxses/HKCharmEditor]]>
</Repository>
<Issues>
<![CDATA[https://github.com/Vitaxses/HKCharmEditor/issues]]>
</Issues>
<Tags>
<Tag>Utility</Tag>
</Tags>
<Authors>
<Author>Vitaxses</Author>
</Authors>
</Manifest>
<Manifest>
<Name>Limitations</Name>
<Description>Create none endless limitations</Description>
<Version>1.0.0.0</Version>
<Link SHA256="44805472b62dfde5354c2dffaf9fdfcebbf8d78a5be91271d7c7cd6fc0df3f27"><![CDATA[https://github.com/Vitaxses/HKLimitations/releases/download/v1.0.0.0/Limitations.zip]]></Link>
<Dependencies>
</Dependencies>
<Repository>
<![CDATA[https://github.com/Vitaxses/HKLimitations]]>
</Repository>
<Issues>
<![CDATA[https://github.com/Vitaxses/HKLimitations/issues]]>
</Issues>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>Vitaxses</Author>
</Authors>
</Manifest>
<Manifest>
<Name>OnlyBosses</Name>
<Description>OnlyBosses is an alternative to TheHuntIsOn enemy module (which removes basic enemies), but since it got removed this mod is here.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="173ed5f0a307177d4abe9bc3231e500f8b3b1973b9de82b94c6fc7e8891a035c"><![CDATA[https://github.com/Vitaxses/HKOnlyBosses/releases/download/v1.0.0.0/OnlyBosses.zip]]></Link>
<Dependencies>
</Dependencies>
<Repository>
<![CDATA[https://github.com/Vitaxses/HKOnlyBosses/]]>
</Repository>
<Issues>
<![CDATA[https://github.com/Vitaxses/HKOnlyBosses/issues/]]>
</Issues>
<Tags>
<Tag>Utility</Tag>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>Vitaxses</Author>
</Authors>
</Manifest>
<Manifest>
<Name>GPZPractice</Name>
<Description>This mod allows you config spawning of Zotelings.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="0e21f499fbd7366aa29aa55eabe665fd343cbd497cb50d0bb08adce601b8427b"><![CDATA[https://github.com/Vitaxses/HKGPZPractice/releases/download/v1.0.0.0/GPZPractice.zip]]></Link>
<Dependencies>
</Dependencies>
<Repository>
<![CDATA[https://github.com/Vitaxses/HKGPZPractice/]]>
</Repository>
<Issues>
<![CDATA[https://github.com/Vitaxses/HKGPZPractice/issues/]]>
</Issues>
<Tags>
<Tag>Utility</Tag>
</Tags>
<Authors>
<Author>Vitaxses</Author>
</Authors>
</Manifest>
<Manifest>
<Name>FrameLimiter</Name>
<Description>Can limit fps to whatever you like (can be usefull for frame specific skips)</Description>
<Version>1.0.0.0</Version>
<Link SHA256="f2591becc928bc80c24b7802c8d59cf74ce8bb11d1d94b3e916bd9478c16dc6b"><![CDATA[https://github.com/Vitaxses/HKFrameLimiter/releases/download/v1.0.0.0/FrameLimiter.zip]]></Link>
<Dependencies>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/Vitaxses/HKFrameLimiter/]]>
</Repository>
<Issues>
<![CDATA[https://github.com/Vitaxses/HKFrameLimiter/issues/]]>
</Issues>
<Tags>
<Tag>Utility</Tag>
</Tags>
<Authors>
<Author>Vitaxses</Author>
</Authors>
</Manifest>
<Manifest>
<Name>Faction Elimination</Name>
<Description>A custom gamemode for HKMP where teams collect upgrades and fight each other.</Description>
<Version>0.1.2.0</Version>
<Link SHA256="6e7a464f42eb0bcc79832fbd579030fd859b75d00aea66459a3ad8fe3ae45ffb"><![CDATA[https://github.com/EmptyEagle/FactionElimination/releases/download/v0.1.2.0/FactionElimination.zip]]></Link>
<Dependencies>
<Dependency>Charm Changer</Dependency>
<Dependency>MenuChanger</Dependency>
<Dependency>ItemChanger</Dependency>
<Dependency>TheHuntIsOn</Dependency>
<Dependency>HkmpPouch</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/EmptyEagle/FactionElimination]]>
</Repository>
<Authors>
<Author>EmptyEagle</Author>
<Author>Nimble102</Author>
</Authors>
</Manifest>
<Manifest>
<Name>Shared Health</Name>
<Description>A HKMP addon to synchronize damage and healing across teams.</Description>
<Version>1.0.1.0</Version>
<Link SHA256="064264ED357AD1E885AFC27ADA2D8A3575285E318FF06290B702CFF06948BE6D"><![CDATA[https://github.com/Charcoal2000/SharedHealth/releases/download/1.0.1.0/SharedHealth.zip]]></Link>
<Dependencies>
<Dependency>HKMP</Dependency>
<Dependency>HkmpPouch</Dependency>
<Dependency>HKMirror</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/Charcoal2000/SharedHealth]]>
</Repository>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>Charcoal2000</Author>
</Authors>
</Manifest>
<Manifest>
<Name>Wrong Gravity</Name>
<Description>Hallownest? Hɐlloʍuǝsʇ!</Description>
<Version>1.0.0.0</Version>
<Link SHA256="A95BCAE12E8DD96EEA1D1107A3CB71D3090525CE864BFBF6E34E3BCB542D5137"><![CDATA[https://github.com/FrogBishop/HollowKnight.WrongGravity/releases/download/1.0.0.0/WrongGravity.zip]]></Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/FrogBishop/HollowKnight.WrongGravity]]>
</Repository>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>FrogBishop</Author>
</Authors>
</Manifest>
<Manifest>
<Name>Uumuu Hack</Name>
<Description>This mod would make Uumuu only attack for once before Quirrel pops its shield from the second cycle on.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="6D2B5AB8370B6A11BCEDB95A747CB10B061A87281B04C28AD01D09EA66933B59"><![CDATA[https://github.com/FrogBishop/HollowKnight.UumuuHack/releases/download/1.0.0.0/UumuuHack.zip]]></Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/FrogBishop/HollowKnight.UumuuHack]]>
</Repository>
<Tags>
<Tag>Boss</Tag>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>FrogBishop</Author>
</Authors>
</Manifest>
<Manifest>
<Name>Quasar Radiance</Name>
<Description>A version of Any Radiance 3.0 that's heavily modified to be more fun and enjoyable by casual players while still providing some level of challenge. Very unique fight that's not impossibly hard like the real thing. The mod is meant to be played with a 300 FPS cap so if you play on lower or higher it's gonna be harder or easier than intended.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="5c8aa8a823d889f4ff3a56c2d3f59437d0ca653f9555cf33e14fa4ba7047ed41"><![CDATA[https://github.com/Talezshadid/Shattered-Quasar-/releases/download/A/ShatteredQuasar.dll]]></Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/Talezshadid/Shattered-Quasar-]]>
</Repository>
<Tags>
<Tag>Boss</Tag>
</Tags>
<Authors>
<Author>talezshadid</Author>
</Authors>
</Manifest>
<Manifest>
<Name>ScreenShakeService</Name>
<Description>Removes screen shake: Screen Shake Service simply supports slashing Scooped Swordsman's (Hollow Knight's) superfluous screen shake since said shaking stimulates some souls' squeamishness.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="b8c4f83c987df6c68782d4e0005352b7ad98cf495c79a03bc5563789d6efe54a">
<![CDATA[https://github.com/Emik03/ScreenShakeService/releases/download/1/ScreenShakeService.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/Emik03/ScreenShakeService]]>
</Repository>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>Emik</Author>
</Authors>
</Manifest>
<Manifest>
<Name>Bonfire</Name>
<Description>A level-up system in Hollow Knight for a more realistic Dark Souls experience (a well-known Hollow Knight ripoff).</Description>
<Version>3.0.1.0</Version>
<Link SHA256="d293c9162b4a2262f5cc760694bd60f1e832272e1031a87222dd483fb9c6c25f">
<![CDATA[https://github.com/TheodoreChristianRadu/Bonfire/releases/download/3.0.1/Bonfire.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/TheodoreChristianRadu/Bonfire]]>
</Repository>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>ricardosouzag</Author>
<Author>Théodore</Author>
</Authors>
</Manifest>
<Manifest>
<Name>Lightbringer</Name>
<Description>Major gameplay overhaul: fight your way through Hallownest with a lance of light, brand new charms and radiant spells to seek the binding light that plagues our dreams.</Description>
<Version>3.0.1.0</Version>
<Link SHA256="9ce3c7d55ee7269f0ff8ce47902855661dbed994bd144b820fbd06150f10dd91">
<![CDATA[https://github.com/TheodoreChristianRadu/Lightbringer/releases/download/3.0.1/Lightbringer.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/TheodoreChristianRadu/Lightbringer]]>
</Repository>
<Tags>
<Tag>Boss</Tag>
<Tag>Expansion</Tag>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>753</Author>
<Author>56</Author>
<Author>a2659802</Author>
<Author>Théodore</Author>
</Authors>
</Manifest>
<Manifest>
<Name>Exaltation</Name>
<Description>Implements the scrapped mechanic of "charm glorification": empower your charms by progressing through Godhome.</Description>
<Version>2.1.5.0</Version>
<Link SHA256="a60e44ebf8d70c95657f692debafb325e4dbe533caddbb19bd78bc532df8c167">
<![CDATA[https://github.com/TheodoreChristianRadu/Exaltation/releases/download/2.1.5/Exaltation.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/TheodoreChristianRadu/Exaltation]]>
</Repository>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>Xhuis</Author>
<Author>Théodore</Author>
</Authors>
</Manifest>
<Manifest>
<Name>Pale Shadow</Name>
<Description>Homemade Pure Vessel boss mod.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="7e6647f1c0aad339149db1e109c1d49d3b4e4d232779af95f6a5f83a94716ded">
<![CDATA[https://github.com/HK-Modding-Preservation/ChineseMods/releases/download/pale-shadow/Pale.Shadow.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/HK-Modding-Preservation/ChineseMods]]>
</Repository>
<Tags>
<Tag>Boss</Tag>
</Tags>
<Authors>
<Author>腐草ROT</Author>
</Authors>
</Manifest>
<Manifest>
<Name>INFINITY</Name>
<Description>A pure vessel boss mod.</Description>
<Version>0.2.0.0</Version>
<Link SHA256="eaa73bd0136e1efb2dcd8adf32d98a4ea65621690f28a418c1443d313f7b0b76">
<![CDATA[https://github.com/ROTTEN108/INFINITY/releases/download/v0.2.0.0/INFINITY.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
<Dependency>HKMirror</Dependency>
<Dependency>HKTool</Dependency>
<Dependency>Nosk God</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/ROTTEN108/INFINITY]]>
</Repository>
<Tags>
<Tag>Boss</Tag>
</Tags>
<Authors>
<Author>ROTTEN108</Author>
</Authors>
</Manifest>
<Manifest>
<Name>Floor is Lava</Name>
<Description>Is a floor is lava mod for Hollow Knight. PLease read Read.me</Description>
<Version>1.0.7.0</Version>
<Link SHA256="641407275600327FAE07CEC56D368ED2F7B0C1C71D343C1946CCAA3A5AD4F3E8">
<![CDATA[https://github.com/derkrankesenator/Hollow-Knight-Floor-is-Lava/releases/download/v1.0.7.1/Floor_is_lava.zip]]>
</Link>
<Dependencies>
<Dependency>MagicUI</Dependency>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository><![CDATA[https://github.com/derkrankesenator/Hollow-Knight-Floor-is-Lava]]></Repository>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>derkrankesenator</Author>
</Authors>
</Manifest>
<Manifest>
<Name>Omega Radiance</Name>
<Description>Face the god of power, a modified version of Any Radiance which was made not to be harder but to be a cool and unique fight.</Description>
<Version>0.0.1.0</Version>
<Link SHA256="e3dc183164a37ef713ce4bec4a7c3ff57d921d79e72906d417fa845e6d63ce10">
<![CDATA[https://github.com/Talezshadid/Omega-Radiance/raw/main/OmegaRadiance.dll]]>
</Link>
<Dependencies>
<Dependency>ModCommon</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/Talezshadid/Omega-Radiance]]>
</Repository>
<Tags>
<Tag>Boss</Tag>
</Tags>
<Authors>
<Author>talezshadid</Author>
</Authors>
</Manifest>
<Manifest>
<Name>Sunset Rad</Name>
<Description>Modded Radiance</Description>
<Version>1.0.0.1</Version>
<Link SHA256="e723866e1f2ee2e023a7901f423cdda437a537acc8faf9e84ef7c0fc150b1bb9">
<![CDATA[https://github.com/ROTTEN108/Sunset-Rad/releases/download/1.0.0.1/SUNSET.Rad.dll]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
<Dependency>HKMirror</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/ROTTEN108/SunSet-Rad]]>
</Repository>
<Tags>
<Tag>Boss</Tag>
</Tags>
<Authors>
<Author>ROTTEN108</Author>
</Authors>
</Manifest>
<Manifest>
<Name>PURITY</Name>
<Description>New Version of "Sunset Samsara II". Modded Radiance.</Description>
<Version>1.0.3.0</Version>
<Link SHA256="c1bd3c4c2e2afdea7a7ffa65127509a239737c1b43588121fb2208027ca9a3c9">
<![CDATA[https://github.com/ROTTEN108/PURITY/releases/download/v1.0.3.0/PURITY.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
<Dependency>HKMirror</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/ROTTEN108/PURITY]]>
</Repository>
<Tags>
<Tag>Boss</Tag>
</Tags>
<Authors>
<Author>ROTTEN108</Author>
</Authors>
</Manifest>
<Manifest>
<Name>Pure Shape</Name>
<Description>Changes the player's spell and nail arts, players can use skills similar to pure containers, such as blocking counterattacks.</Description>
<Version>1.0.0.1</Version>
<Link SHA256="ff396b617d64033f1926822ec49426638df1e91993c6aeb7b046f4b862da4abe">
<![CDATA[https://github.com/ROTTEN108/Pure-Shape/releases/download/0.0.1.0/Pure.Shape.dll]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
<Dependency>HKMirror</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/ROTTEN108/Pure-Shape]]>
</Repository>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
<Authors>
<Author>ROTTEN108</Author>
</Authors>
</Manifest>
<Manifest>
<Name>Castless Focus</Name>
<Description>Stops the focus button from casting when tapped. (Note: This causes tapping the focus button to always start the focus, with the same delay as if it was held)</Description>
<Version>1.0.0.0</Version>
<Link SHA256="1EF89B105D39BC527425202A37A5E0BFE24BDDBEFD282B3B311D2859D4ACD3AB">
<![CDATA[https://github.com/TheRealAlph4/CastlessFocus/releases/download/v1.0.0.0/CastlessFocus.zip]]>
</Link>
<Dependencies>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/TheRealAlph4/CastlessFocus]]>
</Repository>
<Authors>
<Author>Alph4</Author>
</Authors>
</Manifest>
<Manifest>
<Name>BingoBoardReplay</Name>
<Description>A mod for bingo tournament organizers to help restream the board when the players have stream delay. See GitHub readme for usage. </Description>
<Version>1.3.1.0</Version>
<Link SHA256="AB07D2CE74E7F2112082B96199116A35B679D6EE3FEF703A17A92D02AF503AD3">
<![CDATA[https://github.com/TheRealAlph4/HollowKnight.BingoBoardReplay/releases/download/v1.3.1.0/BingoBoardReplay.zip]]>
</Link>
<Dependencies>
<Dependency>BingoSync</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/TheRealAlph4/HollowKnight.BingoBoardReplay]]>
</Repository>
<Authors>
<Author>Alph4</Author>
</Authors>
</Manifest>
<Manifest>
<Name>ModCommon</Name>
<Description>A hollow knight mod that provides an API of helpers and other utilities for modding hollow knight.
Not recommended for use in new mods.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="a4959501676033bb66136b466597f266794ef3627c92c4455c94b2a6450b69aa">
<![CDATA[https://github.com/HK-Modding-Preservation/ModCommon/releases/download/v1/ModCommon_1.5.dll]]>
</Link>
<Dependencies/>
<Repository>
<![CDATA[https://github.com/HK-Modding-Preservation/ModCommon]]>
</Repository>
<Tags>
<Tag>Library</Tag>
</Tags>
<Authors>
<Author>Kerr1291</Author>
</Authors>
</Manifest>
<Manifest>
<Name>RgbRando</Name>
<Description>A Randomizer connection that allows randomization of RGB values for the shader.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="4844f1821f552bb74aa049ce2d4ad29fcb64cce8a1bbd826fcc9c168d209b96f">
<![CDATA[https://github.com/Pengwizard/RgbRando/releases/download/v1.0/RgbRando.zip]]>
</Link>
<Dependencies>
<Dependency>ItemChanger</Dependency>
<Dependency>MenuChanger</Dependency>
<Dependency>Randomizer 4</Dependency>
<Dependency>RandomizerCore</Dependency>
<Dependency>RandomizerCore.Json</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/Pengwizard/RgbRando/]]>
</Repository>
<Integrations>
<Integration>RandoSettingsManager</Integration>
</Integrations>
<Authors>
<Author>Nopre</Author>
<Author>TheMathGeek_314</Author>
</Authors>
</Manifest>
<Manifest>
<Name>LoadRandomizer</Name>
<Description>Randomizes load times from 0 to 10, weighted towards lower values.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="11ba6dbadf929810be2025e2c94d105310b242686ca15a2300980e2def448b1b">
<![CDATA[https://github.com/notahumanhand/LoadRandomizer/releases/download/1.0/LoadRandomizer.zip]]>
</Link>
<Dependencies>
<Dependency>LoadNormalizer</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/notahumanhand/LoadRandomizer]]>
</Repository>
<Authors>
<Author>spleen</Author>
<Author>TheMathGeek_314</Author>
</Authors>
</Manifest>
<Manifest>
<Name>EverySceneUtil</Name>
<Description>A developer tool for running code on every scene in the game</Description>
<Version>1.2.0.0</Version>
<Link SHA256="FB530E8CB9680258D87D24C3B41E75D9B47344BE70D382FEBFAF2D56C9F830A2"><![CDATA[https://github.com/TheMathGeek314/EverySceneUtil/releases/download/v1.2.0.0/EverySceneUtil.zip]]></Link>
<Dependencies>
</Dependencies>
<Repository>
<![CDATA[https://github.com/TheMathGeek314/EverySceneUtil/]]>
</Repository>
<Tags>
<Tag>Utility</Tag>
</Tags>
<Authors>
<Author>TheMathGeek_314</Author>
</Authors>
</Manifest>
<Manifest>
<Name>RegretRecoveryRestoration</Name>
<Description>A Randomizer connection which restores the ability to recover your shade when egg shop removes it</Description>
<Version>1.0.1.0</Version>
<Link SHA256="8F15B957E5FCF1038146F939C6ADFC617152843D18B0159A049383964A7A2696"><![CDATA[https://github.com/TheMathGeek314/RegretRecoveryRestoration/releases/download/v1.0.1.0/RegretRecoveryRestoration.zip]]></Link>
<Dependencies>
<Dependency>ItemChanger</Dependency>
<Dependency>MenuChanger</Dependency>
<Dependency>Randomizer 4</Dependency>
<Dependency>RandomizerCore</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/TheMathGeek314/RegretRecoveryRestoration/]]>
</Repository>
<Integrations>
<Integration>RandoSettingsManager</Integration>
</Integrations>
<Authors>
<Author>TheMathGeek_314</Author>
</Authors>
</Manifest>
<Manifest>
<Name>TheRealTransitionRando</Name>
<Description>A Randomizer connection that puts transitions into the same pool as the other items</Description>
<Version>1.0.1.1</Version>
<Link SHA256="75E56DEFCA2D38503006FB37E08EDB2D8BDE25AA5208B7F77D6CEC5020CC3C1F"><![CDATA[https://github.com/TheMathGeek314/TheRealTransitionRando/releases/download/v1.0.1.1/TheRealTransitionRando.zip]]></Link>
<Dependencies>
<Dependency>ItemChanger</Dependency>
<Dependency>MenuChanger</Dependency>
<Dependency>Randomizer 4</Dependency>
<Dependency>RandomizerCore</Dependency>
<Dependency>RandomizerCore.Json</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/TheMathGeek314/TheRealTransitionRando/]]>
</Repository>
<Integrations>
<Integration>BugPrince</Integration>
<Integration>ItemSync</Integration>
<Integration>RandoMapCore</Integration>
<Integration>RandoSettingsManager</Integration>
<Integration>RecentItemsDisplay</Integration>
<Integration>Scattered and Lost</Integration>
</Integrations>
<Authors>
<Author>TheMathGeek_314</Author>
</Authors>
</Manifest>
<Manifest>
<Name>CorpseDreamRando</Name>
<Description>A Randomizer connection that adds dream nail dialogue for background corpses</Description>
<Version>1.0.1.0</Version>
<Link SHA256="625D9CD723CB51D87F9661530AA855463B14A19228B0AC5A813D18C49EC7E9A9"><![CDATA[https://github.com/TheMathGeek314/CorpseDreamRando/releases/download/v1.0.1.0/CorpseDreamRando.zip]]></Link>
<Dependencies>
<Dependency>ItemChanger</Dependency>
<Dependency>MenuChanger</Dependency>
<Dependency>Randomizer 4</Dependency>
<Dependency>RandomizerCore</Dependency>
<Dependency>RandomizerCore.Json</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/TheMathGeek314/CorpseDreamRando/]]>
</Repository>
<Integrations>
<Integration>Lore Randomizer</Integration>
<Integration>RandoSettingsManager</Integration>
</Integrations>
<Authors>
<Author>TheMathGeek_314</Author>
</Authors>
</Manifest>
<Manifest>
<Name>NetworkingPlando</Name>
<Description>A supplemental mod for the Networking plando</Description>
<Version>1.0.0.1</Version>
<Link SHA256="45F5EB45AD14F03CC487840290E6FBACC86B77AA78849052F57222361AD58809"><![CDATA[https://github.com/TheMathGeek314/NetworkingPlando/releases/download/v1.0.0.1/NetworkingPlando.zip]]></Link>
<Dependencies>
<Dependency>AccessRandomizer</Dependency>
<Dependency>AdditionalMaps</Dependency>
<Dependency>Extra Rando</Dependency>
<Dependency>Fishing</Dependency>
<Dependency>HKTool</Dependency>
<Dependency>ItemChanger</Dependency>
<Dependency>ItemChangerDataLoader</Dependency>
<Dependency>ItemSync</Dependency>
<Dependency>MoreDoors</Dependency>
<Dependency>MoreStags</Dependency>
<Dependency>RandoMapMod</Dependency>
<Dependency>Randomizable Levers</Dependency>
<Dependency>Randomizer 4</Dependency>
<Dependency>RandoPlus</Dependency>
<Dependency>Rope Rando</Dependency>
<Dependency>Scatternest</Dependency>
<Dependency>TheGloryOfBeingAFoolRandomizer</Dependency>
<Dependency>TheRealJournalRando</Dependency>
<Dependency>VendorRando</Dependency>
<Dependency>YetAnotherRandoConnection</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/TheMathGeek314/NetworkingPlando/]]>
</Repository>
<Authors>
<Author>TheMathGeek_314</Author>
<Author>nerthul11</Author>
<Author>Purenail</Author>
</Authors>
</Manifest>
<Manifest>
<Name>MoreStags</Name>
<Description>A Randomizer connection which adds new stag stations</Description>
<Version>1.0.3.1</Version>
<Link SHA256="63EB3B47CFCD9E049856F7B03053D877C6AC159A0DD3CC92AA9F50ACA2CA388D"><![CDATA[https://github.com/TheMathGeek314/MoreStags/releases/download/v1.0.3.1/MoreStags.zip]]></Link>
<Dependencies>
<Dependency>AlreadyEnoughPlayMaker</Dependency>
<Dependency>ItemChanger</Dependency>
<Dependency>MenuChanger</Dependency>
<Dependency>Randomizer 4</Dependency>
<Dependency>RandomizerCore</Dependency>