forked from Chr1Z93/loadable-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.json
1311 lines (1311 loc) · 65.4 KB
/
library.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"campaigns": [
{
"name": "Night of the Zealot",
"url": "campaigns/night_of_the_zealot.json",
"replace": "64a613",
"boxsize": "big",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/762723517667628371/18438B0A0045038A7099648AA3346DFCAA267C66/",
"author": "Fantasy Flight Games",
"description": "Friday, September 18, 1925. Arkham, Massachusetts. There is something wrong with this town, and not a whole lot this old soothsayer can do to stop the slide..."
},
{
"name": "The Dunwich Legacy",
"url": "campaigns/dunwich_legacy.json",
"replace": "2898f6",
"boxsize": "big",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/762723517667666249/B7EB11E1C48A63D3B8AC233FF2DF0BBAD74ECC6E/",
"author": "Fantasy Flight Games",
"description": "A monstrous presence once terrorized the secluded village of Dunwich, until professors from Miskatonic University, armed with secret knowledge, allegedly defeated the creature..."
},
{
"name": "The Path to Carcosa",
"url": "campaigns/path_to_carcosa.json",
"replace": "aca04c",
"boxsize": "big",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/762723517667645467/CDF71CF96691CEF2E690F71332479ACBA0697864/",
"author": "Fantasy Flight Games",
"description": "For weeks, the upcoming performance of the King in Yellow has been the talk of the town, but after researching the play's dark history, you are convinced something foul is at work..."
},
{
"name": "The Forgotten Age",
"url": "campaigns/forgotten_age.json",
"replace": "0bcf19",
"boxsize": "big",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/762723517669830426/AAB750A408E887633F25AFDFB194C50A9A1518DF/",
"author": "Fantasy Flight Games",
"description": "When renowned archaeologist Alejandro Vela discovered the ruins of an ancient Aztec city, it set into motion a plot that could unravel the very fabric of time itself..."
},
{
"name": "The Circle Undone",
"url": "campaigns/circle_undone.json",
"replace": "63e097",
"boxsize": "big",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/762723517669843863/DC0750A38111062909FEDA1BC20685895A574A54/",
"author": "Fantasy Flight Games",
"description": "While investigating the disappearances of four people from an estate in French Hill, you uncover a grim fate that is meant for the entirety of Arkham..."
},
{
"name": "The Dream-Eaters",
"url": "campaigns/dream_eaters.json",
"replace": "a16a1a",
"boxsize": "big",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/762723517669849292/9CD4BE220E1DE5294B1BC6301792920D213C98B3/",
"author": "Fantasy Flight Games",
"description": "After hearing occult author Virgil Gray's account of his experiences in the 'Dreamlands', you too find yourself lost in a hidden realm full of imagination and nightmare..."
},
{
"name": "The Innsmouth Conspiracy",
"url": "campaigns/innsmouth_conspiracy.json",
"replace": "465aab",
"boxsize": "big",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1626320664132195050/3888AC3E4F59D039C5F01B7EC72AB63174184381/",
"author": "Fantasy Flight Games",
"description": "In the shadowy seaport of Innsmouth, strange creatures have been sighted by the reef, and a tangled scheme involving a missing government agent has begun to unravel..."
},
{
"name": "Edge of the Earth",
"url": "campaigns/edge_of_the_earth.json",
"replace": "895eaa",
"boxsize": "big",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1856042908471857208/3B48FFA47FB366932049AD9CD8A3222A8F89FAEB/",
"author": "Fantasy Flight Games",
"description": "Deep within the icy continent of Antarctica lies a secret; one so ancient and profound, it threatens to tear apart our very understanding of the planet we call home..."
},
{
"name": "The Scarlet Keys",
"url": "campaigns/the_scarlet_keys.json",
"replace": "300fcc",
"boxsize": "big",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2038486699957628515/8202EA3F06FDDD807A34BD6F62FE2E0A0723B8CD/",
"author": "Fantasy Flight Games",
"description": "Strange disappearances haunt the city of Arkham, with items and people vanishing not just from existence, but from memory and history as well. Only you remember..."
},
{
"name": "The Feast of Hemlock Vale",
"url": "campaigns/the_feast_of_hemlock_vale.json",
"replace": "c740af",
"boxsize": "big",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2342503777949914349/98CA11F8C5250E8F4A1DA877CD496C6FFB87AF0E/",
"author": "Fantasy Flight Games",
"description": "When renowned botanist Dr. Rosa Marquez receives a strange sample from the secluded and mysterious Hemlock Isle, her instincts tell her that something is amiss. The investigators only have three days to find out what lurks beneath Hemlock Vale before its people meet a terrible fate."
},
{
"name": "Return to The Night of the Zealot",
"url": "campaigns/return_to_notz.json",
"replace": "56270d",
"boxsize": "wide",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/762723517667598054/18C06F0F20D9D4651E6736FB609E2D41F4D1964E/",
"author": "Fantasy Flight Games",
"description": "Friday, September 18, 1925. Arkham, Massachusetts. There is something wrong with this town, and not a whole lot this old soothsayer can do to stop the slide..."
},
{
"name": "Return to The Dunwich Legacy",
"url": "campaigns/return_to_tdl.json",
"replace": "ce9130",
"boxsize": "wide",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/762723517667592476/36D86649503A49A36AA97B7B72C6150E4C2BE333/",
"author": "Fantasy Flight Games",
"description": "A monstrous presence once terrorized the secluded village of Dunwich, until professors from Miskatonic University, armed with secret knowledge, allegedly defeated the creature..."
},
{
"name": "Return to The Path to Carcosa",
"url": "campaigns/return_to_tptc.json",
"replace": "e9889a",
"boxsize": "wide",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/762723517667556656/9638E8CE7F209B50634B202C9EF4B0BDB4993BBB/",
"author": "Fantasy Flight Games",
"description": "For weeks, the upcoming performance of the King in Yellow has been the talk of the town, but after researching the play's dark history, you are convinced something foul is at work..."
},
{
"name": "Return to The Forgotten Age",
"url": "campaigns/return_to_tfa.json",
"replace": "479ff3",
"boxsize": "wide",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1474319121423613924/490D56D20C6AE0547D67D942513396E8D0584A4A/",
"author": "Fantasy Flight Games",
"description": "When renowned archaeologist Alejandro Vela discovered the ruins of an ancient Aztec city, it set into motion a plot that could unravel the very fabric of time itself..."
},
{
"name": "Return to The Circle Undone",
"url": "campaigns/return_to_tcu.json",
"replace": "757324",
"boxsize": "wide",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1697277388086852852/6FD56D74FDDDA5626A3B72E788993EC651AD25E1/",
"author": "Fantasy Flight Games",
"description": "While investigating the disappearances of four people from an estate in French Hill, you uncover a grim fate that is meant for the entirety of Arkham..."
}
],
"scenarios": [
{
"name": "The Blob that Ate Everything",
"url": "scenarios/blob_that_ate_everything.json",
"replace": "4dee5a",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/784129708171644922/CF8E4B744A65B5C7FEAF46C907D8E470A9E2241F/",
"author": "Fantasy Flight Games",
"description": "An extraterrestrial foe with the ability to devour everything in its path has come to Arkham; it must be contained and destroyed before it is too late..."
},
{
"name": "Carnevale of Horrors",
"url": "scenarios/carnevale_of_horrors.json",
"replace": "23dd51",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/826883954590151386/AFF80583FAE6A513663D7BA0A36C4EDAC02DCF43/",
"author": "Fantasy Flight Games",
"description": "A foul conspiracy is afoot in the Venice, and something rising from the lagoon threatens to turn the mood of the city's Carnevale from celebration to terror..."
},
{
"name": "The Curse of the Rougarou",
"url": "scenarios/curse_of_the_rougarou.json",
"replace": "db7039",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/826883954590159139/DD8593B1F0B0D531AF8F3A9B6A37568E551B9B03/",
"author": "Fantasy Flight Games",
"description": "While investigating a series of recent killings in New Orleans, the curse affecting the bayou threatens to consume you as well..."
},
{
"name": "The Guardians of the Abyss",
"url": "scenarios/guardians_of_the_abyss.json",
"replace": "ee987d",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/826883954590180592/50C4420774777AFE0D3168DA24D0E72941862CC4/",
"author": "Fantasy Flight Games",
"description": "While traveling to Cairo to unravel the secrets of a medical mystery, you find yourself caught in the web of a deadly plot. A day of reckoning is coming..."
},
{
"name": "The Labyrinths of Lunacy",
"url": "scenarios/labyrinths_of_lunacy.json",
"replace": "4c173f",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/798737729142912455/15B44AE6487546376FD9DED67A1BC9D613163511/",
"author": "Fantasy Flight Games",
"description": "After being kidnapped by a mysterious mastermind, you are forced to take part in his cruel experiments in order to escape..."
},
{
"name": "Machinations Through Time",
"url": "scenarios/machinations_through_time.json",
"replace": "3c4f3c",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1849293764609930695/A32186E44882FD6EF5753CCB9D325B4EC6848B5A/",
"author": "Fantasy Flight Games",
"description": "Nobel Award-winning scientists and their revolutionary discoveries have vanished and you must travel through the past, present, and future to repair the broken timeline..."
},
{
"name": "Murder at the Excelsior Hotel",
"url": "scenarios/murder_at_the_excelsior_hotel.json",
"replace": "01d780",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/766102485311280290/6AFE3755ED304F8D6D1E0B0E7CCA7748BA07DDE9/",
"author": "Fantasy Flight Games",
"description": "The note you received read: 'Room 225. Tonight. Come Alone'. Can you figure out the truth behind the grisly murder at the Excelsior Hotel in time to clear your name?"
},
{
"name": "War of the Outer Gods",
"url": "scenarios/war_of_the_outer_gods.json",
"replace": "fc7674",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1655599785041387976/264E2E1DA532DC374D6E75B19AD4FEDDBEAA22F0/",
"author": "Fantasy Flight Games",
"description": "Three fantatical cults are vying to be the first to summon their patron Outer God; its up to you to thwart their devious machinations before Earth is in engulfed in all-out war..."
},
{
"name": "Fortune and Folly",
"url": "scenarios/fortune_and_folly.json",
"replace": "0dce91",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2038486699957629658/90632624064547CE896A5236F3F15492FD920D28/",
"author": "Fantasy Flight Games",
"description": "A casino in Monte Carlo is twisting luck in its favor, gaining massive wealth while endangering its patrons in the process... Care to try your luck?"
},
{
"name": "Challenge Scenario: All or Nothing",
"url": "scenarios/challenge_all_or_nothing.json",
"replace": "72ab92",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1655600953066192972/8A5939900FCA8E2A2772CEDE6A03594A68961C4C/",
"author": "Fantasy Flight Games",
"description": "When “Skids” O’Toole walks through the door, it’s up to you and Lady Luck to take the Clover Club for as much as you can — all before slipping out the door with your kneecaps intact..."
},
{
"name": "Challenge Scenario: Bad Blood",
"url": "scenarios/challenge_bad_blood.json",
"replace": "451eaa",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1655599785039299268/52DB5C3A0E600D6AECB0B851ECF90C5B3D016421/",
"author": "Fantasy Flight Games",
"description": "Agnes Baker may have assumed that she was alone in her modern reincarnation from a past life as a sorceress of Hyperborea, but a newcomer has come to Arkham — Elspeth Baudin..."
},
{
"name": "Challenge Scenario: By the Book",
"url": "scenarios/challenge_by_the_book.json",
"replace": "cc7eb3",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1719794129200879643/47A3BC15C8C8ADB45137A2258B86C1D2DB9C2B03/",
"author": "Fantasy Flight Games",
"description": "Roland is quickly becoming a thorn in Mr. Grey’s side and, if the politician’s underlings don’t deal with him, Mr. Grey will confront Roland himself."
},
{
"name": "Challenge Scenario: Laid to Rest",
"url": "scenarios/challenge_laid_to_rest.json",
"replace": "e2dd57",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2115061845788468343/B7611EC7DCD2008B87D6518EBEFF0AD36EFE5B54/",
"author": "Fantasy Flight Games",
"description": "It was the dead who led you to Arkham. You eke out a living playing your father’s trumpet. The dead get louder when you play. Sometimes they even compliment your music..."
},
{
"name": "Challenge Scenario: Read or Die",
"url": "scenarios/challenge_read_or_die.json",
"replace": "9e73fa",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1655599785039304850/852232605656B7DD6577C475A1988491D3378506/",
"author": "Fantasy Flight Games",
"description": "A specter from Daisy’s past rises once more as Dr. Armitage summons you to the Orne Library. Something has been unleashed on Miskatonic University, and it’s up to you to stop it..."
},
{
"name": "Challenge Scenario: Red Tide Rising",
"url": "scenarios/challenge_red_tide_rising.json",
"replace": "5302f2",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1849293764610824071/BD70BFDA6DED25221D6DC1BE60C8CE11B165F848/",
"author": "Fantasy Flight Games",
"description": "Wendy is dead-set on finding her father. With a Mysterious Photo as your primary tool, Wendy must find her way through the treacherous town of Innsmouth and try to gather information..."
},
{
"name": "Challenge Scenario: Relics of the Past",
"url": "scenarios/challenge_relics_of_the_past.json",
"replace": "0d6da1",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2299716459828640802/A224024254ABCFB818F12B50C1E5E0B32060F972/",
"author": "Fantasy Flight Games",
"description": "To better understand our future, we must first understand our past. Monterey Jack heard of the Miskatonic University's failed expedition to the jungles of Mexico. He packs his bags and makes plans for his own expedition."
},
{
"name": "Barkham Horror: The Meddling of Meowlathotep",
"url": "scenarios/meddling_of_meowlathotep.json",
"replace": "d02940",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2038486699957629839/74B187339172F55B05CD212F214F5D31B117FDF0/",
"author": "Fantasy Flight Games",
"description": "Barkham Horror is an alternate universe in which the conflict between humanity and the eldritch forces of the Mythos takes a back seat, and the conflict between dogs and cats takes center stage."
}
],
"extras": [
{
"name": "Encounter Sets",
"url": "extras/encounter_sets.json",
"replace": "304ffc"
}
],
"community": [
{
"name": "Fan Investigators: Aespa Investigators",
"url": "fancreations/investigators_aespa.json",
"replace": "ec74df",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1862816781492027399/65707471C1DAF2E107F9ACDD28B5D65FDABBCE79/",
"author": "Mint Tea Fan",
"description": "Investigators inspired by the K-Pop girl group Aespa."
},
{
"name": "Fan Investigators: Artifact Expansion",
"url": "fancreations/investigators_artifact.json",
"replace": "2f8332",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1799728983834465397/5B8C8FFC332DCC1F09FEA1617F0F3446F06821DB/",
"author": "Mint Tea Fan",
"description": "Sidequest for magical artifacts during any scenario or campaign with new story assets, investigators, and player cards."
},
{
"name": "Fan Investigators: Bad Batch",
"url": "fancreations/investigators_bad_batch.json",
"replace": "0a1d16",
"boxsize": "",
"boxart": "",
"author": "TastyToast",
"description": "A set of 6 investigators based on the Bad Batch (Star Wars). If you have anything to say about them, you can always reach me on discord at TastyToast#2882."
},
{
"name": "Fan Investigators: Baldur's Gate III",
"url": "fancreations/investigators_baldurs_gate_3.json",
"replace": "0a85ef",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2117314083163063648/B404BC484394C1B241A97479C3A1FDC8D33ADE2F/",
"author": "Mint Tea Fan",
"description": "331 Player Cards with 12 New Investigators from Baldur's Gate III by Larian Studios based off the Dungeons and Dragons 5e system. Alpha testing, with large changes to be expected."
},
{
"name": "Fan Investigators: Battle Goes On",
"url": "fancreations/investigators_battle_goes_on.json",
"replace": "dd90c5",
"boxsize": "small",
"boxart": "https://i.imgur.com/F4W3qLq.jpg",
"author": "The Popest",
"description": "Expansion that is based on a game mode that's recently added to Sanguosha - includes animated cards!"
},
{
"name": "Fan Investigators: Blood of Drakul Investigator Expansion",
"url": "fancreations/investigators_blood_of_drakul.json",
"replace": "260b82",
"boxsize": "big",
"boxart": "https://raw.githubusercontent.com/ArkhamDotCards/thebloodofdrakul/main/product/enUS/drakul-boxart-investigator-defuse-enUS.png",
"author": "Myriad (http://arkham.cards)",
"description": "This is a little more 'fantastical' than vanilla Arkham typically gets, but obviously there are a lot of good horror tropes to mine from the castlevania/bloodborne milleu and this tries to integrate some of those ideas in an original way."
},
{
"name": "Fan Investigators: Buffy the Vampire Slayer",
"url": "fancreations/investigators_buffy.json",
"replace": "6bf40f",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2048620433331970643/2C2D6388AD3BAEC8B9C474B8810CF3E042E5D725/",
"author": "AtomicZ",
"description": "Bring Buffy Summers and her allies into a different world of Eldritch Horror with this full investigator expansion."
},
{
"name": "Fan Investigators: Cartoon Funtime Investigators",
"url": "fancreations/investigators_cartoon_funtime.json",
"replace": "524fbc",
"boxsize": "big",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1785092789057549667/7230A58735443DF70B24F5BAFD93B4FBBC1B28D7/",
"author": "TheBudiez",
"description": "A collection of custom cartoon investigators made to be used for fun."
},
{
"name": "Fan Investigators: Circus Ex Mortis Investigator Expansion",
"url": "fancreations/investigators_circus_ex_mortis.json",
"replace": "195936",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2001337710389944672/AFEE73925C29D5330493528D81D26D499E2ABFCE/",
"author": "TheBeard",
"description": "Welcome to the greatest show of your life! The New Moon Circus visits Arkham with a cruel and insidious plot, concerning ancient prophecy and the coming eclipse!"
},
{
"name": "Fan Investigators: City of Secrets",
"url": "fancreations/investigators_city_of_secrets.json",
"replace": "1ee775",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2055380534214131870/37E74A27D78CFDC8F320B15F02C5379834EA6202/",
"author": "aughhhh",
"description": "This contains ten lore-friendly investigators loosely inspired by the gameplay defining mechanics introduced in the Ravnica: City of Guilds expansion for Magic the Gathering."
},
{
"name": "Fan Investigators: City of Secrets II",
"url": "fancreations/investigators_city_of_secrets_II.json",
"replace": "8b4846",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2228779642342349529/63EEF2B5FB78509AC67041711EFBE0AE41709906/",
"author": "aughhhh",
"description": "This contains ten more lore-friendly investigators loosely inspired by the gameplay defining mechanics introduced in the Ravnica: City of Guilds expansion for Magic the Gathering."
},
{
"name": "Fan Investigators: Dead Space Investigators",
"url": "fancreations/investigators_dead_space.json",
"replace": "880860",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1898848485543773146/5255CF70ED228D9C98E4C9F4F010577A77B5C46E/",
"author": "Kibble",
"description": "A set of 5 investigators based on the Dead Space series"
},
{
"name": "Fan Investigators: Delta Green Convergence",
"url": "fancreations/investigators_delta_green_convergence.json",
"replace": "84be1d",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/798737729142900469/BDA1068C5A88459AE805540FE05B8092C4F8F392/",
"author": "Ash (MrDodger)",
"description": "Strange events are happening in the town of Groversville, events that have come to the attention of The Program, aka Delta Green."
},
{
"name": "Fan Investigators: Don't Starve",
"url": "fancreations/investigators_dont_starve.json",
"replace": "2e69d0",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1646593716898209387/B827263B809A6C8E1042BDF1C8D33E58458C2EF4/",
"author": "TheBeard",
"description": ""
},
{
"name": "Fan Investigators: Elspeth Baudin (As Seen in Bad Blood!)",
"url": "fancreations/investigators_elspeth_baudin.json",
"replace": "84c153",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1655599785039299268/52DB5C3A0E600D6AECB0B851ECF90C5B3D016421/",
"author": "Donelloth",
"description": ""
},
{
"name": "Fan Investigators: Erik's Rogues",
"url": "fancreations/investigators_eriks_rogues.json",
"replace": "e4169b",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2004702731853000680/0A438E16959C3D695C4C33AA5312C099CC8938B0/",
"author": "Erik T.",
"description": "A set of 5 custom Arkham Horror Living Card Game investigators for the rogue class."
},
{
"name": "Fan Investigators: Flanfy's Original Gators",
"url": "fancreations/investigators_flanfy_original_gators.json",
"replace": "490567",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/5104298832179483860/75D3B993712583321238FB152C5D53E80C153464/",
"author": "Flanfy",
"description": "Contains five thematic investigators"
},
{
"name": "Fan Investigators: Fortune or Folly - Parallel Rex Murphy",
"url": "fancreations/investigators_fortune_or_folly_parallel_rex.json",
"replace": "7fa06f",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1746802526940892011/A775E42F9014CD75B091D7D060012681E58B906E/",
"author": "Davi",
"description": "Fan-made challenge scenario for Rex Murphy"
},
{
"name": "Fan Investigators: Gender Swapped Investigators",
"url": "fancreations/investigators_gender_swapped.json",
"replace": "33272e",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1597044073919531303/A7A92208CADC509C2546E65242ADDC8EF88FEAB8/",
"author": "/u/corpboy (Reddit)",
"description": ""
},
{
"name": "Fan Investigators: The Ghosts of Onigawa Investigator Expansion",
"url": "fancreations/investigators_onigawa.json",
"replace": "238773",
"boxsize": "big",
"boxart": "https://github.com/ArkhamDotCards/theghostsofonigawa/blob/main/product/onigawa-boxart-investigator-defuse.png?raw=true",
"author": "Myriad (http://arkham.cards)",
"description": "Inspired by the Ghosts of Onigawa Campaign Expansion, the Ghosts of Onigawa Investigator Expansion contains 100 custom player cards and 6 custom investigators."
},
{
"name": "Fan Investigators: Girls' Frontline",
"url": "fancreations/investigators_girls_frontline.json",
"replace": "cec2d2",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2038475377479097293/89D57594EFAC4BA8751716B787AD026C2ED59BA8/",
"author": "Flanfy",
"description": "Contains five investigators from the Girls' Frontline mobage developed by MICA Team."
},
{
"name": "Fan Investigators: Golden Gate Investigators",
"url": "fancreations/investigators_golden_gate.json",
"replace": "c0e23c",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2280574378897531207/85888DB72CA5F136FFE92D6F2E138DA46990B1B1/",
"author": "tyrannonorris",
"description": "This pack contains six investigators based on an unfinished campaign set in San Francisco."
},
{
"name": "Fan Investigators: Hellboy Investigators",
"url": "fancreations/investigators_hellboy.json",
"replace": "b46db2",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1847048598035374865/6F037F40A6DA8DECCA064911CB3CBB145EE58920/",
"author": "TheBeard",
"description": "Is this a time shift? A dimensional overlap? Magic gone wrong? This pack contains Hellboy and the other eclectic members of the Bureau of Paranormal Research and Defense."
},
{
"name": "Fan Investigators: Idol Thoughts",
"url": "fancreations/investigators_idol_thoughts.json",
"replace": "991ff9",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1011563111884720834/103D38A8FBBFA64EB66439667F8775B15FC679C9/",
"author": "MJGrenier",
"description": ""
},
{
"name": "Fan Investigators: Kaimonogatari",
"url": "fancreations/investigators_kaimonogatari.json",
"replace": "954771",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1644335793265681039/FD6A85925D62077C37F89B6AD082D15D90244D13/",
"author": "toastsushi (Makima)",
"description": "This expansion contains five investigators from the Monogatari series and more than 100 player cards (there is a related campaign, too!)."
},
{
"name": "Fan Investigators: Limbus Company",
"url": "fancreations/investigators_limbus_company.json",
"replace": "1b7c90",
"boxsize": "big",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2446089105213561424/1E9B4D28E6BC54A0EE56871552D6161D4F23AA29/",
"author": "Nepunyan",
"description": "Custom investigators based off a Project Moon game Limbus Company."
},
{
"name": "Fan Investigators: Lola Hayes Rework",
"url": "fancreations/investigators_lola_hayes_rework.json",
"replace": "3b81fc",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1754686449895663371/D5D8A1205E220C2ED2D0CA50705FBADE82C053BF/",
"author": "Mint Tea Fan",
"description": "Lola Hayes reimagined as a method actor. Each round, she chooses a new persona from a customizable roster of famous figures in literature, mythology, and history."
},
{
"name": "Fan Investigators: Magical Girl Arkham Project",
"url": "fancreations/investigators_magical_girl.json",
"replace": "814e2a",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1903353113607751170/B835836D4DB21CA06206BF84EEAAD6B3E6C157CB/",
"author": "Flanfy",
"description": "~70 investigators for the Arkham Horror LCG from the Magical Girl Raising Project light novel series, written by Asari Endou and illustrated by Marui-no."
},
{
"name": "Fan Investigators: Mass Effect",
"url": "fancreations/investigators_mass_effect.json",
"replace": "b82c6f",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1667985852037525429/FFCBAFD8EF7EFD1127F4482DF01FFD8AE9638B4D/",
"author": "Erdjo",
"description": "Mass Effect characters come to life in Arkham Horror LCG as playable investigators. The mod includes Shepard and all 19 squad members (but not Morinth)."
},
{
"name": "Fan Investigators: Maximillion Pegasus",
"url": "fancreations/investigators_maximillion_pegasus.json",
"replace": "1fb7ce",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1684870715280907223/1E9DE758F089D7F880ADC8CA594F9AA938743F8B/",
"author": "Game",
"description": ""
},
{
"name": "Fan Investigators: Nightmare Town",
"url": "fancreations/investigators_nightmare_town.json",
"replace": "e32a71",
"boxsize": "small",
"boxart": "https://i.imgur.com/ftafgpa.pnghttps://i.imgur.com/ftafgpa.png",
"author": "The Popest",
"description": ""
},
{
"name": "Fan Investigators: Night of Vespers",
"url": "fancreations/investigators_vespers.json",
"replace": "1ef775",
"boxsize": "small",
"boxart": "https://i.imgur.com/SIA4QST.jpghttps://i.imgur.com/SIA4QST.jpg",
"author": "aughhhh",
"description": "Night of Vespers is a fanmade player card expansion for the Arkham Horror LCG, consisting of 126 new cards for players to use."
},
{
"name": "Fan Investigators: Ordinary Citizens",
"url": "fancreations/investigators_ordinary_citizens.json",
"replace": "099e93",
"boxsize": "big",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2277196591829440473/9D08E367CA8792D5F9E092346C261B2EF8318C9F/",
"author": "HatfulBob",
"description": "A standard personal investigator expansion with normal fellas & gals as fun investigators to expand any collection! This includes six brand new investigators."
},
{
"name": "Fan Investigators: Pokemon Eldritch Edition Investigator Expansion",
"url": "fancreations/investigators_pokemon_eldritch_edition.json",
"replace": "1fb7ce",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1597043896926982160/40A0068DAB05395205E184765110430CAADDA2CF/",
"author": "Goober",
"description": "Pokemon: Eldritch Edition includes a full 6-scenario campaign, 2 side-stories, 5 new investigators and a whole ton of player cards, and rules for adding wild Pokemon to any campaign."
},
{
"name": "Fan Investigators: Poirot Investigator",
"url": "fancreations/investigators_poirot.json",
"replace": "13abab",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1870696131168385409/48A07CF6F003EDDBE863547AC3F0604B45EE14E1/",
"author": "TheBeard",
"description": ""
},
{
"name": "Fan Investigators: Rabbit Hole Expansion",
"url": "fancreations/investigators_rabbit_hole.json",
"replace": "b7ff06",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1862800022614300553/046FEA88FB8D4DB6BE0AC9898149058EF32BFD0A/",
"author": "Mint Tea Fan",
"description": "Player cards that are upgrades and downgrades of official Arkham cards."
},
{
"name": "Fan Investigators: The Red Coterie",
"url": "fancreations/investigators_red_coterie.json",
"replace": "de13e3",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2062129724651762962/3EE544183397D062C39D90FAE8E6C0DA6BF6320F/",
"author": "Mattastrophic",
"description": ""
},
{
"name": "Fan Investigators: The Sands of Memphis Investigator Expansion",
"url": "fancreations/investigators_memphis.json",
"replace": "073201",
"boxsize": "big",
"boxart": "https://i.imgur.com/etJMio6.png",
"author": "Myriad (http://arkham.cards)",
"description": "The Sands of Memphis Investigator Expansion contains 100 custom player cards and 6 custom investigators, inspired by the forthcoming Sands of Memphis Campaign Expansion."
},
{
"name": "Fan Investigators: The Shadows of Arkham",
"url": "fancreations/investigators_shadows_of_arkham.json",
"replace": "2e5eef",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1697282751257289223/D03666A291CC5705A3656865488583FF4AB762B4/",
"author": "Kyo",
"description": "Several investigators and player cards"
},
{
"name": "Fan Investigators: Signature Replacements",
"url": "fancreations/investigators_replacements.json",
"replace": "b06fd9",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1754686449895581106/83D855A76FC7568415189A03882317685F6B55EE/",
"author": "Mint Tea Fan",
"description": "A set of signature replacements for each officially released Arkham investigator."
},
{
"name": "Fan Investigators: Six of Crows Investigator Expansion",
"url": "fancreations/investigators_six_of_crows.json",
"replace": "ac6335",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2040738499780847997/8EB48569F817CB9566D4FB0911C3D0B543B2EA75/",
"author": "Mint Tea Fan",
"description": "Investigators and player cards from Leigh Bardugo's Grishaverse series."
},
{
"name": "Fan Investigators: Stargate Atlantis: Investigator Expansion",
"url": "fancreations/investigators_stargate_atlantis.json",
"replace": "446a11",
"boxsize": "",
"boxart": "",
"author": "OstinatoAvocado",
"description": ""
},
{
"name": "Fan Investigators: Strawberry Shortcake - Investigator Pack",
"url": "fancreations/investigators_strawberry_shortcake.json",
"replace": "a12df1",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2414563907814512217/BF49DCD8CC60CA46ACA0F4D41637AA4FC243071D/",
"author": "Blankiecat",
"description": "A couple of investigators based on Strawberry Shortcake - Berry in the big City."
},
{
"name": "Fan Investigators: Streets of New Capenna",
"url": "fancreations/investigators_SNC.json",
"replace": "48b4ca",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1853807409892957080/8BAF356ADEADE6CF377438200268899C64FA420E/",
"author": "Diedie",
"description": ""
},
{
"name": "Fan Investigators: Tanya von Degurechaff",
"url": "fancreations/investigators_tanya_von_degurechaff.json",
"replace": "a2a852",
"boxsize": "",
"boxart": "",
"author": "Flanfy",
"description": ""
},
{
"name": "Fan Investigators: Team Fortress 2 Investigators",
"url": "fancreations/investigators_team_fortress.json",
"replace": "ffa5be",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1870696131168383945/EFEE83D6005F7AE86D7AB30EEB13553516D17CC7/",
"author": "TheBeard",
"description": "A set of 10 fan-made investigators based on Team Fortress 2"
},
{
"name": "Fan Investigators: Tintin and Haddock Investigators",
"url": "fancreations/investigators_tintin_haddock.json",
"replace": "662b53",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1870696131168386304/3487BE3FDA8C1798B8DBE3A99A31FBCA793724C1/",
"author": "TheBeard",
"description": "A pair of fan-made investigators"
},
{
"name": "Fan Investigators: Touhou Project",
"url": "fancreations/investigators_touhou_project.json",
"replace": "c5c294",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1697277697641042816/D60194A8F22DA3032E6C2AC2EE040E6321A2B259/",
"author": "CuddlyZombie",
"description": "A set of five custom investigators based off the Touhou Project franchise"
},
{
"name": "Fan Investigators: Weird West",
"url": "fancreations/investigators_weird_west.json",
"replace": "58ddca",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1697276706767572704/331469F5EAD01108E83C7662B9949F4AC3D00313/",
"author": "Samirashul",
"description": ""
},
{
"name": "Fan Investigators: Witcher Horror",
"url": "fancreations/investigators_witcher_horror.json",
"replace": "af500c",
"boxsize": "big",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2365021141226343347/81F13F2784F997606E8D80AF3B3F54EE8F59628B/",
"author": "Ubique Sajan",
"description": "Custom investigator expansion to Arkham Horror LCG - around 180 card that are based on the Witcher."
},
{
"name": "Fan Campaign: Ages Unwound",
"url": "fancreations/campaign_ages_unwound.json",
"replace": "f7e5eb",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1811004822724765158/DE184EBA95BF16D06DC2528B30E9058A87C7567E/",
"author": "Olivia Juliet",
"description": "Timey Wimey Campaign, now with actual dinosaurs! Everyone loves dinosaurs (for some reason)."
},
{
"name": "Fan Campaign: Alice in Wonderland",
"url": "fancreations/campaign_alice_in_wonderland.json",
"replace": "39916d",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1478823218929917964/80063921C2355FE26816A0E40F88D31F9EF5C4A6/",
"author": "TheBeard",
"description": "Alice in Wonderland is an 8-part campaign adapted from Alice’s Adventures in Wonderland and Through the Looking-Glass by Lewis Carroll."
},
{
"name": "Fan Campaign: The Approaching Storm",
"url": "fancreations/campaign_approaching_storm.json",
"replace": "ab6b9a",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/798737729142917748/FA44959693A82787BC34D6FA2487911AB24E619B/",
"author": "Kristofer Bengtsson",
"description": "Your duty is to help Dr. Armitage turns into a deadly game of hide and seek, as one of his colleagues is murdered in front of your very eyes."
},
{
"name": "Fan Campaign: Betrayal at the Mountains of Madness",
"url": "fancreations/campaign_betrayal_at_mountains.json",
"replace": "ef939a",
"boxsize": "big",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1479949766318759506/9BAB9C45ECB33AC5A0F83806B5EF79A6D89C1D31/",
"author": "Jaxtrasi",
"description": "It is 1935. The world has changed, and so have the investigators of Arkham."
},
{
"name": "Fan Campaign: Bloodborne - City of the Unseen",
"url": "fancreations/campaign_bloodborne.json",
"replace": "24fb2b",
"boxsize": "big",
"boxart": "https://i.imgur.com/WtioCq1.jpg",
"author": "aughhhh",
"description": "You awaken from an illness to an Arkham transformed, but to discover what has happened to your world, you must first survive the Hunt."
},
{
"name": "Fan Campaign: Call of the Plaguebearer",
"url": "fancreations/campaign_call_of_the_plaguebearer.json",
"replace": "613b64",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1767067672754132384/EBC8D780049D2612C6BC0603BD87E94769C34D19/",
"author": "Dr. Jack Science",
"description": "When mysterious plague-clouds descend upon the city of Arkham, it's up to a group of investigators to unravel the mysteries..."
},
{
"name": "Fan Campaign: Celtic Rising",
"url": "fancreations/campaign_celtic_rising.json",
"replace": "4d305a",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1754685726010541421/DC8223A713D02261326877B51FC717A9BAA217B8/",
"author": "QggOne",
"description": "A Celtic themed 5 part cycle aimed at newer players with a smaller collection."
},
{
"name": "Fan Campaign: Circus Ex Mortis Campaign Expansion",
"url": "fancreations/campaign_circus_ex_mortis.json",
"replace": "93b8cb",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2001337710389944099/BC4BADD35E9E87F6BC0BAC93F0FCEB168848AAAC/",
"author": "TheBeard",
"description": "Welcome to the greatest show of your life! The New Moon Circus visits Arkham with a cruel and insidious plot, concerning ancient prophecy and the coming eclipse!"
},
{
"name": "Fan Campaign: Close Encounters of the LV-426 Kind",
"url": "fancreations/campaign_close_encounters.json",
"replace": "4f5421",
"boxsize": "",
"boxart": "",
"author": "Adran06",
"description": ""
},
{
"name": "Fan Campaign: The Colour Out of Oz",
"url": "fancreations/campaign_color_out_of_oz.json",
"replace": "be7d21",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1972044023032948791/D32BECDAF5C9309577EE0CE585E980F62EFBCEF3/",
"author": "TheBeard",
"description": "The Colour Out of Space crash lands in the magical land of Oz! Join forces with the stalwart citizens of the fairy country to stop the horrible infection!"
},
{
"name": "Fan Campaign: The Crown of Egil",
"url": "fancreations/campaign_crown_of_egil.json",
"replace": "7458b7",
"boxsize": "small",
"boxart": "https://i.imgur.com/Vn2CXra.png",
"author": "analyzechris",
"description": "Iceland is on the verge of celebrating its 1000th year of independence, but trouble is brewing in Reykjavik."
},
{
"name": "Fan Campaign: Cyclopean Foundations",
"url": "fancreations/campaign_cyclopean_foundations.json",
"replace": "169eb9",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1746813422552975974/8FB3A4AF2D5A102720F630961A2270572ABA2317/",
"author": "TheBeard",
"description": "The archetypal campaign, with the archetypal Lovecraftian threat. The campaign masterfully uses its unique mechanic pervasively."
},
{
"name": "Fan Campaign: Dark Matter",
"url": "fancreations/campaign_dark_matter.json",
"replace": "d713f4",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1699532377258479383/73EBF45477C1D927159E5993D99AD144641037EA/",
"author": "Axolotl",
"description": "It is 2147, and you have just woken up from cryo-sleep in a seemingly abandoned space ship - a deep space adventure across the solar system to prevent the extinction of the human race..."
},
{
"name": "Fan Campaign: Darkham Horror",
"url": "fancreations/campaign_darkham_horror.json",
"replace": "bc7fa7",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1692775970051821718/827267BBD7EFBAD3EA384A5A04629B2E5BD88EE5/",
"author": "Frostmaze",
"description": "Darkest Dungeon meets Arkham Horror — a match made in hell! An 8-part campaign set in the Darkest Dungeon universe (along with 5 new investigators and player cards)."
},
{
"name": "Fan Campaign: The Ghosts of Onigawa Campaign Expansion",
"url": "fancreations/campaign_onigawa.json",
"replace": "8daa73",
"boxsize": "big",
"boxart": "https://github.com/ArkhamDotCards/theghostsofonigawa/blob/main/product/onigawa-boxart-campaign-defuse.png?raw=true",
"author": "Myriad (http://arkham.cards)",
"description": "The sudden disappearance of two young local girls from the remote hamlet of Minakami village draws you into a sinister plot spanning all of human history. Can you survive the twilight of Onigawa?"
},
{
"name": "Fan Campaign: Half-Life",
"url": "fancreations/campaign_half-life.json",
"replace": "b46db2",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2005838229417815473/BC879D878262BA9FBD9040AE4F952468C3C4C2CC/",
"author": "TheBeard",
"description": "Chaos sweeps over Arkham as portals and monsters rock the city, but this is only a prelude to the horrific events of an alien-dominated future!"
},
{
"name": "Fan Campaign: Heart of Darkness",
"url": "fancreations/campaign_heart_of_darkness.json",
"replace": "cc95ff",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2088037933344388834/4ECD1EA2BEA99E4C49F25B6C3077258791E4A9C4/",
"author": "Vinn Quest",
"description": "Travel deep into the heart of the Congo and navigate its perilous waters aboard the Roi des Belges to discover the Heart of Darkness."
},
{
"name": "Fan Campaign: Idol Thoughts",
"url": "fancreations/campaign_idol_thoughts.json",
"replace": "2d417b",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1011563111884720834/103D38A8FBBFA64EB66439667F8775B15FC679C9/",
"author": "MJGrenier",
"description": ""
},
{
"name": "Fan Campaign: Into the Shadowlands",
"url": "fancreations/campaign_into_the_shadowland.json",
"replace": "019847",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/798737729142946871/EAA18FFE753B1ED020A9F3117E9654B093369D26/",
"author": "John H",
"description": "Prepare to unravel a new mistery in the Arkham Universe..."
},
{
"name": "Fan Campaign: Jumanji",
"url": "fancreations/campaign_jumanji.json",
"replace": "b46db2",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1847049778276522891/B0F1D72796E5A43963B6EFA6B7FD870A89B139AF/",
"author": "TheBeard",
"description": "This is a 4-part mini-campaign for Arkham Horror: The Card Game based on the book by Chris van Allsburg and the 1995 movie adaptation of the book."
},
{
"name": "Fan Campaign: Kaimonogatari",
"url": "fancreations/campaign_kaimonogatari.json",
"replace": "2df25a",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1673610640345018565/0AFEB7913AD4F24AA04D2CB7DCD97106F58D33D9/",
"author": "toastsushi (Makima)",
"description": "You receive a call from a Japanese contact that aided you years ago. He tells you something strange is happening in Japan. Needing a few more helping hands, you start your investigation in an unnamed town. How hard of a request could it be?"
},
{
"name": "Fan Campaign: The London Set",
"url": "fancreations/campaign_london_set.json",
"replace": "0f96ac",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/798737729142939236/70113DAB44263CD5EA5A0913B4325A57B8113A4C/",
"author": "Visitor92",
"description": "3-part fan-made campaign"
},
{
"name": "Fan Campaign: Lovecrafter 3077",
"url": "fancreations/campaign_lovecrafter_3077.json",
"replace": "2888ed",
"boxsize": "big",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/2466364192777858421/669B09277F042A9A1328F1D62D79D9221D4B4D53/",
"author": "RudeRugg",
"description": "A heavily cyber-modded femme fatale hires you to uncover the truth behind her sister’s recent death. Are you ready to be undone?"
},
{
"name": "Fan Campaign: Machining a Mystery",
"url": "fancreations/campaign_machining_a_mystery.json",
"replace": "79b36d",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1860561550045252585/5B883A570DB12EF90E66C9AC83D48B64A397F27D/",
"author": "PuertoMateo",
"description": "A 7-scenario campaign inspired by Shadowrun, Steampunk, and Cyberpunk with a splash of Lovecraft-ian mythos."
},
{
"name": "Fan Campaign: The Matter of Britain",
"url": "fancreations/campaign_the_matter_of_britain.json",
"replace": "abaca9",
"boxsize": "big",
"boxart": "https://i.ibb.co/1GLSncs/title.jpg",
"author": "Frying Tonight",
"description": "An 8 part campaign for Arkham Horror LCG based on the legend of King Arthur."
},
{
"name": "Fan Campaign: North Country Cycle",
"url": "fancreations/campaign_north_country_cycle.json",
"replace": "aaceca",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/798737729142942211/3504BAF688D57DC30E7E1E2009A0FD4951D3BA58/",
"author": "Tim Cox (rushl)",
"description": "Primarily focused on lumber, the citizens of Wrotham have lived a peaceful existence. But now, they face a horror beyond their abilities. Can you help?"
},
{
"name": "Fan Campaign: Of Sphinx and Sands",
"url": "fancreations/campaign_of_sphinx_and_sands.json",
"replace": "edb650",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1705159936395227290/3E915F544AB47D63A4B1D05B0412216586EFA34A/",
"author": "M M (Mat628)",
"description": "You have just received a frenzied call from your good friend, Francis Morgan. He urges you to go to a museum in Beacon Hill in Boston to recover a relic he needs..."
},
{
"name": "Fan Campaign: Ordo Templi Orientis",
"url": "fancreations/campaign_ordo_templi_orientis.json",
"replace": "608bea",
"boxsize": "small",
"boxart": "https://steamusercontent-a.akamaihd.net/ugc/1017195498765395843/F0F85DBE17C72D5D09BD012DEDBB9E154EB07E7B/",