-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkingdoms.js
2948 lines (2948 loc) · 109 KB
/
kingdoms.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 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 kingdoms = [
{
id: 0,
name: "Simplicity",
cards: ["Harbinger", "Merchant", "Village", "Gardens", "Moneylender", "Smithy", "Council Room", "Festival", "Laboratory", "Market"],
expansions: "base"
},
{
id: 1,
name: "Ups and Downs",
cards: ["Cellar", "Chapel", "Vassal", "Bureaucrat", "Poacher", "Remodel", "Bandit", "Festival", "Library", "Artisan"],
expansions: "base"
},
{
id: 2,
name: "Put In The Effort",
cards: ["Moat", "Merchant", "Workshop", "Poacher", "Smithy", "Throne Room", "Laboratory", "Sentry", "Witch", "Artisan"],
expansions: "base"
},
{
id: 3,
name: "Playing It Safe",
cards: ["Cellar", "Harbinger", "Merchant", "Vassal", "Workshop", "Moneylender", "Bandit", "Market", "Mine", "Sentry"],
expansions: "base"
},
{
id: 4,
name: "Slow And Steady",
cards: ["Cellar", "Moat", "Village", "Gardens", "Militia", "Throne Room", "Laboratory", "Market", "Mine", "Artisan"],
expansions: "base"
},
{
id: 5,
name: "Work It Out",
cards: ["Chapel", "Vassal", "Village", "Workshop", "Poacher", "Smithy", "Throne Room", "Festival", "Laboratory", "Market"],
expansions: "base"
},
{
id: 6,
name: "Beatdown",
cards: ["Cellar", "Gardens", "Militia", "Moneylender", "Poacher", "Bandit", "Council Room", "Festival", "Market", "Witch"],
expansions: "base"
},
{
id: 7,
name: "Making Do",
cards: ["Cellar", "Moat", "Merchant", "Village", "Workshop", "Militia", "Remodel", "Throne Room", "Bandit", "Festival"],
expansions: "base"
},
{
id: 8,
name: "Progression System",
cards: ["Cellar", "Chapel", "Harbinger", "Village", "Workshop", "Bureaucrat", "Remodel", "Laboratory", "Mine", "Sentry"],
expansions: "base"
},
{
id: 9,
name: "Maintain Focus",
cards: ["Chapel", "Village", "Workshop", "Gardens", "Militia", "Remodel", "Library", "Market", "Witch", "Artisan"],
expansions: "base"
},
{
id: 10,
name: "Kickback",
cards: ["Courtyard", "Masquerade", "Shanty Town", "Wishing Well", "Bridge", "Ironworks", "Mining Village", "Courtier", "Replace", "Torturer"],
expansions: "intrigue"
},
{
id: 11,
name: "Change Alliegance",
cards: ["Lurker", "Pawn", "Swindler", "Conspirator", "Mining Village", "Secret Passage", "Patrol", "Trading Post", "Upgrade", "Harem"],
expansions: "intrigue"
},
{
id: 12,
name: "Territorial Army",
cards: ["Lurker", "Pawn", "Shanty Town", "Bridge", "Conspirator", "Courtier", "Minion", "Replace", "Upgrade", "Nobles"],
expansions: "intrigue"
},
{
id: 13,
name: "Cheat Code",
cards: ["Pawn", "Shanty Town", "Wishing Well", "Ironworks", "Secret Passage", "Courtier", "Duke", "Trading Post", "Upgrade", "Harem"],
expansions: "intrigue"
},
{
id: 14,
name: "The Upper Crust",
cards: ["Courtyard", "Swindler", "Baron", "Mill", "Mining Village", "Duke", "Minion", "Patrol", "Trading Post", "Nobles"],
expansions: "intrigue"
},
{
id: 15,
name: "In The Shadows",
cards: ["Lurker", "Steward", "Baron", "Bridge", "Conspirator", "Duke", "Mill", "Replace", "Torturer", "Nobles"],
expansions: "intrigue"
},
{
id: 16,
name: "Insurance Policy",
cards: ["Courtyard", "Masquerade", "Shanty Town", "Swindler", "Baron", "Diplomat", "Ironworks", "Mill", "Mining Village", "Harem"],
expansions: "intrigue"
},
{
id: 17,
name: "Keep Your Head Down",
cards: ["Steward", "Baron", "Diplomat", "Ironworks", "Mill", "Secret Passage", "Minion", "Torturer", "Upgrade", "Harem"],
expansions: "intrigue"
},
{
id: 18,
name: "I Have A Bridge To Sell You",
cards: ["Pawn", "Shanty Town", "Swindler", "Bridge", "Conspirator", "Diplomat", "Secret Passage", "Courtier", "Trading Post", "Upgrade"],
expansions: "intrigue"
},
{
id: 19,
name: "Pick Your Poison",
cards: ["Lurker", "Steward", "Wishing Well", "Baron", "Ironworks", "Mill", "Duke", "Minion", "Patrol", "Torturer"],
expansions: "intrigue"
},
{
id: 20,
name: "Rule the Waves",
cards: ["Native Village", "Astrolabe", "Blockade", "Caravan", "Sailor", "Treasure Map", "Bazaar", "Corsair", "Merchant Ship", "Wharf"],
expansions: "seaside"
},
{
id: 21,
name: "Coastal Bombardment",
cards: ["Lighthouse", "Fishing Village", "Lookout", "Monkey", "Smugglers", "Island", "Salvager", "Bazaar", "Outpost", "Sea Witch"],
expansions: "seaside"
},
{
id: 22,
name: "Beach Buddies",
cards: ["Lighthouse", "Native Village", "Warehouse", "Blockade", "Cutpurse", "Island", "Tide Pools", "Merchant Ship", "Tactician", "Treasury"],
expansions: "seaside"
},
{
id: 23,
name: "Open Seas",
cards: ["Haven", "Astrolabe", "Fishing Village", "Monkey", "Sea Chart", "Warehouse", "Caravan", "Sailor", "Corsair", "Pirate"],
expansions: "seaside"
},
{
id: 24,
name: "Plain Sailing",
cards: ["Sea Chart", "Smugglers", "Warehouse", "Sailor", "Tide Pools", "Bazaar", "Outpost", "Pirate", "Sea Witch", "Wharf"],
expansions: "seaside"
},
{
id: 25,
name: "The Doldrums",
cards: ["Haven", "Fishing Village", "Lookout", "Blockade", "Cutpurse", "Island", "Treasure Map", "Corsair", "Merchant Ship", "Treasury"],
expansions: "seaside"
},
{
id: 26,
name: "Wave Machine",
cards: ["Haven", "Lighthouse", "Astrolabe", "Lookout", "Caravan", "Cutpurse", "Tide Pools", "Treasure Map", "Corsair", "Tactician"],
expansions: "seaside"
},
{
id: 27,
name: "The Shipping Forecast",
cards: ["Haven", "Native Village", "Lookout", "Sea Chart", "Smugglers", "Blockade", "Cutpurse", "Tide Pools", "Treasury", "Wharf"],
expansions: "seaside"
},
{
id: 28,
name: "Maritime Law",
cards: ["Fishing Village", "Monkey", "Sea Chart", "Smugglers", "Blockade", "Island", "Salvager", "Bazaar", "Outpost", "Pirate"],
expansions: "seaside"
},
{
id: 29,
name: "Cursed Sea",
cards: ["Native Village", "Smugglers", "Warehouse", "Caravan", "Bazaar", "Merchant Ship", "Sea Witch", "Tactician", "Treasury", "Wharf"],
expansions: "seaside"
},
{
id: 30,
name: "Soft Cap",
cards: ["Watchtower", "Clerk", "Investment", "Monument", "Tiara", "Worker's Village", "Vault", "Grand Market", "Hoard", "Expand"],
colony: true,
expansions: "prosperity"
},
{
id: 31,
name: "Before and After",
cards: ["Bishop", "Quarry", "Tiara", "Charlatan", "City", "Magnate", "Mint", "War Chest", "Bank", "Peddler"],
colony: true,
expansions: "prosperity"
},
{
id: 32,
name: "Future Imperfect",
cards: ["Anvil", "Watchtower", "Bishop", "Clerk", "Monument", "Crystal Ball", "Mint", "Rabble", "Hoard", "Bank"],
colony: true,
expansions: "prosperity"
},
{
id: 33,
name: "For Sale",
cards: ["Anvil", "Investment", "Quarry", "Worker's Village", "Collection", "Rabble", "War Chest", "Grand Market", "Forge", "King's Court"],
colony: true,
expansions: "prosperity"
},
{
id: 34,
name: "Defective Goods",
cards: ["Watchtower", "Monument", "Worker's Village", "Charlatan", "Crystal Ball", "Magnate", "Vault", "Expand", "King's Court", "Peddler"],
colony: true,
expansions: "prosperity"
},
{
id: 35,
name: "Interest Rates",
cards: ["Bishop", "Clerk", "Investment", "Tiara", "City", "Crystal Ball", "Magnate", "Vault", "War Chest", "Hoard"],
colony: true,
expansions: "prosperity"
},
{
id: 36,
name: "Low Standards",
cards: ["Clerk", "Tiara", "Collection", "Crystal Ball", "Mint", "Rabble", "Vault", "War Chest", "Grand Market", "Peddler"],
colony: true,
expansions: "prosperity"
},
{
id: 37,
name: "At Great Expense",
cards: ["Anvil", "Monument", "Worker's Village", "Magnate", "Mint", "Vault", "Hoard", "Bank", "Forge", "King's Court"],
colony: true,
expansions: "prosperity"
},
{
id: 38,
name: "The Taste of Success",
cards: ["Bishop", "Investment", "Quarry", "City", "Collection", "Mint", "Rabble", "War Chest", "Grand Market", "Bank"],
colony: true,
expansions: "prosperity"
},
{
id: 39,
name: "Don't Blink",
cards: ["Anvil", "Watchtower", "Quarry", "Charlatan", "City", "Collection", "Expand", "Forge", "King's Court", "Peddler"],
colony: true,
expansions: "prosperity"
},
{
id: 40,
name: "Meet the Neighbours",
cards: ["Guard Dog", "Oasis", "Scheme", "Nomads", "Spice Merchant", "Haggler", "Highway", "Stables", "Wheelwright", "Border Village"],
expansions: "hinterlands"
},
{
id: 41,
name: "Medium Large",
cards: ["Jack of all Trades", "Trader", "Trail", "Weaver", "Cartographer", "Cauldron", "Inn", "Margrave", "Witch's Hut", "Farmland"],
expansions: "hinterlands"
},
{
id: 42,
name: "The Lowlands",
cards: ["Crossroads", "Develop", "Guard Dog", "Scheme", "Tunnel", "Spice Merchant", "Berserker", "Souk", "Wheelwright", "Border Village"],
expansions: "hinterlands"
},
{
id: 43,
name: "Serenity",
cards: ["Fool's Gold", "Oasis", "Scheme", "Nomads", "Trader", "Trail", "Berserker", "Cartographer", "Stables", "Farmland"],
expansions: "hinterlands"
},
{
id: 44,
name: "Going the Distance",
cards: ["Crossroads", "Scheme", "Tunnel", "Jack of all Trades", "Cartographer", "Highway", "Inn", "Souk", "Stables", "Witch's Hut"],
expansions: "hinterlands"
},
{
id: 45,
name: "Cruel or Kind?",
cards: ["Fool's Gold", "Develop", "Scheme", "Nomads", "Cauldron", "Haggler", "Highway", "Margrave", "Souk", "Border Village"],
expansions: "hinterlands"
},
{
id: 46,
name: "Alternative Markets",
cards: ["Crossroads", "Develop", "Guard Dog", "Spice Merchant", "Weaver", "Cauldron", "Inn", "Stables", "Wheelwright", "Farmland"],
expansions: "hinterlands"
},
{
id: 47,
name: "Jacking Up Prices",
cards: ["Crossroads", "Oasis", "Jack of all Trades", "Nomads", "Spice Merchant", "Trader", "Haggler", "Inn", "Souk", "Wheelwright"],
expansions: "hinterlands"
},
{
id: 48,
name: "All That Glistens",
cards: ["Fool's Gold", "Develop", "Oasis", "Jack of all Trades", "Weaver", "Cauldron", "Highway", "Inn", "Stables", "Witch's Hut"],
expansions: "hinterlands"
},
{
id: 49,
name: "Passive Aggressive",
cards: ["Fool's Gold", "Guard Dog", "Tunnel", "Trader", "Berserker", "Cartographer", "Haggler", "Margrave", "Stables", "Border Village"],
expansions: "hinterlands"
},
{
id: 50,
name: "Rags to Riches",
cards: ["Squire", "Market Square", "Sage", "Storeroom", "Armory", "Wandering Minstrel", "Band of Misfits", "Catacombs", "Junk Dealer", "Pillage"],
extras: ["Shelters", "Spoils"],
expansions: "darkages"
},
{
id: 51,
name: "Party Time",
cards: ["Vagrant", "Hermit", "Sage", "Death Cart", "Procession", "Rats", "Counterfeit", "Graverobber", "Mystic", "Hunting Grounds"],
extras: ["Madman", "Ruins", "Shelters"],
expansions: "darkages"
},
{
id: 52,
name: "Marching Band",
cards: ["Poor House", "Squire", "Vagrant", "Hermit", "Urchin", "Ironmonger", "Marauder", "Band of Misfits", "Count", "Hunting Grounds"],
extras: ["Madman", "Mercenary", "Ruins", "Shelters", "Spoils"],
expansions: "darkages"
},
{
id: 53,
name: "Warzone",
cards: ["Beggar", "Forager", "Feodum", "Fortress", "Bandit Camp", "Catacombs", "Cultist", "Knights", "Pillage", "Altar"],
extras: ["Ruins", "Shelters", "Spoils"],
expansions: "darkages"
},
{
id: 54,
name: "Drinking the Punch",
cards: ["Poor House", "Squire", "Storeroom", "Urchin", "Procession", "Wandering Minstrel", "Cultist", "Junk Dealer", "Rogue", "Altar"],
extras: ["Mercenary", "Ruins", "Shelters"],
expansions: "darkages"
},
{
id: 55,
name: "Lurching Forward",
cards: ["Poor House", "Vagrant", "Forager", "Urchin", "Armory", "Fortress", "Bandit Camp", "Count", "Counterfeit", "Mystic"],
extras: ["Mercenary", "Shelters", "Spoils"],
expansions: "darkages"
},
{
id: 56,
name: "Rise to the Challenge",
cards: ["Beggar", "Market Square", "Sage", "Ironmonger", "Wandering Minstrel", "Bandit Camp", "Count", "Knights", "Rebuild", "Hunting Grounds"],
extras: ["Shelters", "Spoils"],
expansions: "darkages"
},
{
id: 57,
name: "Crazytown",
cards: ["Forager", "Hermit", "Storeroom", "Armory", "Feodum", "Fortress", "Marauder", "Graverobber", "Pillage", "Altar"],
extras: ["Madman", "Ruins", "Shelters", "Spoils"],
expansions: "darkages"
},
{
id: 58,
name: "High Five",
cards: ["Squire", "Storeroom", "Death Cart", "Fortress", "Procession", "Bandit Camp", "Catacombs", "Graverobber", "Junk Dealer", "Mystic"],
extras: ["Ruins", "Shelters", "Spoils"],
expansions: "darkages"
},
{
id: 59,
name: "Pest Control",
cards: ["Poor House", "Squire", "Sage", "Feodum", "Rats", "Wandering Minstrel", "Band of Misfits", "Graverobber", "Knights", "Hunting Grounds"],
extras: ["Shelters"],
expansions: "darkages"
},
{
id: 60,
name: "Basic Standards",
cards: ["Candlestick Maker", "Masterpiece", "Farming Village", "Horse Traders", "Plaza", "Remake", "Taxman", "Baker", "Jester", "Journeyman"],
expansions: "cornguilds"
},
{
id: 61,
name: "Second Opinion",
cards: ["Hamlet", "Doctor", "Advisor", "Farming Village", "Young Witch", "Butcher", "Horn of Plenty", "Hunting Party", "Merchant Guild", "Soothsayer", "Fairgrounds"],
notes: "Doctor is the Bane.",
expansions: "cornguilds"
},
{
id: 62,
name: "Variety Hour",
cards: ["Candlestick Maker", "Hamlet", "Menagerie", "Horse Traders", "Plaza", "Tournament", "Young Witch", "Baker", "Hunting Party", "Jester", "Fairgrounds"],
extras: ["Prizes"],
notes: "Candlestick Maker is the Bane.",
expansions: "cornguilds"
},
{
id: 63,
name: "Chaos Control",
cards: ["Hamlet", "Stonemason", "Fortune Teller", "Menagerie", "Advisor", "Herald", "Horse Traders", "Baker", "Jester", "Merchant Guild"],
expansions: "cornguilds"
},
{
id: 64,
name: "Fine Dining",
cards: ["Candlestick Maker", "Stonemason", "Menagerie", "Advisor", "Farming Village", "Remake", "Taxman", "Young Witch", "Horn of Plenty", "Journeyman", "Fairgrounds"],
notes: "Menagerie is the Bane.",
expansions: "cornguilds"
},
{
id: 65,
name: "Surgery",
cards: ["Hamlet", "Doctor", "Masterpiece", "Plaza", "Taxman", "Baker", "Butcher", "Harvest", "Hunting Party", "Journeyman"],
expansions: "cornguilds"
},
{
id: 66,
name: "Trust Issues",
cards: ["Stonemason", "Masterpiece", "Advisor", "Farming Village", "Horse Traders", "Remake", "Tournament", "Butcher", "Horn of Plenty", "Merchant Guild"],
extras: ["Prizes"],
expansions: "cornguilds"
},
{
id: 67,
name: "Bandaid",
cards: ["Hamlet", "Stonemason", "Doctor", "Menagerie", "Herald", "Plaza", "Baker", "Journeyman", "Merchant Guild", "Soothsayer"],
expansions: "cornguilds"
},
{
id: 68,
name: "Hodgepodge",
cards: ["Candlestick Maker", "Doctor", "Fortune Teller", "Farming Village", "Horse Traders", "Taxman", "Tournament", "Young Witch", "Harvest", "Jester", "Fairgrounds"],
extras: ["Prizes"],
notes: "Fortune Teller is the Bane.",
expansions: "cornguilds"
},
{
id: 69,
name: "Bath Time",
cards: ["Candlestick Maker", "Fortune Teller", "Masterpiece", "Menagerie", "Remake", "Plaza", "Baker", "Hunting Party", "Jester", "Merchant Guild"],
expansions: "cornguilds"
},
{
id: 70,
name: "Going the Distance",
cards: ["Raze", "Amulet", "Guide", "Duplicate", "Messenger", "Distant Lands", "Giant", "Lost City", "Relic", "Hireling"],
landscapes: ["Borrow", "Expedition"],
expansions: "adventures"
},
{
id: 71,
name: "Learning New Tricks",
cards: ["Peasant", "Caravan Guard", "Gear", "Dungeon", "Port", "Transmogrify", "Artificer", "Royal Carriage", "Swamp Hag", "Wine Merchant"],
extras: ["Soldier", "Fugitive", "Disciple", "Teacher"],
landscapes: ["Scouting Party", "Pilgrimage"],
expansions: "adventures"
},
{
id: 72,
name: "Pay to Win",
cards: ["Coin of the Realm", "Ratcatcher", "Guide", "Magpie", "Messenger", "Ranger", "Bridge Troll", "Storyteller", "Treasure Trove", "Hireling"],
landscapes: ["Trade", "Training"],
expansions: "adventures"
},
{
id: 73,
name: "Return on Investment",
cards: ["Page", "Caravan Guard", "Dungeon", "Miser", "Ranger", "Artificer", "Distant Lands", "Haunted Woods", "Lost City", "Wine Merchant"],
extras: ["Treasure Hunter", "Warrior", "Hero", "Champion"],
landscapes: ["Alms", "Inheritance"],
expansions: "adventures"
},
{
id: 74,
name: "Through the Undergrowth",
cards: ["Caravan Guard", "Guide", "Duplicate", "Magpie", "Port", "Giant", "Haunted Woods", "Royal Carriage", "Treasure Trove", "Wine Merchant"],
landscapes: ["Mission", "Seaway"],
expansions: "adventures"
},
{
id: 75,
name: "Workarounds",
cards: ["Coin of the Realm", "Ratcatcher", "Gear", "Duplicate", "Messenger", "Port", "Transmogrify", "Artificer", "Royal Cariage", "Swamp Hag"],
landscapes: ["Quest", "Save"],
expansions: "adventures"
},
{
id: 76,
name: "Galaxy Brain",
cards: ["Peasant", "Raze", "Amulet", "Magpie", "Miser", "Giant", "Haunted Woods", "Relic", "Storyteller", "Hireling"],
extras: ["Soldier", "Fugitive", "Disciple", "Teacher"],
landscapes: ["Ferry", "Pathfinding"],
expansions: "adventures"
},
{
id: 77,
name: "Long Term Goals",
cards: ["Coin of the Realm", "Caravan Guard", "Dungeon", "Ranger", "Transmogrify", "Artificer", "Bridge Troll", "Relic", "Royal Carriage", "Swamp Hag"],
landscapes: ["Plan", "Lost Arts"],
expansions: "adventures"
},
{
id: 78,
name: "Escalation",
cards: ["Page", "Ratcatcher", "Amulet", "Gear", "Magpie", "Distant Lands", "Haunted Woods", "Storyteller", "Treasure Trove", "Hireling"],
extras: ["Treasure Hunter", "Warrior", "Hero", "Champion"],
landscapes: ["Travelling Fair", "Bonfire"],
expansions: "adventures"
},
{
id: 79,
name: "Bargain Bin",
cards: ["Coin of the Realm", "Raze", "Amulet", "Caravan Guard", "Dungeon", "Duplicate", "Gear", "Guide", "Messenger", "Giant"],
landscapes: ["Ball", "Raid"],
expansions: "adventures"
},
{
id: 80,
name: "Anything Goes",
cards: ["Royal Blacksmith", "Encampment / Plunder", "Patrician / Emporium", "Farmers' Market", "Sacrifice", "Temple", "Charm", "Crown", "Forum", "Legionary"],
landscapes: ["Wedding", "Obelisk"],
obelisk: "Royal Blacksmith",
expansions: "empires"
},
{
id: 81,
name: "Patience",
cards: ["Engineer", "City Quarter", "Settlers / Bustling Village", "Catapult / Rocks", "Chariot Race", "Enchantress", "Archive", "Charm", "Forum", "Wild Hunt"],
landscapes: ["Banquet", "Mountain Pass"],
expansions: "empires"
},
{
id: 82,
name: "By Royal Decree",
cards: ["Overlord", "Castles", "Enchantress", "Gladiator / Fortune", "Sacrifice", "Villa", "Crown", "Groundskeeper", "Legionary", "Wild Hunt"],
landscapes: ["Windfall", "Colonnade"],
expansions: "empires"
},
{
id: 83,
name: "Look But Don't Touch",
cards: ["Engineer", "City Quarter", "Royal Blacksmith", "Settlers / Bustling Village", "Enchantress", "Gladiator / Fortune", "Villa", "Archive", "Charm", "Groundskeeper"],
landscapes: ["Triumph", "Fountain"],
expansions: "empires"
},
{
id: 84,
name: "Elitist",
cards: ["Encampment / Plunder", "Patrician / Emporium", "Castles", "Chariot Race", "Enchantress", "Sacrifice", "Capital", "Forum", "Legionary", "Wild Hunt"],
landscapes: ["Dominate", "Labyrinth"],
expansions: "empires"
},
{
id: 85,
name: "Money Laundering",
cards: ["City Quarter", "Overlord", "Patrician / Emporium", "Settlers / Bustling Village", "Gladiator / Fortune", "Temple", "Villa", "Capital", "Crown", "Groundskeeper"],
landscapes: ["Advance", "Bandit Fort"],
expansions: "empires"
},
{
id: 86,
name: "Participation Trophy",
cards: ["Engineer", "Overlord", "Encampment / Plunder", "Catapult / Rocks", "Farmers' Market", "Sacrifice", "Villa", "Archive", "Forum", "Legionary"],
landscapes: ["Basilica", "Baths"],
expansions: "empires"
},
{
id: 87,
name: "Balance",
cards: ["Patrician / Emporium", "Catapult / Rocks", "Chariot Race", "Enchantress", "Farmers' Market", "Sacrifice", "Villa", "Capital", "Groundskeeper", "Wild Hunt"],
landscapes: ["Conquest", "Orchard"],
expansions: "empires"
},
{
id: 88,
name: "Dominion: Turbo Edition",
cards: ["Engineer", "Royal Blacksmith", "Settlers / Bustling Village", "Castles", "Enchantress", "Gladiator / Fortune", "Villa", "Charm", "Crown", "Legionary"],
landscapes: ["Donate", "Arena"],
expansions: "empires"
},
{
id: 89,
name: "Bring a Ladder",
cards: ["Overlord", "Patrician / Emporium", "Settlers / Bustling Village", "Castles", "Farmers' Market", "Sacrifice", "Temple", "Archive", "Crown", "Wild Hunt"],
landscapes: ["Museum", "Wall"],
expansions: "empires"
},
{
id: 90,
name: "Feeling Lucky",
cards: ["Faithful Hound", "Monastery", "Tracker", "Fool", "Night Watchman", "Blessed Village", "Conclave", "Cobbler", "Idol", "Pooka"],
extras: ["Pouch", "Lucky Coin", "Cursed Gold", "Boons", "Will-O'-Wisp"],
expansions: "nocturne"
},
{
id: 91,
name: "After Hours",
cards: ["Guardian", "Ghost Town", "Leprechaun", "Blessed Village", "Devil's Workshop", "Exorcist", "Den of Sin", "Sacred Grove", "Tormentor", "Werewolf"],
extras: ["Boons", "Hexes", "Will-O'-Wisp", "Imp", "Ghost", "Wish"],
expansions: "nocturne"
},
{
id: 92,
name: "Life's Ups and Downs",
cards: ["Druid", "Pixie", "Changeling", "Bard", "Conclave", "Cursed Village", "Idol", "Sacred Grove", "Tragic Hero", "Raider"],
extras: ["Goat", "Boons", "Hexes", "Will-O'-Wisp"],
druid: ["The Field's Gift", "The River's Gift", "The Sky's Gift"],
expansions: "nocturne"
},
{
id: 93,
name: "Come Out to Play",
cards: ["Tracker", "Ghost Town", "Changeling", "Bard", "Devil's Workshop", "Shepherd", "Skulk", "Crypt", "Vampire", "Werewolf"],
extras: ["Pasture", "Pouch", "Boons", "Hexes", "Will-O'-Wisp", "Imp", "Bat"],
expansions: "nocturne"
},
{
id: 94,
name: "In Memoriam",
cards: ["Faithful Hound", "Monastery", "Blessed Village", "Cemetary", "Necromancer", "Cobbler", "Den of Sin", "Tragic Hero", "Vampire", "Raider"],
extras: ["Haunted Mirror", "Boons", "Will-O'-Wisp", "Ghost", "Bat", "Zombie Apprentice", "Zombie Mason", "Zombie Spy"],
expansions: "nocturne"
},
{
id: 95,
name: "Lazy Town",
cards: ["Guardian", "Monastery", "Night Watchman", "Secret Cave", "Skulk", "Crypt", "Den of Sin", "Pooka", "Tormentor", "Werewolf"],
extras: ["Magic Lamp", "Cursed Gold", "Hexes", "Wish", "Imp"],
expansions: "nocturne"
},
{
id: 96,
name: "Subdued",
cards: ["Pixie", "Tracker", "Leprechaun", "Blessed Village", "Necromancer", "Shepherd", "Skulk", "Den of Sin", "Idol", "Vampire"],
extras: ["Goat", "Pasture", "Pouch", "Boons", "Hexes", "Will-O'-Wisp", "Wish", "Bat", "Zombie Apprentice", "Zombie Mason", "Zombie Spy"],
expansions: "nocturne"
},
{
id: 97,
name: "Looks Can Be Deceiving",
cards: ["Faithful Hound", "Changeling", "Fool", "Ghost Town", "Bard", "Exorcist", "Crypt", "Pooka", "Sacred Grove", "Tormentor"],
extras: ["Lucky Coin", "Cursed Gold", "Boons", "Hexes", "Will-O'-Wisp", "Imp", "Ghost"],
expansions: "nocturne"
},
{
id: 98,
name: "Factory Method",
cards: ["Druid", "Guardian", "Tracker", "Night Watchman", "Cemetary", "Conclave", "Shepherd", "Skulk", "Cobbler", "Werewolf"],
extras: ["Haunted Mirror", "Pasture", "Pouch", "Boons", "Hexes", "Will-O'-Wisp", "Ghost"],
druid: ["The Forest's Gift", "The Swamp's Gift", "The Wind's Gift"],
expansions: "nocturne"
},
{
id: 99,
name: "High Spirits",
cards: ["Changeling", "Leprechaun", "Secret Cave", "Cemetary", "Devil's Workshop", "Exorcist", "Necromancer", "Cursed Village", "Idol", "Sacred Grove"],
extras: ["Haunted Mirror", "Magic Lamp", "Boons", "Hexes", "Will-O'-Wisp", "Imp", "Ghost", "Wish", "Zombie Apprentice", "Zombie Mason", "Zombie Spy"],
expansions: "nocturne"
},
{
id: 100,
name: "A New Age",
cards: ["Lackeys", "Cargo Ship", "Experiment", "Improve", "Flag Bearer", "Mountain Village", "Priest", "Sculptor", "Spices", "Villain"],
extras: ["Flag"],
landscapes: ["Fair", "Sinister Plot"],
expansions: "renaissance"
},
{
id: 101,
name: "Every Little Helps",
cards: ["Ducat", "Acting Troupe", "Cargo Ship", "Hideout", "Silk Merchant", "Old Witch", "Scepter", "Sculptor", "Seer", "Treasurer"],
extras: ["Key"],
landscapes: ["Canal", "Pageant"],
expansions: "renaissance"
},
{
id: 102,
name: "Deja Vu",
cards: ["Border Guard", "Acting Troupe", "Experiment", "Improve", "Inventor", "Mountain Village", "Research", "Silk Merchant", "Scholar", "Villain"],
extras: ["Horn", "Lantern"],
landscapes: ["City Gate", "Silos"],
expansions: "renaissance"
},
{
id: 103,
name: "Starch Art",
cards: ["Border Guard", "Ducat", "Lackeys", "Hideout", "Patron", "Priest", "Recruiter", "Scholar", "Spices", "Swashbuckler"],
extras: ["Horn", "Lantern", "Treasure Chest"],
landscapes: ["Fleet", "Star Chart"],
expansions: "renaissance"
},
{
id: 104,
name: "Offering",
cards: ["Ducat", "Acting Troupe", "Cargo Ship", "Improve", "Inventor", "Patron", "Scepter", "Seer", "Swashbuckler", "Villain"],
extras: ["Treasure Chest"],
landscapes: ["Cathedral", "Crop Rotation"],
expansions: "renaissance"
},
{
id: 105,
name: "The Villager People",
cards: ["Border Guard", "Lackeys", "Improve", "Flag Bearer", "Silk Merchant", "Old Witch", "Recruiter", "Scepter", "Sculptor", "Treasurer"],
extras: ["Horn", "Lantern", "Flag", "Key"],
landscapes: ["Piazza", "Road Network"],
expansions: "renaissance"
},
{
id: 106,
name: "Unlocked Knowledge",
cards: ["Lackeys", "Experiment", "Flag Bearer", "Hideout", "Mountain Village", "Research", "Scholar", "Seer", "Spices", "Treasurer"],
extras: ["Flag", "Key"],
landscapes: ["Barracks", "Sewers"],
expansions: "renaissance"
},
{
id: 107,
name: "Hoarder",
cards: ["Ducat", "Acting Troupe", "Cargo Ship", "Experiment", "Mountain Village", "Priest", "Recruiter", "Scepter", "Scholar", "Villain"],
landscapes: ["Citadel", "Guildhall"],
expansions: "renaissance"
},
{
id: 108,
name: "Funny Money",
cards: ["Border Guard", "Ducat", "Flag Bearer", "Hideout", "Patron", "Priest", "Research", "Old Witch", "Swashbuckler", "Treasurer"],
extras: ["Horn", "Lantern", "Flag", "Treasure Chest", "Key"],
landscapes: ["Capitalism", "Exploration"],
expansions: "renaissance"
},
{
id: 109,
name: "Gainsville",
cards: ["Experiment", "Flag Bearer", "Hideout", "Patron", "Research", "Silk Merchant", "Old Witch", "Sculptor", "Spices", "Swashbuckler"],
extras: ["Flag", "Treasure Chest"],
landscapes: ["Academy", "Innovation"],
expansions: "renaissance"
},
{
id: 110,
name: "Hop to It",
cards: ["Supplies", "Scrap", "Sheepdog", "Snowy Village", "Hostelry", "Barge", "Displace", "Fisherman", "Paddock", "Wayfarer"],
extras: ["Horse"],
landscapes: ["Bargain", "Way of the Frog"],
expansions: "menagerie"
},
{
id: 111,
name: "Give A Hoot",
cards: ["Camel Train", "Goatherd", "Bounty Hunter", "Cardinal", "Groom", "Village Green", "Coven", "Hunting Lodge", "Kiln", "Animal Fair"],
extras: ["Horse"],
landscapes: ["March", "Way of the Owl"],
expansions: "menagerie"
},
{
id: 112,
name: "Karma",
cards: ["Sleigh", "Supplies", "Sheepdog", "Stockpile", "Cavalry", "Falconer", "Gatekeeper", "Livery", "Paddock", "Sanctuary"],
extras: ["Horse"],
landscapes: ["Toil", "Way of the Chameleon"],
expansions: "menagerie"
},
{
id: 113,
name: "Unleash the Power Within",
cards: ["Black Cat", "Camel Train", "Sheepdog", "Bounty Hunter", "Cardinal", "Displace", "Falconer", "Kiln", "Mastermind", "Animal Fair"],
landscapes: ["Delay", "Way of the Pig"],
expansions: "menagerie"
},
{
id: 114,
name: "Herd Immunity",
cards: ["Black Cat", "Goatherd", "Groom", "Hostelry", "Village Green", "Fisherman", "Kiln", "Livery", "Paddock", "Destrier"],
extras: ["Horse"],
landscapes: ["Alliance", "Way of the Seal"],
expansions: "menagerie"
},
{
id: 115,
name: "Card Printer",
cards: ["Black Cat", "Sleigh", "Scrap", "Snowy Village", "Village Green", "Barge", "Falconer", "Mastermind", "Sanctuary", "Destrier"],
extras: ["Horse"],
landscapes: ["Commerce", "Way of the Rat"],
expansions: "menagerie"
},
{
id: 116,
name: "Olly Olly Oxen Free",
cards: ["Sleigh", "Supplies", "Camel Train", "Cardinal", "Cavalry", "Coven", "Barge", "Fisherman", "Livery", "Animal Fair"],
extras: ["Horse"],
landscapes: ["Enhance", "Way of the Ox"],
expansions: "menagerie"
},
{
id: 117,
name: "Monkey Seize Monkey Does",
cards: ["Supplies", "Goatherd", "Stockpile", "Groom", "Hostelry", "Displace", "Gatekeeper", "Hunting Lodge", "Mastermind", "Wayfarer"],
extras: ["Horse"],
landscapes: ["Seize the Day", "Way of the Monkey"],
expansions: "menagerie"
},
{
id: 118,
name: "Switch On",
cards: ["Sleigh", "Camel Train", "Scrap", "Sheepdog", "Coven", "Displace", "Hunting Lodge", "Paddock", "Destrier", "Animal Fair"],
extras: ["Horse"],
landscapes: ["Banish", "Way of the Worm"],
expansions: "menagerie"
},
{
id: 119,
name: "Snowed In",
cards: ["Black Cat", "Snowy Village", "Stockpile", "Bounty Hunter", "Fisherman", "Kiln", "Livery", "Paddock", "Sanctuary", "Animal Fair"],
extras: ["Horse"],
landscapes: ["Stampede", "Way of the Horse"],
expansions: "menagerie"
},
{
id: 120,
name: "Hobby Shop",
cards: ["Village", "Workshop", "Militia", "Throne Room", "Mine", "Courtyard", "Mill", "Patrol", "Replace", "Trading Post"],
expansions: "baseintrigue"
},
{
id: 121,
name: "Gee Whiz",
cards: ["Cellar", "Vassal", "Village", "Moneylender", "Artisan", "Wishing Well", "Baron", "Conspirator", "Diplomat", "Minion"],
expansions: "baseintrigue"
},
{
id: 122,
name: "Roguelike",
cards: ["Chapel", "Poacher", "Remodel", "Library", "Market", "Lurker", "Shanty Town", "Swindler", "Courtier", "Nobles"],
expansions: "baseintrigue"
},
{
id: 123,
name: "Carnival",
cards: ["Merchant", "Workshop", "Council Room", "Festival", "Sentry", "Masquerade", "Shanty Town", "Conspirator", "Diplomat", "Courtier"],
expansions: "baseintrigue"
},
{
id: 124,
name: "Oh Green World",
cards: ["Harbinger", "Bureaucrat", "Gardens", "Witch", "Artisan", "Steward", "Mill", "Duke", "Patrol", "Nobles"],
expansions: "baseintrigue"
},
{
id: 125,
name: "Obselescence",
cards: ["Moat", "Village", "Poacher", "Bandit", "Laboratory", "Pawn", "Ironworks", "Torturer", "Upgrade", "Harem"],
expansions: "baseintrigue"
},
{
id: 126,
name: "Four Play",
cards: ["Chapel", "Bureaucrat", "Militia", "Smithy", "Throne Room", "Baron", "Conspirator", "Mining Village", "Secret Passage", "Upgrade"],
expansions: "baseintrigue"
},
{
id: 127,
name: "Double-Crossing",
cards: ["Moat", "Vassal", "Throne Room", "Market", "Sentry", "Pawn", "Swindler", "Bridge", "Diplomat", "Secret Passage"],
expansions: "baseintrigue"
},
{
id: 128,
name: "Keep the Change",
cards: ["Moat", "Militia", "Council Room", "Festival", "Witch", "Lurker", "Steward", "Mining Village", "Upgrade", "Harem"],
expansions: "baseintrigue"
},
{
id: 129,
name: "Solo",
cards: ["Vassal", "Gardens", "Remodel", "Laboratory", "Market", "Masquerade", "Wishing Well", "Bridge", "Mill", "Courtier"],
expansions: "baseintrigue"
},
{
id: 130,
name: "Sunken Treasure",
cards: ["Village", "Bureaucrat", "Moneylender", "Smithy", "Bandit", "Native Village", "Astrolabe", "Treasure Map", "Corsair", "Pirate"],
expansions: "baseseaside"
},
{
id: 131,
name: "Speed Boats",
cards: ["Militia", "Remodel", "Throne Room", "Festival", "Mine", "Haven", "Lighthouse", "Fishing Village", "Warehouse", "Wharf"],
expansions: "baseseaside"
},
{
id: 132,
name: "Wade Through the Wreckage",
cards: ["Cellar", "Moat", "Gardens", "Market", "Artisan", "Caravan", "Tide Pools", "Bazaar", "Outpost", "Sea Witch"],
expansions: "baseseaside"
},
{
id: 133,
name: "Row Blocks",
cards: ["Harbinger", "Merchant", "Village", "Festival", "Sentry", "Lookout", "Monkey", "Sea Chart", "Blockade", "Cutpurse"],
expansions: "baseseaside"
},
{
id: 134,
name: "Nothing to Declare",
cards: ["Chapel", "Poacher", "Council Room", "Laboratory", "Witch", "Fishing Village", "Smugglers", "Island", "Salvager", "Treasury"],
expansions: "baseseaside"
},
{
id: 135,
name: "Setting Sail",
cards: ["Cellar", "Harbinger", "Vassal", "Workshop", "Festival", "Native Village", "Sailor", "Bazaar", "Merchant Ship", "Tactician"],
expansions: "baseseaside"
},
{
id: 136,
name: "Diversion",
cards: ["Village", "Remodel", "Bandit", "Library", "Sentry", "Haven", "Native Village", "Astrolabe", "Blockade", "Corsair"],
expansions: "baseseaside"
},
{
id: 137,
name: "Boats in Moats",
cards: ["Moat", "Workshop", "Market", "Witch", "Artisan", "Monkey", "Smugglers", "Island", "Bazaar", "Wharf"],
expansions: "baseseaside"
},
{
id: 138,
name: "Knowledge is Quay",
cards: ["Chapel", "Bureaucrat", "Remodel", "Library", "Mine", "Lighthouse", "Astrolabe", "Fishing Village", "Tide Pools", "Sea Witch"],
expansions: "baseseaside"
},
{
id: 139,
name: "Forward Planning",
cards: ["Village", "Gardens", "Militia", "Throne Room", "Laboratory", "Sailor", "Salvager", "Outpost", "Pirate", "Tactician"],
expansions: "baseseaside"
},
{
id: 140,
name: "Morning Cuppa",
cards: ["Cellar", "University", "Harbinger", "Merchant", "Militia", "Smithy", "Golem", "Laboratory", "Market", "Sentry"],
extras: ["Potion"],
expansions: "basealchemy"
},
{
id: 141,
name: "Grape Expectations",
cards: ["Transmute", "Vineyard", "Cellar", "Scrying Pool", "Workshop", "Poacher", "Throne Room", "Bandit", "Festival", "Market"],
extras: ["Potion"],
expansions: "basealchemy"
},
{
id: 142,
name: "Advance Party",
cards: ["Cellar", "Apothecary", "Vassal", "Village", "Gardens", "Poacher", "Apprentice", "Council Room", "Laboratory", "Witch"],
extras: ["Potion"],
expansions: "basealchemy"
},
{
id: 143,
name: "Handle With Care",
cards: ["Chapel", "Herbalist", "Merchant", "Alchemist", "Bureaucrat", "Remodel", "Golem", "Laboratory", "Witch", "Artisan"],
extras: ["Potion"],
expansions: "basealchemy"
},
{
id: 144,
name: "Now Or Later",
cards: ["Vineyard", "Moat", "Village", "Workshop", "Familiar", "Militia", "Remodel", "Council Room", "Mine", "Sentry"],
extras: ["Potion"],
expansions: "basealchemy"
},
{
id: 145,
name: "Forgetfulness",