forked from hk-modding/modlinks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ModLinks.xml
3435 lines (3424 loc) · 147 KB
/
ModLinks.xml
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://raw.githubusercontent.com/HollowKnight-Modding/HollowKnight.ModLinks/main/Schemas/ModLinks.xml">
<!--
<Manifest>
<Name>Test Name</Name>
<Description>Test description</Description>
<Version>0.0.0.0</Version>
Only one of these two
<Links>
<Linux SHA256="0000000000000000000000000000000000000000000000000000000000000000"><![CDATA[https://linux.link]]></Linux>
<Mac SHA256="0000000000000000000000000000000000000000000000000000000000000000"><![CDATA[https://mac.link]]></Mac>
<Windows SHA256="0000000000000000000000000000000000000000000000000000000000000000"><![CDATA[https://windows.link]]></Windows>
</Links>
<Link SHA256="0000000000000000000000000000000000000000000000000000000000000000"><![CDATA[https://multiplatform.link]]></Link>
<Dependencies>
<Dependency>Another mod's name that this mod depends on</Dependency>
</Dependencies>
<Integrations>
<Integration>Another mod's name, like the dependency list, but not a hard dependency, but extra stuff when it is installed alongside</Integration>
</Integrations>
<Tags>
<Tag>Either of: 'Boss', 'Cosmetic', 'Expansion', 'Gameplay', 'Library', 'Utility'</Tag>
</Tags>
</Manifest>
-->
<Manifest>
<Name>Nightmare Spark</Name>
<Description>Adds a Grimm Troupe themed charm with various charm synergies.</Description>
<Version>1.1.0.0</Version>
<Link SHA256="c588b5b90b9b49b456ebd2a935ffc4e6a63c81f63dda92c1d0bffde8a0c1b696">
<![CDATA[https://github.com/RiverRobot/Nightmare-Spark/releases/download/v1.1.0/Nightmare.Spark.zip]]></Link>
<Dependencies>
<Dependency>Satchel</Dependency>
<Dependency>SFCore</Dependency>
<Dependency>ItemChanger</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/RiverRobot/Nightmare-Spark]]>
</Repository>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
</Manifest>
<Manifest>
<Name>Heal On Wall</Name>
<Description>Makes it so you can Heal On Walls</Description>
<Version>1.0.1.0</Version>
<Link SHA256="B10F83E58F54B184A634FB41F6E11A99E962F2C8D6F19EA99685D8D48BD1873B">
<![CDATA[https://github.com/Zickles/Heal_On_Wall/releases/download/how0.1/Heal_On_Wall.zip]]></Link>
<Dependencies>
<Dependency>Satchel</Dependency>
<Dependency>SFCore</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/Zickles/Heal_On_Wall]]>
</Repository>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
</Manifest>
<Manifest>
<Name>Better Void Heart</Name>
<Description>Keep Kingsoul soul regen when you pick up Void Heart.</Description>
<Version>1.1.0.0</Version>
<Link SHA256="afac1879df76d5cc52993a87f629a9ec6ae5abcc7f1eeafa6f7a6fca748ae2b4">
<![CDATA[https://github.com/epiceuropean/Better-Void-Heart/releases/download/better-void-heart-v1.1/Better.Void.Heart.zip]]>
</Link>
<Dependencies>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/epiceuropean/Better-Void-Heart]]>
</Repository>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
</Manifest>
<Manifest>
<Name>RadianceExtras</Name>
<Description>Adds Extra Things to the Abs Rad Fight</Description>
<Version>1.0.0.0</Version>
<Link SHA256="6FD9808BD0E1A31F315E3A794CA5F322D4AABB55AFFCCB0C2566B0BD585FE973">
<![CDATA[https://github.com/Zickles/RadianceExtras/releases/download/1.0.2/RadianceExtras.zip]]></Link>
<Dependencies>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/Zickles/RadianceExtras]]>
</Repository>
<Tags>
<Tag>Boss</Tag>
</Tags>
</Manifest>
<Manifest>
<Name>Dead Quirrel</Name>
<Description>He's dead. Stop being in denial. Now featuring support for whether or not he has a mask.</Description>
<Version>1.0.1.0</Version>
<Link SHA256="419f8358d1dfaaa863d8c18a405d979e0e38db0614c0c043dde142ca7e80ecb0">
<![CDATA[https://github.com/Hoo-Knows/HollowKnight.DeadQuirrel/releases/download/v1.0.1/DeadQuirrel.zip]]>
</Link>
<Dependencies>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/Hoo-Knows/HollowKnight.DeadQuirrel]]>
</Repository>
<Tags>
<Tag>Cosmetic</Tag>
</Tags>
</Manifest>
<Manifest>
<Name>Challenge Mode</Name>
<Description>A mod that adds randomly selected challege modifiers to Godhome with several customization options. See ReadMe for info on modifiers and more.</Description>
<Version>1.0.1.2</Version>
<Link SHA256="909911BFCFF057F4CE5318FD07D3119E86464BA4218C6C5C2A737BDB05A16ADA">
<![CDATA[https://github.com/Hoo-Knows/HollowKnight.ChallengeMode/releases/download/v1.0.1.2/ChallengeMode.zip]]>
</Link>
<Dependencies>
<Dependency>SFCore</Dependency>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/Hoo-Knows/HollowKnight.ChallengeMode]]>
</Repository>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
</Manifest>
<Manifest>
<Name>Damage Values</Name>
<Description>Shows damage numbers when striking an enemy.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="620ffc698da598e819f3c96755929aede40f26f222e4f06761623da192c5e3e9"><![CDATA[https://github.com/jngo102/DamageValues/releases/download/1.0.0.0/DamageValues.zip]]></Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/jngo102/DamageValues]]>
</Repository>
<Tags>
<Tag>Cosmetic</Tag>
</Tags>
</Manifest>
<Manifest>
<Name>FallDamage</Name>
<Description>Player takes fall damage proportional to their max health and time spent falling.</Description>
<Version>1.1.0.0</Version>
<Link SHA256="3707FD192891049B8105E7ECAC63098C759B1937CD56099D165F161F25B5178E">
<![CDATA[https://github.com/Makeit-Hardcore/HK-FallDamage/releases/download/v1.1.0/FallDamage.zip]]>
</Link>
<Dependencies>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/Makeit-Hardcore/HK-FallDamage]]>
</Repository>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
</Manifest>
<Manifest>
<Name>HueShifter</Name>
<Description>Uses shaders to change the map colours. Can also make everything rainbows.</Description>
<Version>0.2.1.0</Version>
<Link SHA256="7C8B4129C2864EDAEA52F545DFA21AD2FF9932EBAB227FD1C4D0BD257A576360">
<![CDATA[https://github.com/beesnation/HueShifter/releases/download/v0.2.1.0/HueShifter.zip]]>
</Link>
<Dependencies>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/beesnation/HueShifter]]>
</Repository>
<Tags>
<Tag>Cosmetic</Tag>
</Tags>
</Manifest>
<Manifest>
<Name>CriticalSlash</Name>
<Description>Makes nail arts deal extra damage and return control faster if released at the earliest moment.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="FF220F390F5AF66F146EB0192ED8323B72526D17C769D57AF95C2684EBFAD569">
<![CDATA[https://github.com/beesnation/CriticalSlash/releases/download/v1.0.0.0/CriticalSlash.zip]]>
</Link>
<Dependencies>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/beesnation/CriticalSlash]]>
</Repository>
<Tags>
<Tag>Gameplay</Tag>
</Tags>
</Manifest>
<Manifest>
<Name>Mask Maker Notches</Name>
<Description>A mod that adds a few buyable Charm Notches in Mask Maker's room.</Description>
<Version>1.2.0.0</Version>
<Link SHA256="345DF009A1A46CFCFC1864A05F7D4E4681083035D6315CD14B4BEF16CCA29707">
<![CDATA[https://github.com/IronLucario2012/MaskMakerNotchesMod/releases/download/v1.2/MaskMakerNotches.zip]]>
</Link>
<Dependencies>
<Dependency>ItemChanger</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/IronLucario2012/MaskMakerNotchesMod/]]>
</Repository>
<Integrations>
<Integration>Randomizer 4</Integration>
</Integrations>
<Tags>
<Tag>Utility</Tag>
</Tags>
</Manifest>
<Manifest>
<Name>AbsoluteZote</Name>
<Description>A new GPZ mod boss.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="1aad22dd9c6d90a37bb754dd2ead381e8f473f973189d4faa840648b94118394">
<![CDATA[https://github.com/yunjord/HollowKnight.AbsoluteZote/releases/download/1.0/AbsoluteZote.zip]]>
</Link>
<Dependencies>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/yunjord/HollowKnight.AbsoluteZote/]]>
</Repository>
</Manifest>
<Manifest>
<Name>HitboxOnly</Name>
<Description>Show only hitboxes and hide all sprites. This provides a new experience for several bosses since attack anticipation is no longer visible.</Description>
<Version>1.3.0.0</Version>
<Link SHA256="a10a68b088628c6c4420067555e20b9cbc12e1238af26696cd1c0383b6c2dc17">
<![CDATA[https://github.com/yunjord/HollowKnight.Abstraction/releases/download/1.3/HitboxOnly-v1.3.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/yunjord/HollowKnight.Abstraction/]]>
</Repository>
</Manifest>
<Manifest>
<Name>PureZote</Name>
<Description>Enabled Grey Prince Zote to summon Eternal Ordeal and upgraded its skills.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="52fa80b5fb01ae7d756f0b9af3958c4f79cb95b826d14a3d5fef2692b77f65a5">
<![CDATA[https://github.com/yunjord/PureZote/releases/download/1.0/PureZote.zip]]>
</Link>
<Dependencies>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/yunjord/PureZote/]]>
</Repository>
</Manifest>
<Manifest>
<Name>SteelSoulHUD</Name>
<Description>Enables the Steel Soul HUD in normal mode.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="C411A892B6409537EF01625EE3B42722D4C0FBA4F051316096939CE0DD46A7AF">
<![CDATA[https://github.com/dpinela/SteelSoulHUD/releases/download/v1.0/SteelSoulHUD.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/dpinela/SteelSoulHUD/]]>
</Repository>
</Manifest>
<Manifest>
<Name>Fyrenest</Name>
<Description>Adds 30 new charms, renames areas, and creates new lore to explore! Read the README.txt for info on how to get charms normally. If you don't want to get them this way, go into the Fyrenest mod menu! Near the bottom, it should say "Give all Charms"</Description>
<Version>2.12.45.65</Version>
<Link SHA256="74302dbf315a5cf592408d78cdb43f1c3f8490ae5923d866f058803f1f4f8c1e">
<![CDATA[https://github.com/BubkisLord/Fyrenest/releases/download/v2.12.45.65/Fyrenest.zip]]>
</Link>
<Dependencies>
<Dependency>SFCore</Dependency>
<Dependency>Satchel</Dependency>
<Dependency>ItemChanger</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/BubkisLord/Fyrenest/]]>
</Repository>
</Manifest>
<Manifest>
<Name>Transcendence</Name>
<Description>Adds 14 new charms with various abilities. Can be used with the randomizer.</Description>
<Version>1.2.1.0</Version>
<Link SHA256="C2E0C49A33FF5A666CD6F22A3741CD5CAB7A1934ADFFEA7C9FEA88E836BFEAFB">
<![CDATA[https://github.com/dpinela/Transcendence/releases/download/v1.2.1/Transcendence.zip]]>
</Link>
<Dependencies>
<Dependency>SFCore</Dependency>
<Dependency>ItemChanger</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/dpinela/Transcendence/]]>
</Repository>
</Manifest>
<Manifest>
<Name>RainbowEggs</Name>
<Description>A randomizer add-on that makes Rancid Eggs more colorful.</Description>
<Version>1.1.0.0</Version>
<Link SHA256="5732CF5A903913D6E2D107F1425EA0B777A9405653F8427470FEF2A54F02BB45">
<![CDATA[https://github.com/dpinela/RainbowEggs/releases/download/v1.1/RainbowEggs.zip]]>
</Link>
<Dependencies>
<Dependency>Randomizer 4</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/dpinela/RainbowEggs/]]>
</Repository>
</Manifest>
<Manifest>
<Name>RandoZoomZoom</Name>
<Description>A randomizer add-on that makes early movement and geo collection a bit faster.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="B3EAA867B756A3773FFD57C8C222A71C6A043BFC4CA28BFC5F849CF4E7A3F3A7">
<![CDATA[https://github.com/dpinela/RandoZoomZoom/releases/download/v1.0/RandoZoomZoom.zip]]>
</Link>
<Dependencies>
<Dependency>Randomizer 4</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/dpinela/RandoZoomZoom/]]>
</Repository>
</Manifest>
<Manifest>
<Name>BenchwarpSpoilerCloak</Name>
<Description>A Benchwarp add-on that hides yet-to-be-visited bench names in the menu.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="A570AA49EAE949A91C7F5192A80F70F741247C92696B9658A48D7FFE66039B5E">
<![CDATA[https://github.com/dpinela/BenchwarpSpoilerCloak/releases/download/v1.0/BenchwarpSpoilerCloak.zip]]>
</Link>
<Dependencies>
<Dependency>Benchwarp</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/dpinela/BenchwarpSpoilerCloak/]]>
</Repository>
</Manifest>
<Manifest>
<Name>QoL</Name>
<Description>A collection of various quality of life improvements.</Description>
<Version>4.7.0.0</Version>
<Link SHA256="38339EE83049FCE48B3105A96A799EB7C85E5C0D2CBCE4A5885FEF32B6E4738A">
<![CDATA[https://github.com/fifty-six/HollowKnight.QoL/releases/download/v4.7/QoL.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/fifty-six/HollowKnight.QoL/]]>
</Repository>
</Manifest>
<Manifest>
<Name>ScreenshotMachine</Name>
<Description>A mod to better create Hollow Knight screenshots.</Description>
<Version>2.0.0.0</Version>
<Link SHA256="703EA0E4E1BA3269725A121CFAA77BC37CE61A1CD1E0A4E44D4993699F7B5043">
<![CDATA[https://github.com/BasedJellyfish11/HollowKnight.ScreenshotMachine/releases/download/v2.1/ScreenshotMachine.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
<Dependency>Satchel</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/BasedJellyfish11/HollowKnight.ScreenshotMachine/]]>
</Repository>
</Manifest>
<Manifest>
<Name>AsciiCamera</Name>
<Description>Applies a shader to the camera which makes the game output as ascii characters.</Description>
<Version>2.2.0.0</Version>
<Link SHA256="FF83C558EDD7E6CC4B46728F129AC0D6D4990BE3F0D49FC7948827F4B2A41690">
<![CDATA[https://github.com/fifty-six/HollowKnight.AsciiCamera/releases/download/v2.2/AsciiCamera.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/fifty-six/HollowKnight.AsciiCamera/]]>
</Repository>
</Manifest>
<Manifest>
<Name>HollowTwitch</Name>
<Description>Allows Twitch Chat to use tons of commands that spice up and vary gameplay.</Description>
<Version>2.0.0.0</Version>
<Link SHA256="80B2F3F42532FCB2D7C4D518BC41FDCF95F0B09377C2830ED2690C0498669AD2">
<![CDATA[https://github.com/Sid-003/HKTwitch/releases/download/v2.1/HollowTwitch.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/Sid-003/HKTwitch/]]>
</Repository>
</Manifest>
<Manifest>
<Name>Darkness</Name>
<Description>Makes every room into a dark room (akin to rooms which require lantern without it).</Description>
<Version>1.2.0.0</Version>
<Link SHA256="E6B94D0DD0338B6CD83070DAF6556CDA5098D4006DB2ED8F3B746CB810933344">
<![CDATA[https://github.com/fifty-six/HollowKnight.Darkness/releases/download/v1.2/Darkness.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/fifty-six/HollowKnight.Darkness/]]>
</Repository>
</Manifest>
<Manifest>
<Name>God Soul</Name>
<Description>Makes the game really, really hard</Description>
<Version>1.5.0.0</Version>
<Link SHA256="052652F86B16890D6882C0715A35E87995C6CF78DAA892E961CB2F4D7ED2986F">
<![CDATA[https://github.com/Nexade/God-Soul-Mod/releases/download/V1.5/GodSoul.dll]]>
</Link>
<Dependencies>
<Dependency>SFCore</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/Nexade/God-Soul-Mod/]]>
</Repository>
</Manifest>
<Manifest>
<Name>Random Pantheons</Name>
<Description>Randomizes Godhome’s Pantheons so bosses appear in random order.</Description>
<Version>1.1.0.0</Version>
<Link SHA256="80973705F6CE894544006A72D9A813B14633CF78D4004A66EE11E4EE0BAEF533">
<![CDATA[https://github.com/fifty-six/HollowKnight.RandomizedPantheons/releases/download/v1.1/RandomPantheons.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/fifty-six/HollowKnight.RandomizedPantheons/]]>
</Repository>
</Manifest>
<Manifest>
<Name>Mantis Gods</Name>
<Description>Significantly buffs the Mantis Lords fight.</Description>
<Version>1.3.0.0</Version>
<Link SHA256="92F0B56DCFBB2D0984F42A0B8614742075453A690F2051C06C379E1874CC85C8">
<![CDATA[https://github.com/fifty-six/HollowKnight.Mantis-Gods/releases/download/v1.3/Mantis.Gods.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/fifty-six/HollowKnight.Mantis-Gods/]]>
</Repository>
</Manifest>
<Manifest>
<Name>Sanic</Name>
<Description>Allows changing the game timescale.</Description>
<Version>2.1.0.0</Version>
<Link SHA256="E725843E202475184BD1B842B6E5DF2CF455B5A9F6082683F2CE44DBF6B78CE3">
<![CDATA[https://github.com/fifty-six/HollowKnight.Sanic/releases/download/v2.1/Sanic.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/fifty-six/HollowKnight.Sanic/]]>
</Repository>
</Manifest>
<Manifest>
<Name>ModConsole</Name>
<Description>In-game C# REPL which allows you to easily test code.</Description>
<Version>2.0.0.0</Version>
<Link SHA256="2429F59254FD05D37C2A5EE1681E7122BBF171F8EBD93DF68BA422B5CCF70928">
<![CDATA[https://github.com/fifty-six/HollowKnight.ModConsole/releases/download/v2/ModConsole.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/fifty-six/HollowKnight.ModConsole/]]>
</Repository>
</Manifest>
<Manifest>
<Name>The Pain of the Path</Name>
<Description>Allows the player to complete the Path of Pain backwards, starting just above the final drop to the Kingsmoulds.</Description>
<Version>2.0.0.0</Version>
<Link SHA256="5982D2E598E7716A93BDD6A10D699F78296779C4408A81E8B91C25E96476F057">
<![CDATA[https://github.com/fifty-six/HollowKnight.ThePainOfThePath/releases/download/v2/ThePainOfThePath.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/fifty-six/HollowKnight.ThePainOfThePath/]]>
</Repository>
</Manifest>
<Manifest>
<Name>Pale Prince</Name>
<Description>Overhaul of the Pure Vessel fight with a significant increase in difficulty</Description>
<Version>2.0.0.0</Version>
<Link SHA256="D5A5AF96618B468F5E48E5661B9857BEEA7213B12528E23456F80129E42E5655">
<![CDATA[https://github.com/fifty-six/HollowKnight.Pale-Prince/releases/download/v2.1/Pale.Prince.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/fifty-six/HollowKnight.Pale-Prince/]]>
</Repository>
</Manifest>
<Manifest>
<Name>Vasi</Name>
<Description>A library with some utility classes.</Description>
<Version>2.0.0.0</Version>
<Link SHA256="B93FA7ECDF40D5F91F942ACFD31CD2A5243551720C96E18DDE99FD64919162EC">
<![CDATA[https://github.com/fifty-six/HollowKnight.Vasi/releases/download/v2/Vasi.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/fifty-six/HollowKnight.Vasi/]]>
</Repository>
</Manifest>
<Manifest>
<Name>Hell Mod</Name>
<Description>Various nerfs to the player and buffs to the enemies to increase the game difficulty.</Description>
<Version>2.0.0.0</Version>
<Link SHA256="CBED75606E848BC7F0255EA00C9641B19716EA72C12F74F37D25558A1A608DCF">
<![CDATA[https://github.com/fifty-six/HollowKnight.HellMod/releases/download/v2/HellMod.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/fifty-six/HollowKnight.HellMod/]]>
</Repository>
</Manifest>
<Manifest>
<Name>HowwowKnyight</Name>
<Description>Twanswates aww of de text in Howwow Knyight into de much supewiow UwU wanguage, incwuding menyus, usew intewface and in-game diawogues! OwO</Description>
<Version>3.8.2.0</Version>
<Link SHA256="8d1fcbfddd1912e1124d14c6f87c97732b4479ea742e0431acba88e005f23b94">
<![CDATA[https://github.com/DDRM-VGV/HowwowKnyight/releases/download/3.8.2/HowwowKnyight.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/DDRM-VGV/HowwowKnyight/]]>
</Repository>
</Manifest>
<Manifest>
<Name>Transtrans</Name>
<Description>Tiktiks for trans rights</Description>
<Version>1.0.0.0</Version>
<Link SHA256="DF2EB160F5536485470C8C43045DC26F0BFAD31D67DDD826F55AAFC0090D9292">
<![CDATA[https://files.catbox.moe/hbilqn.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://discord.com/channels/283467363729408000/327461802311155714/821819089898176554: https://cdn.discordapp.com/attachments/327461802311155714/821819089944838154/Transtrans.cs]]>
</Repository>
</Manifest>
<Manifest>
<Name>CompassAlwaysOn</Name>
<Description>Makes it so the Knight's icon always appears on the map, even if Wayward Compass isn't in your inventory.</Description>
<Version>1.2.0.0</Version>
<Link SHA256="b6d50f37b941bdd32ff4097ae0204c864a0c0559ec2d7c98954a1afe6dad46dc">
<![CDATA[https://github.com/flibber-hk/HollowKnight.CompassAlwaysOn/releases/download/v1.2/CompassAlwaysOn.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.CompassAlwaysOn/]]>
</Repository>
<Integrations>
<Integration>AdditionalMaps</Integration>
<Integration>HKMP</Integration>
</Integrations>
</Manifest>
<Manifest>
<Name>Kronk</Name>
<Description>Simple object counter used for speedruns. Mainly used for Kronk% (all levers).</Description>
<Version>1.2.0.0</Version>
<Link SHA256="4a8a895c5ec9df0286cb457c397777c9489fb26bdb04ccc4639d4ba60476034c">
<![CDATA[https://github.com/flibber-hk/HollowKnight.Kronk/releases/download/v1.2/Kronk.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.Kronk/]]>
</Repository>
</Manifest>
<Manifest>
<Name>Menderbug's Revenge</Name>
<Description>Kill the knight whenever you break a background object.</Description>
<Version>1.2.0.0</Version>
<Link SHA256="8d91f09a627e7713a44332841e12eb0891e1d029069172a7ba420f4e59dc12d3">
<![CDATA[https://github.com/flibber-hk/HollowKnight.MenderbugsRevenge/releases/download/v1.2/MenderbugsRevenge.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.MenderbugsRevenge/]]>
</Repository>
</Manifest>
<Manifest>
<Name>Godseeker Memory Jump</Name>
<Description>Face right when dreamnailing the godseeker to warp to the hidden memory, even if you've been there before.</Description>
<Version>1.1.0.0</Version>
<Link SHA256="7598a72f05a618a386aaf18d6288dfe559f60df64552cffd9db5f690a0286227">
<![CDATA[https://github.com/flibber-hk/HollowKnight.GodseekerMemoryJump/releases/download/v1.1/GodseekerMemoryJump.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.GodseekerMemoryJump/]]>
</Repository>
</Manifest>
<Manifest>
<Name>BingoUI</Name>
<Description>Automatic tracking of bingo goals for randomizer and speedrun bingo races.</Description>
<Version>2.1.2.2</Version>
<Link SHA256="5CDB06B79CB8275928AEE832BB78D82694A33744CD5250CDCDA41872D416031E">
<![CDATA[https://github.com/flibber-hk/HollowKnight.BingoUI/releases/download/v2.1.2.2/BingoUI.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.BingoUI/]]>
</Repository>
<Integrations>
<Integration>ItemChanger</Integration>
</Integrations>
</Manifest>
<Manifest>
<Name>EssenceAlways</Name>
<Description>Choose between always or never dropping an essence when killing an enemy (if you have dream nail).</Description>
<Version>1.0.0.0</Version>
<Link SHA256="36DB612E4C8B0F6D85ADE8CFF030F297A7831DB953861CBF0576F8352A219FEF">
<![CDATA[https://github.com/flibber-hk/HollowKnight.EssenceAlways/releases/download/v1.0/EssenceAlways.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.EssenceAlways/]]>
</Repository>
</Manifest>
<Manifest>
<Name>Invincibility Monitor</Name>
<Description>Grants invincibility in some scenarios.</Description>
<Version>1.2.0.0</Version>
<Link SHA256="9276AC103E78CC2139CD0242619E419569D5EFD5098AF638A44D46A2411ECE74">
<![CDATA[https://github.com/flibber-hk/HollowKnight.InvincibilityMonitor/releases/download/v1.2/InvincibilityMonitor.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.InvincibilityMonitor/]]>
</Repository>
</Manifest>
<Manifest>
<Name>MylaFlower</Name>
<Description>Protect Myla from the infection by bringing her a flower.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="5a18ba85e8267c3900e00c7f71cd2e30a7b05bcbffd27a5a22a594f3d4298b51">
<![CDATA[https://github.com/flibber-hk/HollowKnight.MylaFlower/releases/download/v1.0.0.0/MylaFlower.zip]]>
</Link>
<Dependencies>
<Dependency>Vasi</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.MylaFlower/]]>
</Repository>
</Manifest>
<Manifest>
<Name>SkillUpgrades</Name>
<Description>Provides a collection of upgrades and tweaks to the Knight's Skills. Visit the Mod Menu to enable them.</Description>
<Version>0.11.1.0</Version>
<Link SHA256="fca962b6f47fa9dc2b3f1e612c00edfc62f449b09bbe7a51ef330d8704de4500">
<![CDATA[https://github.com/flibber-hk/HollowKnight.SkillUpgrades/releases/download/v0.11.1.0/SkillUpgrades.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.SkillUpgrades/]]>
</Repository>
<Integrations>
<Integration>Randomizer 4</Integration>
</Integrations>
</Manifest>
<Manifest>
<Name>CondensedSpoilerLogger</Name>
<Description>Creates a Condensed Spoiler Log (and several others) in the Rando Logs directory with the key information about the seed.</Description>
<Version>1.5.0.0</Version>
<Link SHA256="f69690ad6c050687f1cd0a361dccb9eb15fda5891c5599d323680c3b049ffd2b">
<![CDATA[https://github.com/flibber-hk/HollowKnight.CondensedSpoilerLogger/releases/download/v1.5.0.0/CondensedSpoilerLogger.zip]]>
</Link>
<Dependencies>
<Dependency>Randomizer 4</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.CondensedSpoilerLogger/]]>
</Repository>
</Manifest>
<Manifest>
<Name>RandoPlus</Name>
<Description>Add-on for Randomizer 4 that adds more Randomization options; for example, randomize Mr Mushroom locations.</Description>
<Version>1.4.2.1</Version>
<Link SHA256="10b247869d2aea3eec647df8ed8b7bcafbd706d5a23ca4d053831e18e5f2433c">
<![CDATA[https://github.com/flibber-hk/HollowKnight.RandoPlus/releases/download/v1.4.2.1/RandoPlus.zip]]>
</Link>
<Dependencies>
<Dependency>ItemChanger</Dependency>
<Dependency>ConnectionMetadataInjector</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.RandoPlus/]]>
</Repository>
<Integrations>
<Integration>Randomizer 4</Integration>
</Integrations>
</Manifest>
<Manifest>
<Name>FountainPreview</Name>
<Description>Add-on for ItemChanger that makes the basin fountain show the item it's going to give.</Description>
<Version>0.2.0.0</Version>
<Link SHA256="fac9a587025981f0629c341e2e848014f7891b19280fdd670c11f42c083c5c78">
<![CDATA[https://github.com/flibber-hk/HollowKnight.FountainPreview/releases/download/v0.2.0.0/FountainPreview.zip]]>
</Link>
<Dependencies>
<Dependency>ItemChanger</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.FountainPreview/]]>
</Repository>
</Manifest>
<Manifest>
<Name>Randomizable Levers</Name>
<Description>Randomizer 4 addon that adds the option to randomize levers. Activate lever rando in the Connections menu of Randomizer 4.</Description>
<Version>1.2.1.3</Version>
<Link SHA256="95f89a392eae9b4e09fdd7c547fa90c4687ba0d88be909f9386ff162686f233b">
<![CDATA[https://github.com/flibber-hk/HollowKnight.RandomizableLevers/releases/download/v1.2.1.3/RandomizableLevers.zip]]>
</Link>
<Dependencies>
<Dependency>ItemChanger</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.RandomizableLevers/]]>
</Repository>
<Integrations>
<Integration>Randomizer 4</Integration>
<Integration>CondensedSpoilerLogger</Integration>
</Integrations>
</Manifest>
<Manifest>
<Name>TrandoPlus</Name>
<Description>Add-on for Randomizer 4 that adds more options to Transition Rando; for example, randomize only doorway transitions.</Description>
<Version>1.4.0.1</Version>
<Link SHA256="4931442f1b5e2964537b7f76f0bd2045bd99023e2bf9754c9c6136a78b86164f">
<![CDATA[https://github.com/flibber-hk/HollowKnight.TrandoPlus/releases/download/v1.4.0.1/TrandoPlus.zip]]>
</Link>
<Dependencies>
<Dependency>Randomizer 4</Dependency>
<Dependency>ConnectionMetadataInjector</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.TrandoPlus/]]>
</Repository>
<Integrations>
<Integration>RandoPlus</Integration>
</Integrations>
</Manifest>
<Manifest>
<Name>RecentItemsDisplay</Name>
<Description>Add-on for ItemChanger (and Rando) which displays recently obtained pickups in the top-right of the screen.</Description>
<Version>1.2.1.2</Version>
<Link SHA256="d67d0cd42fa337e44159002f6bb243c0d515beea3b63335bda4dcfd159a99a29">
<![CDATA[https://github.com/flibber-hk/HollowKnight.RecentItemsDisplay/releases/download/v1.2.1.2/RecentItemsDisplay.zip]]>
</Link>
<Dependencies>
<Dependency>ItemChanger</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.RecentItemsDisplay/]]>
</Repository>
</Manifest>
<Manifest>
<Name>RandomizerSettingsRandomizer</Name>
<Description>Add-on for Randomizer 4 that allows you to randomize settings. See the README for info on how to select settings to randomize.</Description>
<Version>0.3.0.1</Version>
<Link SHA256="18b8c5e4ddbc91eac9757cccfddae7f5f3ad1968036f4ea883a735b32f0bcf5b">
<![CDATA[https://github.com/flibber-hk/HollowKnight.RandomizerSettingsRandomizer/releases/download/v0.3.0.0/RandomizerSettingsRandomizer.zip]]>
</Link>
<Dependencies>
<Dependency>Randomizer 4</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.RandomizerSettingsRandomizer/]]>
</Repository>
</Manifest>
<Manifest>
<Name>ReopenCityDoor</Name>
<Description>Opens the locked door between Fungal Wastes and City (above Elder Hu's grave / near the elevator to Crossroads).</Description>
<Version>0.2.1.0</Version>
<Link SHA256="69f969ff4da11aad13f45a20ddee56f4a46f63ea199b2d63d5ce5662e1293750">
<![CDATA[https://github.com/flibber-hk/HollowKnight.ReopenCityDoor/releases/download/v0.2.1.0/ReopenCityDoor.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.ReopenCityDoor/]]>
</Repository>
<Integrations>
<Integration>Randomizer 4</Integration>
</Integrations>
</Manifest>
<Manifest>
<Name>FStats</Name>
<Description>Displays some stats about a run after the credits screen.</Description>
<Version>1.0.0.0</Version>
<Link SHA256="9e3d5ea96280cd21bf92114c944981e247d39c28fc8ab236454d8c94100be815">
<![CDATA[https://github.com/flibber-hk/HollowKnight.FStats/releases/download/v1.0.0.0/FStats.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.FStats/]]>
</Repository>
<Integrations>
<Integration>ItemChanger</Integration>
<Integration>Benchwarp</Integration>
</Integrations>
</Manifest>
<Manifest>
<Name>PlayerDataManager</Name>
<Description>Override player data values (for example, always set `hasQuill` to false). Having DebugMod is helpful, but not required.</Description>
<Version>0.5.0.0</Version>
<Link SHA256="a722f9ca8d948ffc9941f9c3f314b0aed2f769c3b16d68d208ac18f87762c4a7">
<![CDATA[https://github.com/flibber-hk/HollowKnight.PlayerDataManager/releases/download/v0.5.0.0/PlayerDataManager.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/flibber-hk/HollowKnight.PlayerDataManager/]]>
</Repository>
<Integrations>
<Integration>DebugMod</Integration>
</Integrations>
</Manifest>
<Manifest>
<Name>Benchwarp</Name>
<Description>Mod for selecting and warping to benches. Also allows placing benches and warping to room transitions.</Description>
<Version>3.2.1.0</Version>
<Link SHA256="4040062459FA2ADC55731F8840AC8E804C5BA25C636D3B4B2B4A7BE6F6944594">
<![CDATA[https://github.com/homothetyhk/HollowKnight.BenchwarpMod/releases/download/v3.2.1.0/Benchwarp.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/homothetyhk/HollowKnight.BenchwarpMod/]]>
</Repository>
</Manifest>
<Manifest>
<Name>Randomizer 4</Name>
<Description>Mod for randomizing items and/or transitions, with numerous customization options.</Description>
<Version>4.0.8.0</Version>
<Link SHA256="A2D98FBE68E72211C4AB325465C9280A124BA7A20B589A6B827B11FEE0F534CA">
<![CDATA[https://github.com/homothetyhk/RandomizerMod/releases/download/v4.0.8%2B618/RandomizerMod.zip]]>
</Link>
<Dependencies>
<Dependency>ItemChanger</Dependency>
<Dependency>MenuChanger</Dependency>
<Dependency>RandomizerCore</Dependency>
<Dependency>Benchwarp</Dependency>
<Dependency>QoL</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/homothetyhk/RandomizerMod/]]>
</Repository>
</Manifest>
<Manifest>
<Name>ItemChanger</Name>
<Description>Mod which handles editing items and locations for other mods.</Description>
<Version>2.0.8.0</Version>
<Link SHA256="50CF51E90CFB83779668008BB33A4BABBD5EAABCE280F673DD6080EF25CC5221">
<![CDATA[https://github.com/homothetyhk/HollowKnight.ItemChanger/releases/download/v2.0.8%2B775/ItemChanger.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/homothetyhk/HollowKnight.ItemChanger/]]>
</Repository>
</Manifest>
<Manifest>
<Name>MenuChanger</Name>
<Description>Mod which handles editing the main menu for other mods.</Description>
<Version>1.1.4.0</Version>
<Link SHA256="C29D3C11DDD701545A3EBF3D015567ED30A408146A7800119776F80A0D25E58E">
<![CDATA[https://github.com/homothetyhk/HollowKnight.MenuChanger/releases/download/v1.0.4%2B594/MenuChanger.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/homothetyhk/HollowKnight.MenuChanger/]]>
</Repository>
</Manifest>
<Manifest>
<Name>RandomizerCore</Name>
<Description>A library for randomizer logic and algorithms.</Description>
<Version>1.0.5.0</Version>
<Link SHA256="21A722820510A038C6C2FD611920BBC01273E2762F830E50C24AF86C4BF8924D">
<![CDATA[https://github.com/homothetyhk/RandomizerCore/releases/download/v1.0.5/RandomizerCore.zip]]>
</Link>
<Dependencies />
<Repository>
<![CDATA[https://github.com/homothetyhk/RandomizerCore/]]>
</Repository>
</Manifest>
<Manifest>
<Name>ItemChangerDataLoader</Name>
<Description>Mod for creating backups of randomizer saves and launching plandos.</Description>
<Version>1.0.1.0</Version>
<Link SHA256="12430C9A18AE97002BC62518000D0D53A32C77474AE37B167B1E521A8AD752AC">
<![CDATA[https://github.com/homothetyhk/ItemChangerDataLoader/releases/download/v1.0.1/ItemChangerDataLoader.zip]]>
</Link>
<Dependencies>
<Dependency>ItemChanger</Dependency>
<Dependency>MenuChanger</Dependency>
<Dependency>Randomizer 4</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/homothetyhk/ItemChangerDataLoader/]]>
</Repository>
</Manifest>
<Manifest>
<Name>ICExtraDeployers</Name>
<Description>ItemChanger add-on which preloads more objects. Use as a dependency for IC files which place custom Baldurs, gates, and more.</Description>
<Version>1.1.0.0</Version>
<Link SHA256="807B92C878FB57FD60604A7B653583B7F39981C3540713E8B10245C445738271">
<![CDATA[https://github.com/homothetyhk/ICExtraDeployers/releases/download/v1.1.0/ICExtraDeployers.zip]]>
</Link>
<Dependencies>
<Dependency>ItemChanger</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/homothetyhk/ICExtraDeployers/]]>
</Repository>
</Manifest>
<Manifest>
<Name>CustomPoolInjector</Name>
<Description>A Randomizer 4 add-on for providing user-defined item pools for randomizing different item combinations.</Description>
<Version>1.0.2.0</Version>
<Link SHA256="80784C5928C4C12CF0D48D095A03C51069CF3BED22E1D637302C3F81C747EF67">
<![CDATA[https://github.com/homothetyhk/CustomPoolInjector/releases/download/v1.0.2/CustomPoolInjector.zip]]>
</Link>
<Dependencies>
<Dependency>Randomizer 4</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/homothetyhk/CustomPoolInjector/]]>
</Repository>
</Manifest>
<Manifest>
<Name>CustomLogicInjector</Name>
<Description>A Randomizer 4 add-on for providing user-defined logic edits.</Description>
<Version>1.0.2.0</Version>
<Link SHA256="801DF39065F5F44CA463EBFD18A9BB6142BB2BB24C2582C6B3DBB4136B59DD79">
<![CDATA[https://github.com/homothetyhk/CustomLogicInjector/releases/download/v1.0.2/CustomLogicInjector.zip]]>
</Link>
<Dependencies>
<Dependency>Randomizer 4</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/homothetyhk/CustomLogicInjector/]]>
</Repository>
</Manifest>
<Manifest>
<Name>CustomGroupInjector</Name>
<Description>A Randomizer 4 add-on for providing user-defined item groups for different split group randomizer options.</Description>
<Version>1.0.1.0</Version>
<Link SHA256="97953B441641361C41A2B8C0F30DBA022BF751A718004111A721129C8BB0DC03">
<![CDATA[https://github.com/homothetyhk/CustomGroupInjector/releases/download/v1.0.1/CustomGroupInjector.zip]]>
</Link>
<Dependencies>
<Dependency>Randomizer 4</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/homothetyhk/CustomGroupInjector/]]>
</Repository>
</Manifest>
<Manifest>
<Name>BenchRando</Name>
<Description>A Randomizer 4 add-on for randomizing benches to new locations and randomizing the ability to warp to benches as items. Currently in beta.</Description>
<Version>1.0.1.0</Version>
<Link SHA256="5B2BB929CBADCAFAD0B9050082B3362DE3CC1190C26784F0AFECA23A8367F1E5">
<![CDATA[https://github.com/homothetyhk/BenchRando/releases/download/v1.0.1/BenchRando.zip]]>
</Link>
<Dependencies>
<Dependency>Benchwarp</Dependency>
<Dependency>ItemChanger</Dependency>
<Dependency>RandomizerCore</Dependency>
<Dependency>Randomizer 4</Dependency>
</Dependencies>
<Repository>
<![CDATA[https://github.com/homothetyhk/BenchRando/]]>
</Repository>
</Manifest>
<Manifest>
<Name>ItemSync</Name>
<Description>A RandomizerMod 4 add-on for sharing item pickups between players.</Description>
<Version>2.4.2.0</Version>
<Link SHA256="B46FD92D521E502F563691C28895ABD70598B5BEA11A2DD154D3C2143C9D4899">