forked from SerpentAI/ArchipelagoNewsLegacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apworlds.html
2475 lines (1954 loc) · 180 KB
/
apworlds.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Archipelago News - APWorlds</title>
<style type="text/css">
html,body{margin:0;padding:0}
h1,h2,h3{margin-top:0;line-height:1.2;padding-top:10px}
ul{margin-top:-15px;margin-bottom:40px}
small{display:block;margin:-2px}
:root{--bg:white;--text:#444;--link:#0000EE;--link-visited:#0000EE;}
@media(prefers-color-scheme:dark){:root{--bg:#333;--text:#F0F0F0;--link:#7575FF;--link-visited:#7575FF;;}}
#color-mode:checked ~ * {--bg:#333;--text:#F0F0F0;--link:#7575FF;--link-visited:#7575FF;}
@media (prefers-color-scheme:dark) {#color-mode:checked ~ * {--bg:white;--text:#444;--link:#7575FF;--link-visited:#7575FF;}}
.color-scheme-wrapper {min-height: 100vh;background:var(--bg);color:var(--text);}
.color-scheme-wrapper a {color:var(--link);}
.color-scheme-wrapper a:visited {color:var(--link-visited);}
.color-scheme-wrapper div {margin:0 auto;max-width:650px;line-height:1.6;font-size:18px;padding:0 10px;overflow-y:hidden}
.light-mode-hide {display:none;}
@media (prefers-color-scheme:dark) {.dark-mode-hide {display:none;}}
@media (prefers-color-scheme:dark) {.light-mode-hide {display:initial;}}
</style>
<link rel="icon" type="image/gif" href="favicon.gif"/>
</head>
<body>
<input id="color-mode" type="checkbox" name="color-mode">
<label for="color-mode">
<span class="dark-mode-hide">Dark Mode</span>
<span class="light-mode-hide">Light Mode</span>
</label>
<div class="color-scheme-wrapper">
<div>
<header>
<h1 style="padding-top:20px">Archipelago News</h1>
<p>
<a href="index.html">News</a><br />
<a href="apworlds.html">APWorlds</a><br /><br />
News Archive <a href="archive2024.html">2024</a>
</p>
<p>
<strong>Archipelago Discord Server</strong> [<a href="https://discord.gg/8Z65BR2">Link</a>]<br />
<strong>Alternative Resource:</strong> <a href="https://docs.google.com/spreadsheets/d/1733DtKxylcSmCxn216rOVkJNS-aezFu8nURRw86CjKc/edit?gid=58422002">Community-Maintained Google Sheet</a>
</p>
</header>
<h2>APWorlds (225)</h2>
<small>[-- Meta APWorlds]</small>
<small> <a href="#APBingo">APBingo (Meta)</a></small>
<small> <a href="#Manual">Manual (Meta)</a></small>
<small> <a href="#LocalYAMLCreator">Local YAML Creator (Meta)</a></small>
<small> <a href="#SpoilerFreeTextClient">Spoiler-Free Text Client (Meta)</a></small>
<small> <a href="#UniversalTracker">Universal Tracker (Meta)</a></small>
<br />
<small><a href="#AHatInTime">A Hat in Time (PC)</a></small>
<small><a href="#ARobotNamedFight">A Robot Named Fight! (PC)</a></small>
<small><a href="#AShortHike">A Short Hike (PC)</a></small>
<small><a href="#ActRaiser">ActRaiser (SNES)</a></small>
<small><a href="#Adventure">Adventure (2600)</a></small>
<small><a href="#AgainstTheStorm">Against the Storm (PC)</a></small>
<small><a href="#AirDelivery">Air Delivery (PICO-8)</a></small>
<small><a href="#AnUntitledStory">An Untitled Story (PC)</a></small>
<small><a href="#ANIMALWELL">ANIMAL WELL (PC)</a></small>
<small><a href="#Anodyne">Anodyne (PC)</a></small>
<small><a href="#AnotherCrabsTreasure">Another Crab's Treasure (PC)</a></small>
<small><a href="#ApeEscape">Ape Escape (PSX)</a></small>
<small><a href="#Aquaria">Aquaria (PC)</a></small>
<small><a href="#Archipela-Go">Archipela-Go! (Android)</a></small>
<small><a href="#ArchipIDLE">ArchipIDLE (Web)</a></small>
<small><a href="#AstalonTearsOfTheEarth">Astalon: Tears of the Earth (PC)</a></small>
<small><a href="#Autopelago">Autopelago (PC)</a></small>
<small><a href="#Balatro">Balatro (PC)</a></small>
<small><a href="#BanjoTooie">Banjo-Tooie (N64)</a></small>
<small><a href="#Blasphemous">Blasphemous (PC)</a></small>
<small><a href="#BloonsTD6">Bloons TD 6 (PC)</a></small>
<small><a href="#BombRushCyberfunk">Bomb Rush Cyberfunk (PC)</a></small>
<small><a href="#Brotato">Brotato (PC)</a></small>
<small><a href="#BumperStickers">Bumper Stickers (PC)</a></small>
<br />
<small>[Castlevania Franchise]</small>
<small> <a href="#CastlevaniaSymphonyOfTheNight">Castlevania: Symphony of the Night (PSX)</a></small>
<small> <a href="#Castlevania64">Castlevania (N64)</a></small>
<small> <a href="#CastlevaniaLegacyOfDarkness">Castlevania: Legacy of Darkness (N64)</a></small>
<small> <a href="#CastlevaniaCircleOfTheMoon">Castlevania: Circle of the Moon (GBA)</a></small>
<br />
<small><a href="#CavernOfDreams">Cavern of Dreams (PC)</a></small>
<small><a href="#CaveStory">Cave Story (PC)</a></small>
<br />
<small>[Celeste Franchise]</small>
<small> <a href="#Celeste">Celeste (PC)</a></small>
<small> <a href="#Celeste64">Celeste 64 (PC)</a></small>
<br />
<small><a href="#ChecksFinder">ChecksFinder (PC)</a></small>
<small><a href="#ChecksMate">ChecksMate (PC)</a></small>
<small><a href="#ChronoTrigger">Chrono Trigger (SNES)</a></small>
<small><a href="#Clique">Clique (Web)</a></small>
<small><a href="#CrossCode">CrossCode (PC)</a></small>
<small><a href="#Crystalis">Crystalis (NES)</a></small>
<small><a href="#Cuphead">Cuphead (PC)</a></small>
<br />
<small>[Dark Souls Franchise]</small>
<small> <a href="#DarkSoulsRemastered">Dark Souls: Remastered (PC)</a></small>
<small> <a href="#DarkSouls3">Dark Souls III (PC)</a></small>
<br />
<small><a href="#DigimonWorld">Digimon World (PSX)</a></small>
<small><a href="#DLCQuest">DLC Quest (PC)</a></small>
<small><a href="#DomeKeeper">Dome Keeper (PC)</a></small>
<small><a href="#DontStarveTogether">Don't Starve Together (PC)</a></small>
<br />
<small>[Donkey Kong Franchise - Donkey Kong Country Series]</small>
<small> <a href="#DonkeyKongCountry2DiddysKongQuest">Donkey Kong Country 2: Diddy's Kong Quest (SNES)</a></small>
<small> <a href="#DonkeyKongCountry3DixieKongsDoubleTrouble">Donkey Kong Country 3: Dixie Kong's Double Trouble! (SNES)</a></small>
<small>[Donkey Kong Franchise - Others]</small>
<small> <a href="#DiddyKongRacing">Diddy Kong Racing (N64)</a></small>
<br />
<small>[DOOM Franchise]</small>
<small> <a href="#DOOM1993">DOOM 1993 (PC)</a></small>
<small> <a href="#DOOM2">DOOM II (PC)</a></small>
<br />
<small><a href="#DukeNukem3DAtomicEdition">Duke Nukem 3D: Atomic Edition (PC)</a></small>
<small><a href="#EarthBound">EarthBound (SNES)</a></small>
<small><a href="#EnderLiliesQuietusOfTheKnights">Ender Lilies: Quietus of the Knights (PC)</a></small>
<small><a href="#EnterTheGungeon">Enter the Gungeon (PC)</a></small>
<small><a href="#Factorio">Factorio (PC)</a></small>
<small><a href="#Faxanadu">Faxanadu (NES)</a></small>
<br />
<small>[Final Fantasy Franchise - Mainline Series]</small>
<small> <a href="#FinalFantasy1">Final Fantasy (NES)</a></small>
<small> <a href="#FinalFantasy4">Final Fantasy IV (SNES)</a></small>
<small> <a href="#FinalFantasy5">Final Fantasy V (SNES)</a></small>
<small> <a href="#FinalFantasy6">Final Fantasy VI (SNES)</a></small>
<small> <a href="#FinalFantasy12OpenWorld">Final Fantasy XII: Open World (PC)</a></small>
<small> <a href="#FinalFantasy12TrialMode">Final Fantasy XII: Trial Mode (PC)</a></small>
<small>[Final Fantasy Franchise - Tactics Series]</small>
<small> <a href="#FinalFantasyTacticsAdvance">Final Fantasy Tactics Advance (GBA)</a></small>
<small> <a href="#FinalFantasyTacticsA2GrimoireOfTheRift">Final Fantasy Tactics A2: Grimoire of the Rift (DS)</a></small>
<small>[Final Fantasy Franchise - Others]</small>
<small> <a href="#FinalFantasyMysticQuest">Final Fantasy: Mystic Quest (SNES)</a></small>
<br />
<small><a href="#FireEmblemTheSacredStones">Fire Emblem: The Sacred Stones (GBA)</a></small>
<br />
<small>[Five Nights at Freddy's Franchise]</small>
<small> <a href="#FNaFWorld">FNaF World (PC)</a></small>
<small> <a href="#FreddyFazbearsPizzeriaSimulator">Freddy Fazbear's Pizzeria Simulator (PC)</a></small>
<br />
<small><a href="#FlipWitchForbiddenSexHex">FlipWitch - Forbidden Sex Hex (PC - 18+)</a></small>
<small><a href="#GauntletLegends">Gauntlet Legends (N64)</a></small>
<small><a href="#GrimDawn">Grim Dawn (PC)</a></small>
<small><a href="#GuildWars2">Guild Wars 2 (PC)</a></small>
<small><a href="#Hades">Hades (PC)</a></small>
<small><a href="#Hammerwatch">Hammerwatch (PC)</a></small>
<small><a href="#HatsuneMikuProjectDivaMegaMix">Hatsune Miku: Project Diva Mega Mix+ (PC)</a></small>
<small><a href="#HereComesNiko">Here Comes Niko! (PC)</a></small>
<small><a href="#Heretic">Heretic (PC)</a></small>
<small><a href="#HollowKnight">Hollow Knight (PC)</a></small>
<br />
<small>[HuniePop Franchise]</small>
<small> <a href="#HuniePop">HuniePop (PC - 18+)</a></small>
<small> <a href="#HuniePop2DoubleDate">HuniePop 2: Double Date (PC - 18+)</a></small>
<br />
<small><a href="#Hylics2">Hylics 2 (PC)</a></small>
<!-- <small><a href="#Increlution">Increlution (PC)</a></small> -->
<small><a href="#Inscryption">Inscryption (PC)</a></small>
<small><a href="#IntoTheBreach">Into the Breach (PC)</a></small>
<small><a href="#IttleDew2">Ittle Dew 2+ (PC)</a></small>
<small><a href="#JakAndDaxterThePrecursorLegacy">Jak and Daxter: The Precursor Legacy (PS2)</a></small>
<small><a href="#KeepTalkingAndNobodyExplodes">Keep Talking and Nobody Explodes (PC)</a></small>
<small><a href="#Kindergarten2">Kindergarten 2 (PC - 18+)</a></small>
<br />
<small>[Kingdom Hearts Franchise]</small>
<small> <a href="#KINGDOMHEARTSBirthBySleepFINALMIX">KINGDOM HEARTS Birth by Sleep FINAL MIX (PC)</a></small>
<small> <a href="#KINGDOMHEARTSFINALMIX">KINGDOM HEARTS FINAL MIX (PC)</a></small>
<small> <a href="#KINGDOMHEARTS3582Days">KINGDOM HEARTS 358/2 Days (DS)</a></small>
<small> <a href="#KINGDOMHEARTSChainOfMemories">KINGDOM HEARTS Chain of Memories (GBA)</a></small>
<small> <a href="#KINGDOMHEARTSReChainOfMemories">KINGDOM HEARTS Re:Chain of Memories (PC)</a></small>
<small> <a href="#KINGDOMHEARTS2FINALMIX">KINGDOM HEARTS II FINAL MIX (PC)</a></small>
<br />
<small>[Kirby Franchise]</small>
<small> <a href="#KirbysDreamLand3">Kirby's Dream Land 3 (SNES)</a></small>
<small> <a href="#Kirby64TheCrystalShards">Kirby 64: The Crystal Shards (N64)</a></small>
<br />
<small><a href="#Landstalker">Landstalker - The Treasures of King Nole (GEN)</a></small>
<small><a href="#LeagueOfLegends">League of Legends (PC)</a></small>
<small><a href="#LethalCompany">Lethal Company (PC)</a></small>
<small><a href="#LilGatorGame">Lil Gator Game (PC)</a></small>
<small><a href="#Lingo">Lingo (PC)</a></small>
<small><a href="#LittleWitchNobeta">Little Witch Nobeta (PC)</a></small>
<small><a href="#Lufia2RiseOfTheSinistrals">Lufia II: Rise of the Sinistrals (SNES)</a></small>
<small><a href="#Lunacid">Lunacid (PC)</a></small>
<br />
<small>[Mario Franchise - Super Mario Series]</small>
<small> <a href="#SuperMarioLand26GoldenCoins">Super Mario Land 2: 6 Golden Coins (GB)</a></small>
<small> <a href="#SuperMarioWorld">Super Mario World (SNES)</a></small>
<small> <a href="#SuperMario64">Super Mario 64 (N64/PC)</a></small>
<small>[Mario Franchise - Others]</small>
<small> <a href="#MarioAndLuigiSuperstarSaga">Mario & Luigi: Superstar Saga (GBA)</a></small>
<small> <a href="#MarioIsMissing">Mario is Missing! (SNES)</a></small>
<small> <a href="#MarioKart64">Mario Kart 64 (N64)</a></small>
<small> <a href="#PaperMario64">Paper Mario (N64)</a></small>
<br />
<small>[Mega Man Franchise - Mega Man Series]</small>
<small> <a href="#MegaMan2">Mega Man 2 (NES)</a></small>
<small> <a href="#MegaMan3">Mega Man 3 (NES)</a></small>
<small>[Mega Man Franchise - Mega Man X Series]</small>
<small> <a href="#MegaManX">Mega Man X (SNES)</a></small>
<small> <a href="#MegaManX2">Mega Man X2 (SNES)</a></small>
<small> <a href="#MegaManX3">Mega Man X3 (SNES)</a></small>
<small>[Mega Man Franchise - Mega Man Battle Network Series]</small>
<small> <a href="#MegaManBattleNetwork3Blue">Mega Man Battle Network 3 Blue (GBA)</a></small>
<br />
<small><a href="#Meritous">Meritous (PC)</a></small>
<small><a href="#MetroCUBEvania">MetroCUBEvania (PICO-8)</a></small>
<br />
<small>[Metroid Franchise - 2D Series]</small>
<small> <a href="#SuperMetroid">Super Metroid (SNES)</a></small>
<small> <a href="#MetroidZeroMission">Metroid: Zero Mission (GBA)</a></small>
<small>[Metroid Franchise - First-Person Series]</small>
<small> <a href="#MetroidPrime">Metroid Prime (GC)</a></small>
<small>[Metroid Franchise - Hacks]</small>
<small> <a href="#SMZ3">SMZ3 (SNES)</a></small>
<small> <a href="#Subversion">Subversion (SNES)</a></small>
<small> <a href="#SuperJunkoid">Super Junkoid (SNES)</a></small>
<small> <a href="#SuperMetroidMapRando">Super Metroid Map Rando (SNES)</a></small>
<br />
<small><a href="#Mindustry">Mindustry (PC)</a></small>
<small><a href="#Minecraft">Minecraft (PC)</a></small>
<small><a href="#MinecraftDig">Minecraft Dig (PC)</a></small>
<small><a href="#MinishootAdventures">Minishoot' Adventures (PC)</a></small>
<small><a href="#Minit">Minit (PC)</a></small>
<small><a href="#MonsterSanctuary">Monster Sanctuary (PC)</a></small>
<small><a href="#MuseDash">Muse Dash (PC)</a></small>
<small><a href="#Noita">Noita (PC)</a></small>
<small><a href="#OldSchoolRunescape">Old School Runescape (PC)</a></small>
<small><a href="#OpenRCT2">OpenRCT2 (PC)</a></small>
<small><a href="#OriAndTheBlindForest">Ori and the Blind Forest (PC)</a></small>
<small><a href="#Osu">Osu! (PC)</a></small>
<small><a href="#OuterWilds">Outer Wilds (PC)</a></small>
<small><a href="#Overcooked2">Overcooked! 2 (PC)</a></small>
<br />
<small>[Pokémon Franchise]</small>
<small> <a href="#PokemonRedAndBlue">Pokémon Red and Blue (GB)</a></small>
<small> <a href="#PokemonCrystal">Pokémon Crystal (GBC)</a></small>
<small> <a href="#PokemonFireRedAndLeafGreen">Pokémon FireRed and LeafGreen (GBA)</a></small>
<small> <a href="#PokemonEmerald">Pokémon Emerald (GBA)</a></small>
<br />
<small><a href="#Prodigal">Prodigal (PC)</a></small>
<small><a href="#Pseudoregalia">Pseudoregalia (PC)</a></small>
<small><a href="#Psychonauts">Psychonauts (PC)</a></small>
<small><a href="#RabiRibi">Rabi-Ribi (PC)</a></small>
<small><a href="#Raft">Raft (PC)</a></small>
<br />
<small>[Resident Evil Franchise]</small>
<small> <a href="#ResidentEvil2">Resident Evil 2 (Remake) (PC - 18+)</a></small>
<small> <a href="#ResidentEvil3">Resident Evil 3 (Remake) (PC - 18+)</a></small>
<br />
<small><a href="#Reventure">Reventure (PC)</a></small>
<small><a href="#RiftWizard">Rift Wizard (PC)</a></small>
<br />
<small>[Risk of Rain Franchise]</small>
<small> <a href="#RiskOfRain">Risk of Rain (PC)</a></small>
<small> <a href="#RiskOfRain2">Risk of Rain 2 (PC)</a></small>
<br />
<small><a href="#RogueLegacy">Rogue Legacy (PC)</a></small>
<small><a href="#RustedMoss">Rusted Moss (PC)</a></small>
<small><a href="#Satisfactory">Satisfactory (PC)</a></small>
<small><a href="#SavingPrincess">Saving Princess (PC)</a></small>
<small><a href="#ScoobyDooNightOf100Frights">Scooby-Doo! Night of 100 Frights (GC)</a></small>
<small><a href="#SeaOfThieves">Sea of Thieves (PC)</a></small>
<small><a href="#SecretOfEvermore">Secret of Evermore (SNES)</a></small>
<small><a href="#Seedling">Seedling (Web)</a></small>
<small><a href="#SentinelsOfTheMultiverse">Sentinels of the Multiverse (PC / Physical)</a></small>
<small><a href="#Shapez">Shapez (PC)</a></small>
<small><a href="#Shivers">Shivers (PC)</a></small>
<small><a href="#SidMeiersCivilization6">Sid Meier's Civilization VI (PC)</a></small>
<small><a href="#SimonTathamsPortablePuzzleCollection">Simon Tatham's Portable Puzzle Collection (Web)</a></small>
<small><a href="#SlayTheSpire">Slay the Spire (PC)</a></small>
<small><a href="#SlyCooperAndTheThieviusRaccoonus">Sly Cooper and the Thievius Raccoonus (PS2)</a></small>
<br />
<small>[Sonic Franchise - Sonic Adventure Series]</small>
<small> <a href="#SonicAdventureDX">Sonic Adventure DX (PC)</a></small>
<small> <a href="#SonicAdventure2Battle">Sonic Adventure 2: Battle (PC)</a></small>
<small>[Sonic Franchise - Others]</small>
<small> <a href="#ShadowTheHedgehog">Shadow the Hedgehog (GC)</a></small>
<br />
<small><a href="#SoulBlazer">Soul Blazer (SNES)</a></small>
<small><a href="#Spelunker">Spelunker (NES)</a></small>
<small><a href="#Spelunky2">Spelunky 2 (PC)</a></small>
<!-- <small><a href="#SpinRhythmXD">Spin Rhythm XD (PC)</a></small> -->
<small><a href="#SpongeBobSquarePantsBattleForBikiniBottom">SpongeBob SquarePants: Battle For Bikini Bottom (GC)</a></small>
<small><a href="#Stacklands">Stacklands (PC)</a></small>
<small><a href="#StarWarsEpisode1Racer">Star Wars: Episode I - Racer (PC)</a></small>
<small><a href="#StarCraft2">StarCraft II (PC)</a></small>
<small><a href="#StardewValley">Stardew Valley (PC)</a></small>
<small><a href="#Subnautica">Subnautica (PC)</a></small>
<small><a href="#Terraria">Terraria (PC)</a></small>
<small><a href="#TEVI">TEVI (PC)</a></small>
<small><a href="#TheBindingOfIssacRepentance">The Binding of Isaac: Repentance (PC)</a></small>
<small><a href="#TheGuardianLegend">The Guardian Legend (NES)</a></small>
<br/>
<small>[The Legend of Zelda Franchise - Mainline Series]</small>
<small> <a href="#TheLegendOfZelda">The Legend of Zelda (NES)</a></small>
<small> <a href="#TheLegendOfZeldaALinkToThePast">The Legend of Zelda: A Link to the Past (SNES)</a></small>
<small> <a href="#TheLegendOfZeldaLinksAwakeningDX">The Legend of Zelda: Link's Awakening DX (GBC)</a></small>
<small> <a href="#TheLegendOfZeldaOcarinaOfTime">The Legend of Zelda: Ocarina of Time (N64)</a></small>
<small> <a href="#TheLegendOfZeldaMajorasMask">The Legend of Zelda: Majora's Mask (N64/PC)</a></small>
<small> <a href="#TheLegendOfZeldaOracleOfAges">The Legend of Zelda: Oracle of Ages (GBC)</a></small>
<small> <a href="#TheLegendOfZeldaOracleOfSeasons">The Legend of Zelda: Oracle of Seasons (GBC)</a></small>
<small> <a href="#TheLegendOfZeldaTheWindWaker">The Legend of Zelda: The Wind Waker (GC)</a></small>
<small> <a href="#TheLegendOfZeldaALinkBetweenWorlds">The Legend of Zelda: A Link Between Worlds (3DS)</a></small>
<small>[The Legend of Zelda Franchise - Hacks]</small>
<small> <a href="#OcarinaOfTimeMQWaterTemple">Ocarina of Time but it's just Master Quest Water Temple (N64)</a></small>
<small> <a href="#SMZ3">SMZ3 (SNES)</a></small>
<br />
<small><a href="#TheMessenger">The Messenger (PC)</a></small>
<small><a href="#TheWitness">The Witness (PC)</a></small>
<small><a href="#Timespinner">Timespinner (PC)</a></small>
<small><a href="#ToejamAndEarl">Toejam & Earl (GEN)</a></small>
<small><a href="#TUNIC">TUNIC (PC)</a></small>
<small><a href="#Tyrian">Tyrian (PC)</a></small>
<small><a href="#ULTRAKILL">ULTRAKILL (PC)</a></small>
<small><a href="#Undertale">Undertale (PC)</a></small>
<small><a href="#VacationSimulator">Vacation Simulator (VR)</a></small>
<small><a href="#VoidStranger">Void Stranger (PC)</a></small>
<small><a href="#VVVVVV">VVVVVV (PC)</a></small>
<br />
<small>[Wargroove Franchise]</small>
<small> <a href="#Wargroove">Wargroove (PC)</a></small>
<small> <a href="#Wargroove2">Wargroove 2 (PC)</a></small>
<br />
<small>[Wario Franchise]</small>
<small> <a href="#WarioLandSuperMarioLand3">Wario Land: Super Mario Land 3 (GB)</a></small>
<small> <a href="#WarioLand4">Wario Land 4 (GBA)</a></small>
<br />
<small><a href="#WateryWords">Watery Words (Web)</a></small>
<small><a href="#YachtDice">Yacht Dice (Web)</a></small>
<small><a href="#YookaLaylee">Yooka-Laylee (PC)</a></small>
<small><a href="#XCOM2WarOfTheChosen">XCOM 2: War of the Chosen (PC)</a></small>
<br />
<small>[Yoshi Franchise]</small>
<small> <a href="#SuperMarioWorld2YoshisIsland">Super Mario World 2: Yoshi's Island (SNES)</a></small>
<br />
<small>[Yu-Gi-Oh! Franchise]</small>
<small> <a href="#YuGiOhDungeonDiceMonsters">Yu-Gi-Oh! Dungeon Dice Monsters (GBA)</a></small>
<small> <a href="#YuGiOhUltimateMastersWCT2006">Yu-Gi-Oh! Ultimate Masters: WCT 2006 (GBA)</a></small>
<small> <a href="#YuGiOhForbiddenMemories">Yu-Gi-Oh! Forbidden Memories (PSX)</a></small>
<br />
<small><a href="#Zillion">Zillion (SMS)</a></small>
<small><a href="#ZorkGrandInquisitor">Zork: Grand Inquisitor (PC)</a></small>
<br />
<h2>Meta APWorlds</h2>
<h3 style="padding-top:24px"><span id="APBingo"></span> APBingo (Meta)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/Cynichill/APBingo/releases">Link</a>]</li>
<li><strong>Client - Alternate</strong> [<a href="https://sephdb.github.io/APBingo-Web/bingoview.html">Link</a>]</li>
<li><strong>Client - Alternate</strong> [<a href="https://cjmang.github.io/APBingoTracker/">Link</a>]</li>
<li><strong>Client - Alternate</strong> [<a href="https://github.com/ObsidianMakerDevelopment/APBingoWeb-OBS">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1252051532971638784">Link</a>]</li>
</ul>
<h3><span id="Manual"></span> Manual (Meta)</h3>
<ul>
<li><strong>Client</strong> [<a href="https://github.com/ManualForArchipelago/Manual/releases">Link</a>]</li>
<li><strong>Discord Server</strong> [<a href="https://discord.gg/T5bcsVHByx">Link</a>]</li>
</ul>
<h3><span id="LocalYAMLCreator"></span> Local YAML Creator (Meta)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/Silvris/Archipelago/releases">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1278481800577941678">Link</a>]</li>
</ul>
<h3><span id="SpoilerFreeTextClient"></span> Spoiler-Free Text Client (Meta)</h3>
<ul>
<li><strong>APWorld</strong> Download from Discord [<a href="https://discord.com/channels/731205301247803413/1282381904812970096/1282382016087851018">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1282381904812970096">Link</a>]</li>
</ul>
<h3><span id="UniversalTracker"></span> Universal Tracker (Meta)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/FarisTheAncient/Archipelago/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> Read in Discord [<a href="https://discord.com/channels/731205301247803413/1170094879142051912/1178365016248942664">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1170094879142051912">Link</a>]</li>
</ul>
<hr />
<h3 ><span id="AHatInTime"></span> A Hat in Time (PC)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Game Mod</strong> [<a href="https://steamcommunity.com/sharedfiles/filedetails/?id=3026842601">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/Mysteryem/ahit-poptracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://archipelago.gg/tutorial/A%20Hat%20in%20Time/setup/en">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/1257453386073374842">Link</a>]</li>
</ul>
<h3><span id="ARobotNamedFight"></span> A Robot Named Fight! (PC)</h3>
<ul>
<li><strong>APWorld + Game Mod</strong> [<a href="https://www.moddb.com/mods/arnf-archipelago/downloads/arnf-mod-v2">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/BetaSprite/ARNFArchipelago/blob/main/worlds/ARNF/docs/setup_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1169389087371841708">Link</a>]</li>
</ul>
<h3><span id="AShortHike"></span> A Short Hike (PC)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Game Mod</strong> [<a href="https://github.com/BrandenEK/AShortHike.Randomizer/releases">Link</a>]</li>
<li><strong>Optional Game Mod</strong> [<a href="https://github.com/BrandenEK/AShortHike.MapTracker/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/chandler05/shorthike-archipelago-poptracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://archipelago.gg/tutorial/A%20Short%20Hike/setup/en">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/1224389725922787389">Link</a>]</li>
</ul>
<h3><span id="ActRaiser"></span> ActRaiser (SNES)</h3>
<ul>
<li><strong>APWorld</strong> Download from Discord [<a href="https://discord.com/channels/731205301247803413/1113529234800005181/1310451292120023080">Link</a>]</li>
<li><strong>Tracker</strong> Download from Discord [<a href="https://discord.com/channels/731205301247803413/1113529234800005181/1296683088566288488">Link</a>]</li>
<li><strong>Setup Guide</strong> Read in Discord [<a href="https://discord.com/channels/731205301247803413/1113529234800005181/1295980708619227148">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1113529234800005181">Link</a>]</li>
</ul>
<h3><span id="Adventure"></span> Adventure (2600)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Setup Guide</strong> [<a href="https://archipelago.gg/tutorial/Adventure/setup/en">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/1090814076378153111">Link</a>]</li>
</ul>
<h3><span id="AgainstTheStorm"></span> Against the Storm (PC)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/RyanCirincione/ArchipelagoATS/releases">Link</a>]</li>
<li><strong>Game Mod</strong> [<a href="https://thunderstore.io/c/against-the-storm/p/ATS_for_AP_Team/Against_The_Storm_for_Archipelago/">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/Chfou/ATS-poptracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/RyanCirincione/ArchipelagoATS/blob/main/worlds/against_the_storm/docs/setup_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1250491355290140672">Link</a>]</li>
</ul>
<h3><span id="AirDelivery"></span> Air Delivery (PICO-8)</h3>
<ul>
<li><strong>APWorld + Client</strong> [<a href="https://github.com/qwint/ap-air-delivery/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/qwint/ap-air-delivery/blob/main/apworld/docs/setup_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1252453771661803523">Link</a>]</li>
</ul>
<h3><span id="AnUntitledStory"></span> An Untitled Story (PC)</h3>
<ul>
<li><strong>APWorld</strong> Download from Discord [<a href="https://discord.com/channels/731205301247803413/1194062970230165554/1229014956771643522">Link</a>]</li>
<li><strong>Game Download</strong> [<a href="https://www.maddymakesgames.com/">Link</a>]</li>
<li><strong>Game Mod</strong> Download from Discord [<a href="https://discord.com/channels/731205301247803413/1194062970230165554/1231120951366783027">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/ladybunne/AnUntitledStory_PopTrackerPack/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> Read in Discord [<a href="https://discord.com/channels/731205301247803413/1194062970230165554/1215523955952193607">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1194062970230165554">Link</a>]</li>
</ul>
<h3><span id="ANIMALWELL"></span> ANIMAL WELL (PC)</h3>
<ul>
<li><strong>APWorld</strong> Download from Discord [<a href="https://discord.com/channels/731205301247803413/1238463626344665119/1305263300208230420">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/SporyTike/ANIMAL-WELL-AP-Tracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/ScipioWright/Archipelago-SW/blob/animal-well/worlds/animal_well/docs/setup_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1238463626344665119">Link</a>]</li>
</ul>
<h3><span id="Anodyne"></span> Anodyne (PC)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/PixieCatSupreme/ArchipelagoAno/releases">Link</a>]</li>
<li><strong>Game Download</strong> [<a href="https://pixiecatsupreme.itch.io/anodyne-sharp">Link</a>]</li>
<li><strong>Game Mod</strong> [<a href="https://github.com/SephDB/AnodyneArchipelagoClient/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/palex00/anodyne-ap-tracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/PixieCatSupreme/ArchipelagoAno/blob/anodyne/worlds/anodyne/docs/setup_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1121290232688545792">Link</a>]</li>
</ul>
<h3><span id="AnotherCrabsTreasure"></span> Another Crab's Treasure (PC)</h3>
<ul>
<li><strong>APWorld + Game Mod</strong> [<a href="https://github.com/Automagic00/ACT-AP-Client-Plugin/releases">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1239467743116525688">Link</a>]</li>
</ul>
<h3><span id="ApeEscape"></span> Ape Escape (PSX)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/Thedragon005/Archipelago-Ape-Escape/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/Thedragon005/Ape-Escape-Tracker/releases">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1168645708103028856">Link</a>]</li>
</ul>
<h3><span id="Aquaria"></span> Aquaria (PC)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Beta APWorld + Game Mod</strong> 1.4.x versions [<a href="https://github.com/tioui/Aquaria_Randomizer/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/palex00/aquaria-ap-tracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://archipelago.gg/tutorial/Aquaria/setup/en">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/1257452465272389687">Link</a>]</li>
</ul>
<h3><span id="Archipela-Go"></span> Archipela-Go! (Android)</h3>
<ul>
<li><strong>APWorld + App</strong> [<a href="https://github.com/aki665/react-native-archipelago/releases">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1203890996794884126">Link</a>]</li>
</ul>
<h3><span id="ArchipIDLE"></span> ArchipIDLE (Web)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Website</strong> [<a href="https://idle.multiworld.link/">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/ArchipelagoMW/Archipelago/blob/main/worlds/archipidle/docs/guide_en.md">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/1079931647320932412">Link</a>]</li>
</ul>
<h3><span id="AstalonTearsOfTheEarth"></span> Astalon: Tears of the Earth (PC)</h3>
<ul>
<li><strong>APWorld + Game Mod</strong> [<a href="https://github.com/drtchops/Archipelago-Astalon/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/Ouro-dev/astalon-poptracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/drtchops/Archipelago/blob/astalon/worlds/astalon/docs/setup_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1211521722881286164">Link</a>]</li>
</ul>
<h3><span id="Autopelago"></span> Autopelago (PC)</h3>
<ul>
<li><strong>APWorld + Game</strong> [<a href="https://github.com/airbreather/Autopelago/releases">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1307517897194868768">Link</a>]</li>
</ul>
<h3><span id="Balatro"></span> Balatro (PC)</h3>
<ul>
<li><strong>APWorld + Game Mod</strong> [<a href="https://github.com/BurndiL/BalatroAP/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/graygooglitch/balatroap_poptracker/releases">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/1085716850370957462/1217203888717828307">Link</a>]</li>
</ul>
<h3><span id="BanjoTooie"></span> Banjo-Tooie (N64)</h3>
<ul>
<li><strong>APWorld + Connector</strong> [<a href="https://github.com/jjjj12212/Archipelago-BanjoTooie/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/Ozone31/banjo-tooie-ap-tracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/jjjj12212/Archipelago-BanjoTooie/blob/main/worlds/banjo_tooie/docs/setup_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1135352499172286505">Link</a>]</li>
</ul>
<h3><span id="Blasphemous"></span> Blasphemous (PC)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Game Mods</strong> [<a href="https://github.com/BrandenEK/Blasphemous.Modding.Installer/releases">Link</a>] [<a href="https://github.com/BrandenEK/Blasphemous.ModdingAPI/releases">Link</a>] [<a href="https://github.com/BrandenEK/Blasphemous.Randomizer/releases">Link</a>] [<a href="https://github.com/BrandenEK/Blasphemous.Randomizer.Multiworld/releases">Link</a>]</li>
<li><strong>Optional Game Mods</strong> [<a href="https://github.com/BrandenEK/Blasphemous.Randomizer.MapTracker/releases">Link</a>] [<a href="https://github.com/BadMagic100/Blasphemous-PrieWarp/releases">Link</a>] [<a href="https://github.com/BrandenEK/Blasphemous.BootsOfPleading/releases">Link</a>] [<a href="https://github.com/BrandenEK/Blasphemous.DoubleJump/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://archipelago.gg/tutorial/Blasphemous/setup/en">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/1090815418731597884">Link</a>]</li>
</ul>
<h3><span id="BloonsTD6"></span> Bloons TD 6 (PC)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/GamingInfinite/Archipelago/releases">Link</a>]</li>
<li><strong>Game Mods</strong> [<a href="https://github.com/gurrenm3/BTD-Mod-Helper/releases">Link</a>] [<a href="https://github.com/GamingInfinite/BloonsArchipelago/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/GamingInfinite/BloonsArchipelago/blob/main/README.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1188559959508668527">Link</a>]</li>
</ul>
<h3><span id="BombRushCyberfunk"></span> Bomb Rush Cyberfunk (PC)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Game Mod</strong> [<a href="https://thunderstore.io/c/bomb-rush-cyberfunk/p/TRPG/BRC_Archipelago/">Link</a>]</li>
<li><strong>Optional Game Mods</strong> [<a href="https://thunderstore.io/c/bomb-rush-cyberfunk/p/TRPG/MoreMap/">Link</a>] [<a href="https://thunderstore.io/c/bomb-rush-cyberfunk/p/Jay/CutsceneSkip/">Link</a>] [<a href="https://thunderstore.io/c/bomb-rush-cyberfunk/p/Yuri/GimmeMyBoost/">Link</a>] [<a href="https://thunderstore.io/c/bomb-rush-cyberfunk/p/viliger/DisableAnnoyingCutscenes/">Link</a>] [<a href="https://thunderstore.io/c/bomb-rush-cyberfunk/p/tari/FastTravel/">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://archipelago.gg/tutorial/Bomb%20Rush%20Cyberfunk/setup/en">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/1257453065083031642">Link</a>]</li>
</ul>
<h3><span id="Brotato"></span> Brotato (PC)</h3>
<ul>
<li><strong>APWorld + Game Mod</strong> [<a href="https://github.com/SpenserHaddad/Brotato-ArchipelagoClient/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/SpenserHaddad/Brotato-ArchipelagoClient/blob/main/README.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1154944430097313803">Link</a>]</li>
</ul>
<h3><span id="BumperStickers"></span> Bumper Stickers (PC)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Game Download</strong> [<a href="https://github.com/FelicitusNeko/FlixelBumpStik/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://archipelago.gg/tutorial/Bumper%20Stickers/setup/en">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/1148330200891932742">Link</a>]</li>
</ul>
<h2>Castlevania Franchise</h2>
<h3><span id="CastlevaniaSymphonyOfTheNight"></span> Castlevania: Symphony of the Night (PSX)</h3>
<ul>
<li><strong>APWorld + Connector</strong> [<a href="https://github.com/fdelduque/Archipelago/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/DorkmasterFlek/SOTN-AP-MapTracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://docs.google.com/document/d/1agsX7VpqmAkJPs0bIESKiKgD_VH1ssRKPtNbBmW2b8k">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1108439196156317818">Link</a>]</li>
</ul>
<h3><span id="Castlevania64"></span> Castlevania (N64)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Setup Guide</strong> [<a href="https://archipelago.gg/tutorial/Castlevania%2064/setup/en">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/1224387731782893731">Link</a>]</li>
</ul>
<h3><span id="CastlevaniaLegacyOfDarkness"></span> Castlevania: Legacy of Darkness (N64)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/LiquidCat64/LiquidCatipelago/releases/tag/cvlodbijcw%26v_v1">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/LiquidCat64/LiquidCatipelago/blob/CVLoD/worlds/cvlod/docs/setup_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1178601625078738985">Link</a>]</li>
</ul>
<h3><span id="CastlevaniaCircleOfTheMoon"></span> Castlevania: Circle of the Moon (GBA)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/LiquidCat64/LiquidCatipelago/releases">Link</a>]</li>
<li><strong>Tracker</strong> Download from Discord [<a href="https://discord.com/channels/731205301247803413/1220211910700564581/1229652563029131325">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/LiquidCat64/LiquidCatipelago/blob/CVCotM/worlds/cvcotm/docs/setup_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1220211910700564581">Link</a>]</li>
</ul>
<hr />
<h3><span id="CavernOfDreams"></span> Cavern of Dreams (PC)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/wu4/Archipelago/releases">Link</a>]</li>
<li><strong>Game Mod</strong> [<a href="https://github.com/wu4/CavernOfDreamsAP/releases">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1189647737210286080">Link</a>]</li>
</ul>
<h3><span id="CaveStory"></span> Cave Story (PC)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/kl3cks7r/Archipelago/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/randomcodegen/caver-tracker-ap/releases">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1083474864150695956">Link</a>]</li>
</ul>
<h2>Celeste Franchise</h2>
<h3><span id="Celeste"></span> Celeste (PC)</h3>
<ul>
<li><strong>APWorld + Game Mod</strong> [<a href="https://github.com/doshyw/CelesteArchipelago/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/seto10987/Celeste-AP-Tracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/doshyw/Archipelago/blob/celeste/worlds/celeste/docs/celeste_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1021069526625947729">Link</a>]</li>
</ul>
<h3><span id="Celeste64"></span> Celeste 64 (PC)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Game Mod</strong> [<a href="https://github.com/PoryGoneDev/Celeste64/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/PoryGone/Celeste-64-AP-Tracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://archipelago.gg/tutorial/Celeste%2064/guide/en">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/1224388599160635552">Link</a>]</li>
</ul>
<hr />
<h3><span id="ChecksFinder"></span> ChecksFinder (PC)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Game Download</strong> [<a href="https://github.com/jonloveslegos/ChecksFinder/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://archipelago.gg/tutorial/ChecksFinder/setup/en">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/959282474746282014">Link</a>]</li>
</ul>
<h3><span id="ChecksMate"></span> ChecksMate (PC)</h3>
<ul>
<li><strong>APWorld + Client</strong> [<a href="https://github.com/chesslogic/chessv/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/chesslogic/Archipelago/blob/checks_mate/worlds/checksmate/docs/checksmate_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1033159819114319892">Link</a>]</li>
</ul>
<h3><span id="ChronoTrigger"></span><span id="ChronoTriggerJOT"></span> Chrono Trigger (SNES)</h3>
<ul>
<li><strong>APWorld + Setup Guide</strong> [<a href="https://www.wiki.ctjot.com/doku.php?id=multiworld">Link</a>]</li>
<li><strong>Website (YAML + Patcher)</strong> [<a href="https://multiworld.ctjot.com/options/">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/Anguirel86/Jets-of-Time-Tracker">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/Anguirel86/Archipelago/blob/ctjot/worlds/ctjot/docs/multiworld_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1063559984148906035">Link</a>]</li>
</ul>
<h3><span id="Clique"></span> Clique (Web)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Website</strong> [<a href="http://clique.pharware.com/">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/ScipioWright/Clique-PopTracker/releases/latest">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://archipelago.gg/tutorial/Clique/guide/en">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/1090815835825774683">Link</a>]</li>
</ul>
<h3><span id="CrossCode"></span> CrossCode (PC)</h3>
<ul>
<li><strong>APWorld + Game Mod</strong> [<a href="https://github.com/CodeTriangle/CCMultiworldRandomizer/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/lurch9229/CrossCode-Poptracker-AP/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/CodeTriangle/CCMultiworldRandomizer/wiki/Setup">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1128180904926396437">Link</a>]</li>
</ul>
<h3><span id="Crystalis"></span> Crystalis (NES)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/Ars-Ignis/Archipelago/releases">Link</a>]</li>
<li><strong>Website (Patcher)</strong> [<a href="https://crystalisrandomizer.com/ap">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/Ars-Ignis/crystalis-randomizer-tracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/Ars-Ignis/Archipelago/blob/crystalis/worlds/crystalis/docs/setup_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1041412559460389017">Link</a>]</li>
</ul>
<h3><span id="Cuphead"></span> Cuphead (PC)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/JKLeckr/Archipelago-cuphead/releases">Link</a>]</li>
<li><strong>Game Mod</strong> [<a href="https://github.com/JKLeckr/CupheadArchipelagoMod/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/JKLeckr/CupheadArchipelagoMod/blob/main/README.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1050929729844297789">Link</a>]</li>
</ul>
<h2>Dark Souls Franchise</h2>
<h3><span id="DarkSoulsRemastered"></span> Dark Souls: Remastered (PC)</h3>
<ul>
<li><strong>APWorld + Game Mod</strong> [<a href="https://github.com/ArsonAssassin/DSAP/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/ArsonAssassin/Archipelago.Core/wiki/How-to-start-playing-a-game-using-this-library">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1092600948548976680">Link</a>]</li>
</ul>
<h3><span id="DarkSouls3"></span> Dark Souls III (PC)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Game Mod</strong> [<a href="https://github.com/Marechal-L/Dark-Souls-III-Archipelago-client/releases">Link</a>]</li>
<li><strong>Beta APWorld + Game Mod</strong> [<a href="https://github.com/nex3/Dark-Souls-III-Archipelago-client/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/Br00ty/DS3_AP_Maptracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://archipelago.gg/tutorial/Dark%20Souls%20III/setup/en">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/1005246392329052220">Link</a>]</li>
</ul>
<hr />
<h3><span id="DigimonWorld"></span> Digimon World (PSX)</h3>
<ul>
<li><strong>APWorld + Client</strong> [<a href="https://github.com/ArsonAssassin/DWAP/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/ArsonAssassin/DigimonWorldAPTracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/ArsonAssassin/DWAP/blob/main/README.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1224418923861118977">Link</a>]</li>
</ul>
<h3><span id="DLCQuest"></span> DLC Quest (PC)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Game Mod</strong> [<a href="https://github.com/agilbert1412/DLCQuestipelago/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/RaceProUK/DLCQuest-APTracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://archipelago.gg/tutorial/DLCQuest/setup/en">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/1109178880838868992">Link</a>]</li>
</ul>
<h3><span id="DomeKeeper"></span> Dome Keeper (PC)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/Arrcival/ArchipelagoDK/releases">Link</a>]</li>
<li><strong>Game Mod</strong> [<a href="https://github.com/Arrcival/DomeKeeperArchipelago/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/Arrcival/ArchipelagoDK/blob/main/worlds/dome_keeper/docs/dome-keeper_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1195385214877306921">Link</a>]</li>
</ul>
<h3><span id="DontStarveTogether"></span> Don't Starve Together (PC)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/DragonWolfLeo/Archipelago-DST/releases">Link</a>]</li>
<li><strong>Game Mod</strong> [<a href="https://steamcommunity.com/sharedfiles/filedetails/?id=3218471273">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/DragonWolfLeo/Archipelago-DST/blob/main/worlds/dst/docs/setup_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1149971904447385751">Link</a>]</li>
</ul>
<h2>Donkey Kong Franchise - Donkey Kong Country Series</h2>
<h3><span id="DonkeyKongCountry2DiddysKongQuest"></span> Donkey Kong Country 2: Diddy's Kong Quest (SNES)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/TheLX5/Archipelago/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/pwkfisher/ap-dkc2-tracker/releases">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1023381145565548646">Link</a>]</li>
</ul>
<h3><span id="DonkeyKongCountry3DixieKongsDoubleTrouble"></span><span id="DonkeyKongCountry3"></span> Donkey Kong Country 3: Dixie Kong's Double Trouble! (SNES)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Tracker</strong> [<a href="https://github.com/PoryGone/DKC3_AP_Tracker/releases/">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://archipelago.gg/tutorial/Donkey%20Kong%20Country%203/setup/en">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/1005246223277641809">Link</a>]</li>
</ul>
<h2>Donkey Kong Franchise - Others</h2>
<h3><span id="DiddyKongRacing"></span> Diddy Kong Racing (N64)</h3>
<ul>
<li><strong>APWorld + Connector</strong> [<a href="https://github.com/zakwiz/DiddyKongRacingAP/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/theUofCWildcat/DKR-Poptracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/zakwiz/DiddyKongRacingAP/blob/v0.1.0/worlds/diddy_kong_racing/docs/setup_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1057754627795337387">Link</a>]</li>
</ul>
<hr />
<h2>DOOM Franchise</h2>
<h3><span id="DOOM1993"></span> DOOM 1993 (PC)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Game Mod</strong> [<a href="https://github.com/Daivuk/apdoom/releases">Link</a>]</li>
<li><strong>Beta Game Mod</strong></li> 1.2.0+ [<a href="https://github.com/Daivuk/apdoom/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/Ozone31/doom-ap-tracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://archipelago.gg/tutorial/DOOM%201993/setup/en">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/1148329739996643348">Link</a>]</li>
</ul>
<h3><span id="DOOM2"></span> DOOM II (PC)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Game Mod</strong> [<a href="https://github.com/Daivuk/apdoom/releases">Link</a>]</li>
<li><strong>Beta Game Mod</strong></li> 1.2.0+ [<a href="https://github.com/Daivuk/apdoom/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/Ozone31/doomii-ap-tracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://archipelago.gg/tutorial/DOOM%20II/setup/en">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/1192236810487738510">Link</a>]</li>
</ul>
<hr />
<h3><span id="DukeNukem3DAtomicEdition"></span><span id="DukeNukem3D"></span> Duke Nukem 3D: Atomic Edition (PC)</h3>
<ul>
<li><strong>APWorld + Game Mod</strong> [<a href="https://github.com/LLCoolDave/Duke3DAP/releases">Link</a>]</li>
<li><strong>Client</strong> [<a href="https://github.com/LLCoolDave/NBloodAP/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/LLCoolDave/Duke3DAP/blob/master/README.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1223230842130796544">Link</a>]</li>
</ul>
<h3><span id="EarthBound"></span> EarthBound (SNES)</h3>
<ul>
<li><strong>APWorld + Tracker</strong> [<a href="https://github.com/PinkSwitch/Archipelago/releases">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1077266688657068032">Link</a>]</li>
</ul>
<h3><span id="EnderLiliesQuietusOfTheKnights"></span> Ender Lilies: Quietus of the Knights (PC)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/Trexounay/EnderLilies.Archipelago/releases">Link</a>]</li>
<li><strong>Game Mod</strong> [<a href="https://github.com/Trexounay/EnderLilies.Randomizer/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/lurch9229/ender-lilies-poptracker/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/Trexounay/EnderLilies.Archipelago/blob/d54e9ce5f2ac1a27d519e916e2adb116bec3becf/worlds/enderlilies/docs/setup_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1093030832886792242">Link</a>]</li>
</ul>
<h3><span id="EnterTheGungeon"></span> Enter the Gungeon (PC)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/KinTheInfinite/Archipelago/releases">Link</a>]</li>
<li><strong>Game Mod</strong> [<a href="https://thunderstore.io/c/enter-the-gungeon/p/GungeonArchipelago/Gungeon_Archipelago/">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/KinTheInfinite/Archipelago/blob/main/worlds/enter_the_gungeon/docs/setup_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1191767250257055785">Link</a>]</li>
</ul>
<h3><span id="Factorio"></span> Factorio (PC)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Setup Guide</strong> [<a href="https://archipelago.gg/tutorial/Factorio/setup/en">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/827139809763262525">Link</a>]</li>
</ul>
<h3><span id="Faxanadu"></span> Faxanadu (NES)</h3>
<ul>
<li><strong>APWorld + Client</strong> [<a href="https://github.com/Daivuk/Daxanadu/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://github.com/Daivuk/Archipelago/blob/faxanadu/worlds/faxanadu/docs/setup_en.md">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1154903605334253631">Link</a>]</li>
</ul>
<h2>Final Fantasy Franchise - Mainline Series</h2>
<h3><span id="FinalFantasy1"></span> Final Fantasy (NES)</h3>
<ul>
<li><strong>Officially supported and distributed with Archipelago</strong></li>
<li><strong>Website (YAML + Patcher)</strong> [<a href="https://finalfantasyrandomizer.com/">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/haate/FFR_AP_autotracking/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://archipelago.gg/tutorial/Final%20Fantasy/multiworld/en">Link</a>]</li>
<li><strong>Discord Channel</strong> [<a href="https://discord.com/channels/731205301247803413/917510025461776445">Link</a>]</li>
</ul>
<h3><span id="FinalFantasy4"></span><span id="FinalFantasy4FreeEnterprise"></span> Final Fantasy IV (SNES)</h3>
<ul>
<li><strong>APWorld</strong> Download from Discord [<a href="https://discord.com/channels/731205301247803413/1170144930610557008/1297275852467212299">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/seto10987/Final-Fantasy-4-Free-Enterprise-AP-Poptracker-Pack/releases">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1170144930610557008">Link</a>]</li>
</ul>
<h3><span id="FinalFantasy5"></span><span id="FinalFantasy5CareerDay"></span> Final Fantasy V (SNES)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/cleartonic/arch_ffvcd/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/seto10987/FFV-Career-Day-AP">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1074658481992388618">Link</a>]</li>
</ul>
<h3><span id="FinalFantasy6"></span><span id="FinalFantasy6WorldsCollide"></span> Final Fantasy VI (SNES)</h3>
<ul>
<li><strong>APWorld</strong> Download from Discord [<a href="https://discord.com/channels/731205301247803413/1022545979146252288/1276343546898550904">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/TheBigSalarius/FF6-Worlds-Collide-EmoTracker-pack">Link</a>]</li>
<li><strong>Setup Guide</strong> [<a href="https://docs.google.com/document/d/1ZN-eO3ZasTEAReGCRP7l9tgI-kEh0GG4gJxVv7JOlyk/edit#heading=h.1zborqwokvgu">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1022545979146252288">Link</a>]</li>
</ul>
<h3><span id="FinalFantasy12OpenWorld"></span><span id="FinalFantasyXIIOpenWorld"></span> Final Fantasy XII: Open World (PC)</h3>
<ul>
<li><strong>APWorld + Game Mod + Setup Guide</strong> [<a href="https://github.com/Bartz24/Archipelago/releases">Link</a>]</li>
<li><strong>Tracker</strong> [<a href="https://github.com/nivomi/ffxii-poptracker/releases">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1229091295465570456">Link</a>]</li>
</ul>
<h3><span id="FinalFantasy12TrialMode"></span><span id="FinalFantasyXIITrialMode"></span> Final Fantasy XII: Trial Mode (PC)</h3>
<ul>
<li><strong>APWorld + Game Mod + Setup Guide</strong> [<a href="https://github.com/silasary/Archipelago/releases">Link</a>]</li>
<li><strong>Game Mods</strong> [<a href="https://www.nexusmods.com/finalfantasy12/mods/170">Link</a>] [<a href="https://www.nexusmods.com/finalfantasy12/mods/171">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1177092493981007922">Link</a>]</li>
</ul>
<h2>Final Fantasy Franchise - Tactics Series</h2>
<h3><span id="FinalFantasyTacticsAdvance"></span> Final Fantasy Tactics Advance (GBA)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/spicynun/Archipelago/releases">Link</a>]</li>
<li><strong>Setup Guide</strong> Read in Discord [<a href="https://discord.com/channels/731205301247803413/1100823015819837449/1211746202144743504">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1100823015819837449">Link</a>]</li>
</ul>
<h3><span id="FinalFantasyTacticsA2GrimoireOfTheRift"></span> Final Fantasy Tactics A2: Grimoire of the Rift (DS)</h3>
<ul>
<li><strong>APWorld</strong> [<a href="https://github.com/Rurusachi/Archipelago/releases">Link</a>]</li>
<li><strong>Discord Thread</strong> [<a href="https://discord.com/channels/731205301247803413/1296095764518277143">Link</a>]</li>
</ul>
<h2>Final Fantasy Franchise - Others</h2>