-
Notifications
You must be signed in to change notification settings - Fork 2
/
officialKingdoms.js
2212 lines (2212 loc) · 84.1 KB
/
officialKingdoms.js
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
/* Array of official kingdoms
-----
id: A number matching its position in the array.
name: The kingdom name
cards: An array of card names
colony: A boolean to include Colony and Platinum (optional)
shelters: A boolean to include Shelters (optional)
extras: An array of extra component names (optional)
landscapes: An array of landscape names (optional)
obelisk: The obelisk target, should already be listed in the cards list (optional)
bane: Which card is the bane, should already be listed in the cards list (optional)
ferryman: Which card is the ferryman target, should not be listed in the cards list (optional)
mouse: Which card is the Way of the Mouse target, should not be listed in the cards list (optional)
druid: An array of boons, 3 max (optional)
traits: An array containing a comma separated list with pairs of cards, a trait first then the card it applies to next, both should already be in the cards and landscapes lists (optional)
riverboat: Which card is the Riverboat target, should not be listed in the cards list (optional)
notes: Any extra notes (optional)
expansions: Concatenated string of expansions required, matching checkbox names in order, no spaces
-----*/
var officialKingdoms = [
{
id: 0,
name: "First Game",
cards: ["Cellar", "Moat", "Merchant", "Village", "Workshop", "Militia", "Remodel", "Smithy", "Market", "Mine"],
expansions: "base"
},
{
id: 1,
name: "Size Distortion",
cards: ["Chapel", "Workshop", "Bureaucrat", "Gardens", "Throne Room", "Bandit", "Festival", "Sentry", "Witch", "Artisan"],
expansions: "base"
},
{
id: 2,
name: "Deck Top",
cards: ["Harbinger", "Vassal", "Village", "Bureaucrat", "Moneylender", "Council Room", "Festival", "Laboratory", "Sentry", "Artisan"],
expansions: "base"
},
{
id: 3,
name: "Sleight of Hand",
cards: ["Cellar", "Harbinger", "Gardens", "Militia", "Poacher", "Smithy", "Throne Room", "Council Room", "Festival", "Library"],
expansions: "base"
},
{
id: 4,
name: "Improvements",
cards: ["Cellar", "Moat", "Merchant", "Moneylender", "Poacher", "Remodel", "Market", "Mine", "Witch", "Artisan"],
expansions: "base"
},
{
id: 5,
name: "Silver & Gold",
cards: ["Chapel", "Harbinger", "Merchant", "Vassal", "Bureaucrat", "Moneylender", "Throne Room", "Bandit", "Laboratory", "Mine"],
expansions: "base"
},
{
id: 6,
name: "Underlings",
cards: ["Cellar", "Vassal", "Festival", "Library", "Sentry", "Pawn", "Diplomat", "Courtier", "Minion", "Nobles"],
expansions: "baseintrigue"
},
{
id: 7,
name: "Grand Scheme",
cards: ["Workshop", "Militia", "Council Room", "Market", "Artisan", "Shanty Town", "Bridge", "Mill", "Mining Village", "Patrol"],
expansions: "baseintrigue"
},
{
id: 8,
name: "Deconstruction",
cards: ["Village", "Remodel", "Throne Room", "Bandit", "Mine", "Lurker", "Swindler", "Diplomat", "Replace", "Harem"],
expansions: "baseintrigue"
},
{
id: 9,
name: "Reach for Tomorrow",
cards: ["Cellar", "Vassal", "Village", "Council Room", "Artisan", "Lookout", "Monkey", "Cutpurse", "Treasure Map", "Sea Witch"],
expansions: "baseseaside"
},
{
id: 10,
name: "Repetition",
cards: ["Harbinger", "Workshop", "Militia", "Remodel", "Festival", "Sea Chart", "Caravan", "Outpost", "Pirate", "Treasury"],
expansions: "baseseaside"
},
{
id: 11,
name: "Forbidden Arts",
cards: ["Cellar", "Gardens", "Throne Room", "Bandit", "Council Room", "Laboratory", "University", "Familiar", "Apprentice", "Possession"],
extras: ["Potion"],
expansions: "basealchemy"
},
{
id: 12,
name: "Potion Mixers",
cards: ["Cellar", "Militia", "Poacher", "Smithy", "Festival", "Transmute", "Herbalist", "Apothecary", "Alchemist", "Golem"],
extras: ["Potion"],
expansions: "basealchemy"
},
{
id: 13,
name: "Chemistry Lesson",
cards: ["Moat", "Vassal", "Bureaucrat", "Remodel", "Market", "Witch", "University", "Alchemist", "Philosopher's Stone", "Golem"],
extras: ["Potion"],
expansions: "basealchemy"
},
{
id: 14,
name: "Biggest Money",
cards: ["Harbinger", "Moneylender", "Laboratory", "Mine", "Artisan", "Tiara", "Crystal Ball", "Mint", "Grand Market", "Bank"],
colony: true,
expansions: "baseprosperity"
},
{
id: 15,
name: "The King's Army",
cards: ["Moat", "Merchant", "Village", "Bureaucrat", "Council Room", "Collection", "Rabble", "Vault", "Expand", "King's Court"],
colony: true,
expansions: "baseprosperity"
},
{
id: 16,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 17,
name: "Happy Trails",
cards: ["Cellar", "Workshop", "Moneylender", "Throne Room", "Library", "Oasis", "Nomads", "Trail", "Berserker", "Highway"],
expansions: "basehinterlands"
},
{
id: 18,
name: "Adventures Abroad",
cards: ["Vassal", "Remodel", "Festival", "Laboratory", "Sentry", "Crossroads", "Fool's Gold", "Guard Dog", "Souk", "Witch's Hut"],
expansions: "basehinterlands"
},
{
id: 19,
name: "High and Low",
cards: ["Cellar", "Workshop", "Moneylender", "Throne Room", "Witch", "Poor House", "Hermit", "Wandering Minstrel", "Mystic", "Hunting Grounds"],
shelters: true,
extras: ["Madman"],
expansions: "basedarkages"
},
{
id: 20,
name: "Chivalry and Revelry",
cards: ["Gardens", "Remodel", "Festival", "Laboratory", "Library", "Squire", "Rats", "Scavenger", "Knights", "Altar"],
shelters: true,
expansions: "basedarkages"
},
{
id: 21,
name: "Bounty of the Hunt",
cards: ["Cellar", "Militia", "Moneylender", "Smithy", "Festival", "Menagerie", "Ferryman", "Horn of Plenty", "Hunting Party", "Joust"],
extras: ["Rewards"],
ferryman: "Farrier",
notes: "Farrier is not a legal choice for Ferryman, this is an error. Donald X suggests to play with it like this anyway.",
expansions: "basecornguilds"
},
{
id: 22,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 23,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 24,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 25,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 26,
name: "Gilding the Lily",
cards: ["Merchant", "Vassal", "Remodel", "Library", "Market", "Sentry", "Candlestick Maker", "Plaza", "Remake", "Young Witch", "Footpad"],
bane: "Vassal",
expansions: "basecornguilds"
},
{
id: 27,
name: "Level Up",
cards: ["Merchant", "Workshop", "Militia", "Throne Room", "Market", "Dungeon", "Gear", "Guide", "Miser", "Lost City"],
landscapes: ["Training"],
expansions: "baseadventures"
},
{
id: 28,
name: "Son of Size Distortion",
cards: ["Bureaucrat", "Gardens", "Moneylender", "Bandit", "Witch", "Amulet", "Duplicate", "Messenger", "Giant", "Treasure Trove"],
landscapes: ["Bonfire", "Raid"],
expansions: "baseadventures"
},
{
id: 29,
name: "Everything in Moderation",
cards: ["Cellar", "Village", "Workshop", "Remodel", "Library", "Overlord", "Enchantress", "Temple", "Forum", "Legionary"],
landscapes: ["Orchard", "Windfall"],
expansions: "baseempires"
},
{
id: 30,
name: "Silver Bullets",
cards: ["Bureaucrat", "Gardens", "Moneylender", "Laboratory", "Market", "Patrician / Emporium", "Catapult / Rocks", "Farmers' Market", "Charm", "Groundskeeper"],
landscapes: ["Aqueduct", "Conquest"],
expansions: "baseempires"
},
{
id: 31,
name: "Night Shift",
cards: ["Gardens", "Poacher", "Smithy", "Bandit", "Mine", "Druid", "Ghost Town", "Night Watchman", "Exorcist", "Idol"],
extras: ["Boons", "Will-O'-Wisp", "Imp", "Ghost"],
druid: ["The Earth's Gift", "The Flame's Gift", "The Forest's Gift"],
expansions: "basenocturne"
},
{
id: 32,
name: "Idle Hands",
cards: ["Cellar", "Harbinger", "Merchant", "Moneylender", "Market", "Bard", "Conclave", "Devil's Workshop", "Cursed Village", "Tragic Hero"],
extras: ["Boons", "Hexes", "Will-O'-Wisp", "Imp"],
expansions: "basenocturne"
},
{
id: 33,
name: "It Takes a Villager",
cards: ["Merchant", "Vassal", "Smithy", "Market", "Mine", "Acting Troupe", "Cargo Ship", "Recruiter", "Seer", "Treasurer"],
extras: ["Key"],
landscapes: ["Road Network"],
expansions: "baserenaissance"
},
{
id: 34,
name: "Capture the Flag",
cards: ["Cellar", "Harbinger", "Workshop", "Remodel", "Festival", "Lackeys", "Flag Bearer", "Scholar", "Swashbuckler", "Villain"],
extras: ["Flag", "Treasure Chest"],
landscapes: ["Barracks", "Pageant"],
expansions: "baserenaissance"
},
{
id: 35,
name: "Pony Express",
cards: ["Cellar", "Village", "Market", "Mine", "Artisan", "Supplies", "Stockpile", "Barge", "Paddock", "Destrier"],
extras: ["Horse"],
landscapes: ["Stampede", "Way of the Seal"],
expansions: "basemenagerie"
},
{
id: 36,
name: "Garden of Cats",
cards: ["Moat", "Harbinger", "Merchant", "Gardens", "Bandit", "Black Cat", "Scrap", "Snowy Village", "Displace", "Sanctuary"],
extras: ["Horse"],
landscapes: ["Toil", "Way of the Mole"],
expansions: "basemenagerie"
},
{
id: 37,
name: "Allies for Beginners",
cards: ["Harbinger", "Vassal", "Gardens", "Remodel", "Market", "Sycophant", "Odysseys", "Broker", "Capital City", "Galleria"],
landscapes: ["Crafter's Guild"],
expansions: "baseallies"
},
{
id: 38,
name: "Warring Shopkeepers",
cards: ["Moat", "Merchant", "Moneylender", "Bandit", "Laboratory", "Clashes", "Royal Galley", "Town", "Emissary", "Guildmaster"],
landscapes: ["League of Shopkeepers"],
expansions: "baseallies"
},
{
id: 39,
name: "Victory Dance",
cards: ["Masquerade", "Baron", "Ironworks", "Mill", "Courtier", "Duke", "Patrol", "Replace", "Harem", "Nobles"],
expansions: "intrigue"
},
{
id: 40,
name: "The Plot Thickens",
cards: ["Lurker", "Pawn", "Steward", "Swindler", "Conspirator", "Ironworks", "Mining Village", "Secret Passage", "Torturer", "Trading Post"],
expansions: "intrigue"
},
{
id: 41,
name: "Best Wishes",
cards: ["Courtyard", "Shanty Town", "Wishing Well", "Baron", "Conspirator", "Diplomat", "Secret Passage", "Duke", "Torturer", "Upgrade"],
expansions: "intrigue"
},
{
id: 42,
name: "A Star to Steer By",
cards: ["Swindler", "Wishing Well", "Diplomat", "Secret Passage", "Courtier", "Lookout", "Monkey", "Tide Pools", "Treasure Map", "Bazaar"],
expansions: "intrigueseaside"
},
{
id: 43,
name: "Shore Patrol",
cards: ["Pawn", "Shanty Town", "Patrol", "Replace", "Trading Post", "Lighthouse", "Sea Chart", "Cutpurse", "Island", "Wharf"],
expansions: "intrigueseaside"
},
{
id: 44,
name: "Servants",
cards: ["Pawn", "Steward", "Conspirator", "Mill", "Minion", "Transmute", "Vineyard", "Scrying Pool", "Golem", "Possession"],
extras: ["Potion"],
expansions: "intriguealchemy"
},
{
id: 45,
name: "Secret Research",
cards: ["Masquerade", "Shanty Town", "Bridge", "Minion", "Torturer", "Nobles", "Herbalist", "University", "Familiar", "Philosopher's Stone"],
extras: ["Potion"],
expansions: "intriguealchemy"
},
{
id: 46,
name: "Pools, Tools and Fools",
cards: ["Lurker", "Wishing Well", "Baron", "Ironworks", "Trading Post", "Nobles", "Apothecary", "Scrying Pool", "Golem", "Apprentice"],
extras: ["Potion"],
expansions: "intriguealchemy"
},
{
id: 47,
name: "Paths to Victory",
cards: ["Pawn", "Shanty Town", "Baron", "Upgrade", "Harem", "Bishop", "Monument", "Collection", "Magnate", "Peddler"],
colony: true,
expansions: "intrigueprosperity"
},
{
id: 48,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 49,
name: "Lucky Seven",
cards: ["Wishing Well", "Baron", "Mining Village", "Patrol", "Upgrade", "Tiara", "Bank", "Expand", "Forge", "King's Court"],
colony: true,
expansions: "intrigueprosperity"
},
{
id: 50,
name: "Money for Nothing",
cards: ["Pawn", "Shanty Town", "Patrol", "Replace", "Torturer", "Tunnel", "Jack of all Trades", "Weaver", "Cartographer", "Wheelwright"],
expansions: "intriguehinterlands"
},
{
id: 51,
name: "The Duke's Ball",
cards: ["Masquerade", "Conspirator", "Duke", "Upgrade", "Harem", "Guard Dog", "Scheme", "Trail", "Inn", "Wheelwright"],
expansions: "intriguehinterlands"
},
{
id: 52,
name: "Prophecy",
cards: ["Wishing Well", "Baron", "Conspirator", "Secret Passage", "Nobles", "Vagrant", "Armory", "Ironmonger", "Mystic", "Rebuild"],
shelters: true,
expansions: "intriguedarkages"
},
{
id: 53,
name: "Invasion",
cards: ["Swindler", "Diplomat", "Torturer", "Upgrade", "Harem", "Beggar", "Squire", "Urchin", "Marauder", "Rogue"],
shelters: true,
extras: ["Mercenary", "Ruins", "Spoils"],
expansions: "intriguedarkages"
},
{
id: 54,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 55,
name: "The Spice of Life",
cards: ["Courtyard", "Wishing Well", "Diplomat", "Mining Village", "Courtier", "Replace", "Remake", "Young Witch", "Horn of Plenty", "Joust", "Fairgrounds"],
extras: ["Rewards"],
bane: "Wishing Well",
expansions: "intriguecornguilds"
},
{
id: 56,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 57,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 58,
name: "Tricks of the Trade",
cards: ["Masquerade", "Conspirator", "Mill", "Secret Passage", "Nobles", "Stonemason", "Herald", "Butcher", "Journeyman", "Soothsayer"],
expansions: "intriguecornguilds"
},
{
id: 59,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 60,
name: "Royalty Factory",
cards: ["Swindler", "Conspirator", "Courtier", "Harem", "Nobles", "Page", "Raze", "Duplicate", "Bridge Troll", "Royal Carriage"],
extras: ["Treasure Hunter", "Warrior", "Hero", "Champion"],
landscapes: ["Pilgrimage"],
expansions: "intrigueadventures"
},
{
id: 61,
name: "Masters of Finance",
cards: ["Pawn", "Shanty Town", "Steward", "Bridge", "Upgrade", "Gear", "Transmogrify", "Artificer", "Distant Lands", "Wine Merchant"],
landscapes: ["Ball", "Borrow"],
expansions: "intrigueadventures"
},
{
id: 62,
name: "Delicious Torture",
cards: ["Baron", "Bridge", "Ironworks", "Torturer", "Harem", "Settlers / Bustling Village", "Castles", "Enchantress", "Sacrifice", "Crown"],
landscapes: ["Arena", "Banquet"],
expansions: "intrigueempires"
},
{
id: 63,
name: "Buddy System",
cards: ["Pawn", "Masquerade", "Mining Village", "Trading Post", "Nobles", "Engineer", "Catapult / Rocks", "Archive", "Capital", "Forum"],
landscapes: ["Salt the Earth", "Wolf Den"],
expansions: "intrigueempires"
},
{
id: 64,
name: "Shadowy Figures",
cards: ["Bridge", "Conspirator", "Mill", "Secret Passage", "Nobles", "Faithful Hound", "Conclave", "Shepherd", "Cobbler", "Tragic Hero"],
extras: ["Pasture"],
expansions: "intriguenocturne"
},
{
id: 65,
name: "Impending Doom",
cards: ["Lurker", "Swindler", "Mining Village", "Courtier", "Upgrade", "Monastery", "Leprechaun", "Necromancer", "Tormentor", "Werewolf"],
extras: ["Hexes", "Wish", "Zombie Apprentice", "Zombie Mason", "Zombie Spy"],
expansions: "intriguenocturne"
},
{
id: 66,
name: "Memento Mori",
cards: ["Lurker", "Swindler", "Ironworks", "Patrol", "Upgrade", "Experiment", "Flag Bearer", "Patron", "Silk Merchant", "Recruiter"],
extras: ["Flag"],
landscapes: ["Citadel"],
expansions: "intriguerenaissance"
},
{
id: 67,
name: "Clockwork Court",
cards: ["Steward", "Mining Village", "Courtier", "Replace", "Nobles", "Acting Troupe", "Inventor", "Research", "Scepter", "Scholar"],
landscapes: ["Fleet", "Sinister Plot"],
expansions: "intriguerenaissance"
},
{
id: 68,
name: "Dog & Pony Show",
cards: ["Pawn", "Mill", "Torturer", "Upgrade", "Nobles", "Camel Train", "Goatherd", "Sheepdog", "Cavalry", "Paddock"],
extras: ["Horse"],
landscapes: ["Commerce", "Way of the Horse"],
expansions: "intriguemenagerie"
},
{
id: 69,
name: "Explosions",
cards: ["Courtyard", "Lurker", "Wishing Well", "Diplomat", "Replace", "Scrap", "Bounty Hunter", "Coven", "Hunting Lodge", "Animal Fair"],
extras: ["Horse"],
landscapes: ["Populate", "Way of the Squirrel"],
expansions: "intriguemenagerie"
},
{
id: 70,
name: "Dark Dealings",
cards: ["Lurker", "Steward", "Secret Passage", "Courtier", "Nobles", "Townsfolk", "Broker", "Courier", "Contract", "Hunter"],
landscapes: ["Circle of Witches"],
expansions: "intrigueallies"
},
{
id: 71,
name: "Pawns and Underlings",
cards: ["Pawn", "Baron", "Conspirator", "Patrol", "Replace", "Merchant Camp", "Underling", "Wizards", "Innkeeper", "Swap"],
landscapes: ["Plateau Shepherds"],
expansions: "intrigueallies"
},
{
id: 72,
name: "High Seas",
cards: ["Haven", "Lookout", "Warehouse", "Blockade", "Caravan", "Island", "Bazaar", "Corsair", "Pirate", "Wharf"],
expansions: "seaside"
},
{
id: 73,
name: "Buried Treasure",
cards: ["Lighthouse", "Astrolabe", "Fishing Village", "Monkey", "Sea Chart", "Cutpurse", "Sailor", "Treasure Map", "Outpost", "Tactician"],
expansions: "seaside"
},
{
id: 74,
name: "Gummed Up",
cards: ["Haven", "Sea Chart", "Warehouse", "Sailor", "Sea Witch", "Vineyard", "Herbalist", "Familiar", "Philosopher's Stone", "Apprentice"],
extras: ["Potion"],
expansions: "seasidealchemy"
},
{
id: 75,
name: "Exploding Kingdom",
cards: ["Fishing Village", "Lookout", "Outpost", "Tactician", "Wharf", "Bishop", "Quarry", "City", "Grand Market", "King's Court"],
colony: true,
expansions: "seasideprosperity"
},
{
id: 76,
name: "Pirate Bay",
cards: ["Native Village", "Astrolabe", "Monkey", "Corsair", "Treasury", "Investment", "Charlatan", "Magnate", "Mint", "Hoard"],
colony: true,
expansions: "seasideprosperity"
},
{
id: 77,
name: "Travelers",
cards: ["Lookout", "Warehouse", "Cutpurse", "Island", "Merchant Ship", "Crossroads", "Cartographer", "Souk", "Stables", "Farmland"],
expansions: "seasidehinterlands"
},
{
id: 78,
name: "Runners",
cards: ["Smugglers", "Blockade", "Caravan", "Sailor", "Bazaar", "Guard Dog", "Nomads", "Berserker", "Cauldron", "Wheelwright"],
expansions: "seasidehinterlands"
},
{
id: 79,
name: "Watery Graves",
cards: ["Native Village", "Salvager", "Treasure Map", "Corsair", "Treasury", "Hermit", "Rats", "Scavenger", "Count", "Graverobber"],
shelters: true,
extras: ["Madman"],
expansions: "seasidedarkages"
},
{
id: 80,
name: "Peasants",
cards: ["Haven", "Lighthouse", "Fishing Village", "Warehouse", "Island", "Poor House", "Vagrant", "Forager", "Armory", "Band of Misfits"],
shelters: true,
expansions: "seasidedarkages"
},
{
id: 81,
name: "Collecting",
cards: ["Fishing Village", "Monkey", "Smugglers", "Blockade", "Tide Pools", "Farrier", "Farmhands", "Footpad", "Hunting Party", "Fairgrounds"],
expansions: "seasidecornguilds"
},
{
id: 82,
name: "Island Builder",
cards: ["Native Village", "Sea Chart", "Island", "Salvager", "Treasury", "Stonemason", "Advisor", "Plaza", "Baker", "Merchant Guild"],
expansions: "seasidecornguilds"
},
{
id: 83,
name: "Prince of Orange",
cards: ["Astrolabe", "Fishing Village", "Caravan", "Sailor", "Merchant Ship", "Page", "Amulet", "Dungeon", "Haunted Woods", "Swamp Hag"],
extras: ["Treasure Hunter", "Warrior", "Hero", "Champion"],
landscapes: ["Mission"],
expansions: "seasideadventures"
},
{
id: 84,
name: "Gifts and Mathoms",
cards: ["Haven", "Smugglers", "Blockade", "Sailor", "Salvager", "Caravan Guard", "Messenger", "Bridge Troll", "Lost City", "Hireling"],
landscapes: ["Expedition", "Quest"],
expansions: "seasideadventures"
},
{
id: 85,
name: "Boxed In",
cards: ["Smugglers", "Warehouse", "Salvager", "Tactician", "Wharf", "Encampment / Plunder", "Castles", "Chariot Race", "Enchantress", "Gladiator / Fortune"],
landscapes: ["Tax", "Wall"],
expansions: "seasideempires"
},
{
id: 86,
name: "King of the Sea",
cards: ["Haven", "Native Village", "Corsair", "Pirate", "Sea Witch", "Overlord", "Farmers' Market", "Temple", "Archive", "Wild Hunt"],
landscapes: ["Delve", "Fountain"],
expansions: "seasideempires"
},
{
id: 87,
name: "The New Black",
cards: ["Caravan", "Sailor", "Corsair", "Merchant Ship", "Tactician", "Ghost Town", "Secret Cave", "Cobbler", "Den of Sin", "Raider"],
extras: ["Magic Lamp", "Wish"],
expansions: "seasidenocturne"
},
{
id: 88,
name: "Forbidden Isle",
cards: ["Monkey", "Salvager", "Tide Pools", "Bazaar", "Pirate", "Tracker", "Blessed Village", "Cemetery", "Idol", "Tragic Hero"],
extras: ["Haunted Mirror", "Pouch", "Boons", "Will-O'-Wisp", "Ghost"],
expansions: "seasidenocturne"
},
{
id: 89,
name: "Free Shipping",
cards: ["Smugglers", "Blockade", "Island", "Outpost", "Wharf", "Lackeys", "Acting Troupe", "Cargo Ship", "Research", "Spices"],
landscapes: ["Innovation"],
expansions: "seasiderenaissance"
},
{
id: 90,
name: "Digging For Treasure",
cards: ["Native Village", "Astrolabe", "Caravan", "Salvager", "Treasure Map", "Border Guard", "Flag Bearer", "Inventor", "Sculptor", "Swashbuckler"],
extras: ["Flag", "Horn", "Lantern", "Treasure Chest"],
landscapes: ["Crop Rotation", "Silos"],
expansions: "seasiderenaissance"
},
{
id: 91,
name: "Innsmouth",
cards: ["Lighthouse", "Fishing Village", "Caravan", "Tide Pools", "Pirate", "Sheepdog", "Groom", "Coven", "Barge", "Animal Fair"],
extras: ["Horse"],
landscapes: ["Invest", "Way of the Goat"],
expansions: "seasidemenagerie"
},
{
id: 92,
name: "Ruritania",
cards: ["Astrolabe", "Warehouse", "Tide Pools", "Outpost", "Tactician", "Sleigh", "Bounty Hunter", "Cavalry", "Village Green", "Falconer"],
extras: ["Horse"],
landscapes: ["Alliance", "Way of the Monkey"],
expansions: "seasidemenagerie"
},
{
id: 93,
name: "Forward Thinking",
cards: ["Native Village", "Warehouse", "Cutpurse", "Sea Witch", "Tactician", "Odysseys", "Sentinel", "Royal Galley", "Guildmaster", "Highwayman"],
landscapes: ["Cave Dwellers"],
expansions: "seasideallies"
},
{
id: 94,
name: "Treasure Hunt",
cards: ["Haven", "Lookout", "Treasure Map", "Outpost", "Treasury", "Forts", "Town", "Emissary", "Swap", "Marquis"],
landscapes: ["Market Towns"],
expansions: "seasideallies"
},
{
id: 95,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 96,
name: "Lower Learning",
cards: ["Vineyard", "University", "Familiar", "Apprentice", "Anvil", "Bishop", "Worker's Village", "Charlatan", "Mint", "Peddler"],
colony: true,
extras: ["Potion"],
expansions: "alchemyprosperity"
},
{
id: 97,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 98,
name: "Wine Country",
cards: ["Vineyard", "University", "Familiar", "Golem", "Apprentice", "Guard Dog", "Nomads", "Highway", "Margrave", "Farmland"],
extras: ["Potion"],
expansions: "alchemyhinterlands"
},
{
id: 99,
name: "Infestations",
cards: ["Transmute", "Vineyard", "Scrying Pool", "Apprentice", "Market Square", "Armory", "Feodum", "Rats", "Wandering Minstrel", "Cultist"],
shelters: true,
extras: ["Potion", "Ruins"],
expansions: "alchemydarkages"
},
{
id: 100,
name: "Lamentations",
cards: ["Apothecary", "Herbalist", "University", "Golem", "Beggar", "Forager", "Ironmonger", "Catacombs", "Counterfeit", "Pillage"],
shelters: true,
extras: ["Potion", "Spoils"],
expansions: "alchemydarkages"
},
{
id: 101,
name: "Clown College",
cards: ["University", "Apothecary", "Familiar", "Golem", "Candlestick Maker", "Infirmary", "Menagerie", "Herald", "Carnival", "Jester"],
extras: ["Potion"],
expansions: "alchemycornguilds"
},
{
id: 102,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 103,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 104,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 105,
name: "Haste Potion",
cards: ["Transmute", "Vineyard", "Scrying Pool", "University", "Apprentice", "Magpie", "Messenger", "Port", "Royal Carriage", "Treasure Trove"],
extras: ["Potion"],
landscapes: ["Plan"],
expansions: "alchemyadventures"
},
{
id: 106,
name: "Cursecatchers",
cards: ["Apothecary", "Herbalist", "Familiar", "Philosopher's Stone", "Golem", "Peasant", "Ratcatcher", "Amulet", "Caravan Guard", "Bridge Troll"],
extras: ["Potion", "Soldier", "Fugitive", "Disciple", "Teacher"],
landscapes: ["Save", "Trade"],
expansions: "alchemyadventures"
},
{
id: 107,
name: "Collectors",
cards: ["Transmute", "Apothecary", "Herbalist", "University", "Apprentice", "City Quarter", "Encampment / Plunder", "Enchantress", "Farmers' Market", "Crown"],
extras: ["Potion"],
landscapes: ["Colonnade", "Museum"],
expansions: "alchemyempires"
},
{
id: 108,
name: "Nightmare Fuel",
cards: ["Transmute", "Vineyard", "Alchemist", "Apprentice", "Tracker", "Bard", "Blessed Village", "Cemetery", "Skulk", "Sacred Grove"],
extras: ["Potion", "Haunted Mirror", "Pouch", "Boons", "Hexes", "Will-O'-Wisp", "Ghost"],
expansions: "alchemynocturne"
},
{
id: 109,
name: "Peek-a-Boo",
cards: ["Apothecary", "Scrying Pool", "Alchemist", "Golem", "Lackeys", "Cargo Ship", "Improve", "Patron", "Silk Merchant", "Sculptor"],
extras: ["Potion"],
landscapes: ["Cathedral"],
expansions: "alchemyrenaissance"
},
{
id: 110,
name: "Class of 20",
cards: ["Transmute", "Vineyard", "University", "Snowy Village", "Cavalry", "Coven", "Hunting Lodge", "Kiln", "Livery", "Wayfarer"],
extras: ["Horse", "Potion"],
landscapes: ["Delay", "Way of the Owl"],
expansions: "alchemymenagerie"
},
{
id: 111,
name: "Recursion",
cards: ["Scrying Pool", "Alchemist", "Golem", "Apprentice", "Importer", "Merchant Camp", "Wizards", "Barbarian", "Galleria", "Modify"],
extras: ["Potion"],
landscapes: ["Coastal Haven"],
expansions: "alchemyallies"
},
{
id: 112,
name: "Beginners",
cards: ["Watchtower", "Clerk", "Monument", "Tiara", "Worker's Village", "Crystal Ball", "Magnate", "Rabble", "Bank", "Expand"],
colony: true,
expansions: "prosperity"
},
{
id: 113,
name: "Friendly Interactive",
cards: ["Bishop", "Tiara", "Worker's Village", "City", "Collection", "War Chest", "Vault", "Hoard", "Forge", "Peddler"],
colony: true,
expansions: "prosperity"
},
{
id: 114,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 115,
name: "Instant Gratification",
cards: ["Watchtower", "Bishop", "Mint", "Hoard", "Expand", "Oasis", "Trail", "Berserker", "Cauldron", "Haggler"],
colony: true,
expansions: "prosperityhinterlands"
},
{
id: 116,
name: "Treasure Trove",
cards: ["Clerk", "Monument", "Tiara", "Crystal Ball", "Bank", "Fool's Gold", "Develop", "Guard Dog", "Cauldron", "Inn"],
colony: true,
expansions: "prosperityhinterlands"
},
{
id: 117,
name: "One Man's Trash",
cards: ["Anvil", "City", "Crystal Ball", "Magnate", "War Chest", "Squire", "Forager", "Market Square", "Counterfeit", "Pillage"],
colony: true,
shelters: true,
extras: ["Spoils"],
expansions: "prosperitydarkages"
},
{
id: 118,
name: "Honor Among Thieves",
cards: ["Watchtower", "Quarry", "Collection", "Hoard", "Forge", "Squire", "Marauder", "Procession", "Bandit Camp", "Rogue"],
colony: true,
shelters: true,
extras: ["Ruins", "Spoils"],
expansions: "prosperitydarkages"
},
{
id: 119,
name: "Detours",
cards: ["Clerk", "Crystal Ball", "Magnate", "Hoard", "Forge", "Farmhands", "Remake", "Horn of Plenty", "Jester", "Joust"],
colony: true,
extras: ["Rewards"],
expansions: "prosperitycornguilds"
},
{
id: 120,
name: "Quarrymen",
cards: ["Quarry", "Charlatan", "City", "Grand Market", "Expand", "Candlestick Maker", "Baker", "Butcher", "Merchant Guild", "Soothsayer"],
colony: true,
expansions: "prosperitycornguilds"
},
{
id: 121,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 122,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 123,
name: "Last Will and Monument",
cards: ["Bishop", "Monument", "Collection", "Magnate", "Vault", "Coin of the Realm", "Dungeon", "Messenger", "Port", "Relic"],
colony: true,
landscapes: ["Inheritance"],
expansions: "prosperityadventures"
},
{
id: 124,
name: "Think Big",
cards: ["War Chest", "Hoard", "Expand", "King's Court", "Peddler", "Miser", "Distant Lands", "Giant", "Storyteller", "Hireling"],
colony: true,
landscapes: ["Ball", "Ferry"],
expansions: "prosperityadventures"
},
{
id: 125,
name: "Big Time",
cards: ["Investment", "Tiara", "Grand Market", "Bank", "Forge", "Royal Blacksmith", "Patrician / Emporium", "Gladiator / Fortune", "Villa", "Capital"],
colony: true,
landscapes: ["Dominate", "Obelisk"],
notes: "Obelisk randomly assigned",
expansions: "prosperityempires"
},
{
id: 126,
name: "Gilded Gates",
cards: ["Anvil", "Collection", "Mint", "War Chest", "Peddler", "City Quarter", "Encampment / Plunder", "Chariot Race", "Groundskeeper", "Wild Hunt"],
colony: true,
landscapes: ["Basilica", "Palace"],
expansions: "prosperityempires"
},
{
id: 127,
name: "Treasures of the Night",
cards: ["Investment", "Tiara", "Charlatan", "Crystal Ball", "War Chest", "Guardian", "Night Watchman", "Crypt", "Vampire", "Raider"],
colony: true,
extras: ["Hexes", "Bat"],
expansions: "prosperitynocturne"
},
{
id: 128,
name: "Day at the Races",
cards: ["Anvil", "Watchtower", "Bishop", "Clerk", "Peddler", "Druid", "Blessed Village", "Cemetery", "Tormentor", "Tragic Hero"],
colony: true,
extras: ["Haunted Mirror", "Boons", "Hexes", "Will-O'-Wisp", "Ghost"],
druid: ["The Swamp's Gift", "The River's Gift", "The Forest's Gift"],
expansions: "prosperitynocturne"
},
{
id: 129,
name: "Dreamers of Dreams",
cards: ["Watchtower", "Monument", "Worker's Village", "Charlatan", "Vault", "Cargo Ship", "Priest", "Old Witch", "Scepter", "Scholar"],
colony: true,
landscapes: ["Academy"],
expansions: "prosperityrenaissance"
},
{
id: 130,
name: "Movers and Shakers",
cards: ["Investment", "City", "Rabble", "Grand Market", "Bank", "Hideout", "Patron", "Research", "Treasurer", "Villain"],
colony: true,
extras: ["Key"],
landscapes: ["Capitalism", "Citadel"],
expansions: "prosperityrenaissance"
},
{
id: 131,
name: "Limited Time Offer",
cards: ["Anvil", "Worker's Village", "Mint", "Grand Market", "Peddler", "Supplies", "Displace", "Fisherman", "Destrier", "Wayfarer"],
colony: true,
extras: ["Horse"],
landscapes: ["Desperation", "Way of the Frog"],
expansions: "prosperitymenagerie"
},
{
id: 132,
name: "Otter Chaos",
cards: ["Clerk", "Monument", "Quarry", "City", "War Chest", "Camel Train", "Hunting Lodge", "Mastermind", "Paddock", "Animal Fair"],
colony: true,
extras: ["Horse"],
landscapes: ["Reap", "Way of the Otter"],
expansions: "prosperitymenagerie"
},
{
id: 133,
name: "Inventing Mania",
cards: ["Anvil", "Quarry", "Rabble", "Expand", "King's Court", "Bauble", "Augurs", "Importer", "Carpenter", "Capital City"],
colony: true,
landscapes: ["Family of Inventors"],
expansions: "prosperityallies"
},
{
id: 134,
name: "Bank of Toadies",
cards: ["Clerk", "Investment", "City", "Vault", "Bank", "Sycophant", "Odysseys", "Broker", "Town", "Marquis"],
colony: true,
landscapes: ["League of Bankers"],
expansions: "prosperityallies"
},
{
id: 135,
name: "Introduction",
cards: ["Crossroads", "Develop", "Oasis", "Jack of all Trades", "Nomads", "Spice Merchant", "Weaver", "Cartographer", "Margrave", "Stables"],
expansions: "hinterlands"
},
{
id: 136,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 137,
name: "Bargains",
cards: ["Fool's Gold", "Scheme", "Trader", "Trail", "Cauldron", "Haggler", "Highway", "Souk", "Wheelwright", "Border Village"],
expansions: "hinterlands"
},
{
id: 138,
name: "",
cards: [],
expansions: "(removed)"
},
{
id: 139,
name: "Far From Home",
cards: ["Fool's Gold", "Develop", "Weaver", "Cartographer", "Witch's Hut", "Feodum", "Fortress", "Wandering Minstrel", "Catacombs", "Count"],
shelters: true,
expansions: "hinterlandsdarkages"