Skip to content

Instantly share code, notes, and snippets.

@nickv2002
Last active October 24, 2016 23:02
Show Gist options
  • Save nickv2002/076cf795820454e1b96c60fd31fc2b40 to your computer and use it in GitHub Desktop.
Save nickv2002/076cf795820454e1b96c60fd31fc2b40 to your computer and use it in GitHub Desktop.
Draft JSON files and converter script for https://github.com/sumpfork/dominiontabs/issues/73
#!/usr/bin/env python
# coding=utf-8
import json, os, sys, io, re
from pprint import pprint
with io.open('/Users/nick/Documents/dominiontabs/card_db/en_us/cards.json') as data_file:
cardDict = json.load(data_file)
with io.open('/Users/nick/Documents/dominiontabs/card_db/en_us/card_groups.json') as data_file:
groupDict = json.load(data_file)
dominion1stEditionRemovedCards = ['Adventurer','Chancellor','Feast','Spy','Thief','Woodcutter']
intrigue1stEditionRemovedCards = ['Coppersmith','Great Hall','Saboteur','Scout','Secret Chamber','Tribute']
baseSetCards = ['Copper','Silver','Gold','Platinum','Potion','Curse','Estate','Duchy','Province','Colony','Trash']
domIntCrossover = ['Copper','Silver','Gold','Curse','Estate','Duchy','Province','Trash']
pageTravelers = ['Page', 'Treasure Hunter', 'Warrior', 'Hero']
pageTravelersCount = 0
peasantTravelers = ['Peasant', 'Soldier', 'Fugitive', 'Disciple']
peasantTravelersCount = 0
dRemovedCount = 0
iRemovedCount = 0
bRemovedCount = 0
crossRemovedCount = 0
extrasSkip = 0
promoImageCount = 0
en_Translation_cards = {}
allSetNames = set() # a set object ensures unique elements
outCardsfile = "/Users/nick/Documents/dominiontabs/card_db/en_us/cards_db.json"
outTransFile = "/Users/nick/Documents/dominiontabs/card_db/en_us/cards_en_us.json"
outSetsFile = "/Users/nick/Documents/dominiontabs/card_db/en_us/sets_en_us.json"
with open(outCardsfile, "w") as jsonF:
jsonF.write("[\n")
for cardData in cardDict:
# pprint(cardData)
cardname = cardData['name']
cardset = cardData['cardset']
if cardset.endswith('extras'):
# print "Skipping Extras Card: '%s' from '%s'" % (cardname, cardset)
extrasSkip += 1
continue # don't need these anymore
if '/' in cardname:
# print "Skipping / Card: '%s' from '%s'" % (cardname, cardset)
continue # don't need these anymore
if cardset == 'base':
bRemovedCount += 1
continue # We'll add these elsewhere
if cardset == 'dominion1stEdition':
if cardname in dominion1stEditionRemovedCards:
cardset = ['dominion1stEdition']
dRemovedCount += 1
else:
cardset = ['dominion1stEdition', 'dominion2ndEdition']
if cardname in domIntCrossover:
cardset.append('intrigue1stEdition')
crossRemovedCount += 0.999999 # partial completion
elif cardset == 'intrigue1stEdition':
if cardname in domIntCrossover:
crossRemovedCount += 0.000001 # partial completion
continue # we added this earlier
elif cardname in intrigue1stEditionRemovedCards:
cardset = ['intrigue1stEdition']
iRemovedCount += 1
else:
cardset = ['intrigue1stEdition', 'intrigue2ndEdition']
elif cardset.endswith('2ndEdition'):
cardset = [cardset, cardset+"Upgrade"]
else: # just convert to list
cardset = [cardset]
if cardname in baseSetCards:
cardset.append('base')
en_Translation_cards[cardname] = {'name':cardname, 'description':cardData['description'].strip(), 'extra':cardData['extra'].strip()}
# write card to text file
jsonF.write('{\n')
jsonF.write(' "card_tag":"%s",\n' % cardname )
jsonF.write(' "cardset_tags":[\n')
for ithCardset in cardset:
jsonF.write(' "%s",\n' % ithCardset)
allSetNames.add(ithCardset)
jsonF.write(' ],\n')
if cardname in pageTravelers:
jsonF.write(' "group_tag":"Page -> Champion",\n')
pageTravelersCount += 1
elif cardname in peasantTravelers:
jsonF.write(' "group_tag":"Peasant -> Teacher",\n')
peasantTravelersCount += 1
else:
# search groups to create group_tag
for ithGroupName in groupDict:
if cardname in groupDict[ithGroupName]['subcards']:
jsonF.write(' "group_tag":"%s",\n' % ithGroupName.replace('/', '-'))
# Events/Landmarks are also a group_tag
if 'Event' in cardData['types']:
jsonF.write(' "group_tag":"%s events",\n' % cardset[0])
elif 'Landmark' in cardData['types']:
jsonF.write(' "group_tag":"%s landmarks",\n' % cardset[0])
jsonF.write(' "cost":"%s",\n' % cardData['cost'] )
try: # to write potion cost
potcost = int(cardData['potcost'])
if potcost > 0: jsonF.write(' "potcost":"%s",\n' % potcost )
except KeyError:
pass # No potion cost specified, write nothing
try: # to write debtcost cost
debtcost = int(cardData['debtcost'])
if debtcost > 0: jsonF.write(' "debtcost":"%s",\n' % debtcost )
except KeyError:
pass # No Debt cost specified, write nothing
try: # to write count
count = int(cardData['count'])
if potcost != 10: jsonF.write(' "count":"%s",\n' % count )
except KeyError:
pass # No count specified, default of 10 for no text
# write a card image if available
if 'promo' in cardset:
potentialCardImage = os.path.abspath( '../images/%s_set.png' % cardname.replace(' ', '_') )
if os.path.isfile(potentialCardImage):
promoImageCount += 1
jsonF.write(' "image":"%s",\n' % os.path.split(potentialCardImage)[1] )
jsonF.write(' "types":[\n')
for ithType in cardData['types']:
jsonF.write(' "%s",\n' % ithType )
jsonF.write(' ],\n},\n')
jsonF.write(']\n')
assert dRemovedCount == len(dominion1stEditionRemovedCards)
assert iRemovedCount == len(intrigue1stEditionRemovedCards)
assert bRemovedCount == len(baseSetCards)
assert crossRemovedCount == len(domIntCrossover)
assert pageTravelersCount == len(pageTravelers)
assert peasantTravelersCount == len(peasantTravelers)
assert extrasSkip == 7
assert promoImageCount == 6
# write cards translation file
json.dump(en_Translation_cards, open(outTransFile, 'wb'), indent=True)
# write sets translation file
allSetNames = list(allSetNames)
allSetNames.sort()
with open(outSetsFile, "w") as jsonF:
jsonF.write("{\n")
for ithSet in allSetNames:
niceName = re.sub(r'((?<=[a-z])[A-Z]|(?<!\A)[A-Z](?=[a-z]))', r' \1',ithSet).title().replace("1St"," 1st").replace("2Nd"," 2nd")
text_icon = ithSet[0].title()
if "1st Edition" in niceName:
text_icon += '1'
elif "2nd Edition" in niceName:
text_icon += '2'
elif niceName == 'Adventures':
text_icon += 'd'
jsonF.write('"%s":{\n' % ithSet)
jsonF.write(' "set_name":"%s",\n' % niceName)
jsonF.write(' "text_icon":"%s"\n' % text_icon)
jsonF.write('},\n')
jsonF.write('}\n')
print "\nRecombination Complete."
[{
"card_tag": "Cellar",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "2",
"types": [
"Action",
],
}, {
"card_tag": "Chapel",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "2",
"types": [
"Action",
],
}, {
"card_tag": "Moat",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "2",
"types": [
"Action",
"Reaction",
],
}, {
"card_tag": "Chancellor",
"cardset_tags": [
"dominion1stEdition",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Village",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Woodcutter",
"cardset_tags": [
"dominion1stEdition",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Workshop",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Bureaucrat",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "4",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Feast",
"cardset_tags": [
"dominion1stEdition",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Gardens",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "4",
"types": [
"Victory",
],
}, {
"card_tag": "Militia",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "4",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Moneylender",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Remodel",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Smithy",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Spy",
"cardset_tags": [
"dominion1stEdition",
],
"cost": "4",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Thief",
"cardset_tags": [
"dominion1stEdition",
],
"cost": "4",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Throne Room",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Council Room",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Festival",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Laboratory",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Library",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Market",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Mine",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Witch",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
],
"cost": "5",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Adventurer",
"cardset_tags": [
"dominion1stEdition",
],
"cost": "6",
"types": [
"Action",
],
}, {
"card_tag": "Copper",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
"intrigue1stEdition",
"base",
],
"cost": "0",
"count": "60",
"types": [
"Treasure",
],
}, {
"card_tag": "Silver",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
"intrigue1stEdition",
"base",
],
"cost": "3",
"count": "40",
"types": [
"Treasure",
],
}, {
"card_tag": "Gold",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
"intrigue1stEdition",
"base",
],
"cost": "6",
"count": "30",
"types": [
"Treasure",
],
}, {
"card_tag": "Curse",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
"intrigue1stEdition",
"base",
],
"cost": "0",
"count": "30",
"types": [
"Curse",
],
}, {
"card_tag": "Estate",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
"intrigue1stEdition",
"base",
],
"cost": "2",
"count": "24",
"types": [
"Victory",
],
}, {
"card_tag": "Duchy",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
"intrigue1stEdition",
"base",
],
"cost": "5",
"types": [
"Victory",
],
}, {
"card_tag": "Province",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
"intrigue1stEdition",
"base",
],
"cost": "8",
"types": [
"Victory",
],
}, {
"card_tag": "Trash",
"cardset_tags": [
"dominion1stEdition",
"dominion2ndEdition",
"intrigue1stEdition",
"base",
],
"cost": "",
"count": "1",
"types": [
"Trash",
],
}, {
"card_tag": "Courtyard",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "2",
"types": [
"Action",
],
}, {
"card_tag": "Pawn",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "2",
"types": [
"Action",
],
}, {
"card_tag": "Secret Chamber",
"cardset_tags": [
"intrigue1stEdition",
],
"cost": "2",
"types": [
"Action",
"Reaction",
],
}, {
"card_tag": "Great Hall",
"cardset_tags": [
"intrigue1stEdition",
],
"cost": "3",
"types": [
"Action",
"Victory",
],
}, {
"card_tag": "Masquerade",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Shanty Town",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Steward",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Swindler",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "3",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Wishing Well",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Baron",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Bridge",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Conspirator",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Coppersmith",
"cardset_tags": [
"intrigue1stEdition",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Ironworks",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Mining Village",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Scout",
"cardset_tags": [
"intrigue1stEdition",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Duke",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "5",
"types": [
"Victory",
],
}, {
"card_tag": "Minion",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "5",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Saboteur",
"cardset_tags": [
"intrigue1stEdition",
],
"cost": "5",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Torturer",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "5",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Trading Post",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Tribute",
"cardset_tags": [
"intrigue1stEdition",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Upgrade",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Harem",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "6",
"types": [
"Treasure",
"Victory",
],
}, {
"card_tag": "Nobles",
"cardset_tags": [
"intrigue1stEdition",
"intrigue2ndEdition",
],
"cost": "6",
"types": [
"Action",
"Victory",
],
}, {
"card_tag": "Embargo",
"cardset_tags": [
"seaside",
],
"cost": "2",
"types": [
"Action",
],
}, {
"card_tag": "Haven",
"cardset_tags": [
"seaside",
],
"cost": "2",
"types": [
"Action",
"Duration",
],
}, {
"card_tag": "Lighthouse",
"cardset_tags": [
"seaside",
],
"cost": "2",
"types": [
"Action",
"Duration",
],
}, {
"card_tag": "Native Village",
"cardset_tags": [
"seaside",
],
"cost": "2",
"types": [
"Action",
],
}, {
"card_tag": "Pearl Diver",
"cardset_tags": [
"seaside",
],
"cost": "2",
"types": [
"Action",
],
}, {
"card_tag": "Ambassador",
"cardset_tags": [
"seaside",
],
"cost": "3",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Fishing Village",
"cardset_tags": [
"seaside",
],
"cost": "3",
"types": [
"Action",
"Duration",
],
}, {
"card_tag": "Lookout",
"cardset_tags": [
"seaside",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Smugglers",
"cardset_tags": [
"seaside",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Warehouse",
"cardset_tags": [
"seaside",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Caravan",
"cardset_tags": [
"seaside",
],
"cost": "4",
"types": [
"Action",
"Duration",
],
}, {
"card_tag": "Cutpurse",
"cardset_tags": [
"seaside",
],
"cost": "4",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Island",
"cardset_tags": [
"seaside",
],
"cost": "4",
"types": [
"Action",
"Victory",
],
}, {
"card_tag": "Navigator",
"cardset_tags": [
"seaside",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Pirate Ship",
"cardset_tags": [
"seaside",
],
"cost": "4",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Salvager",
"cardset_tags": [
"seaside",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Sea Hag",
"cardset_tags": [
"seaside",
],
"cost": "4",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Treasure Map",
"cardset_tags": [
"seaside",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Bazaar",
"cardset_tags": [
"seaside",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Explorer",
"cardset_tags": [
"seaside",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Ghost Ship",
"cardset_tags": [
"seaside",
],
"cost": "5",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Merchant Ship",
"cardset_tags": [
"seaside",
],
"cost": "5",
"types": [
"Action",
"Duration",
],
}, {
"card_tag": "Outpost",
"cardset_tags": [
"seaside",
],
"cost": "5",
"types": [
"Action",
"Duration",
],
}, {
"card_tag": "Tactician",
"cardset_tags": [
"seaside",
],
"cost": "5",
"types": [
"Action",
"Duration",
],
}, {
"card_tag": "Treasury",
"cardset_tags": [
"seaside",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Wharf",
"cardset_tags": [
"seaside",
],
"cost": "5",
"types": [
"Action",
"Duration",
],
}, {
"card_tag": "Transmute",
"cardset_tags": [
"alchemy",
],
"cost": "0",
"potcost": "1",
"types": [
"Action",
],
}, {
"card_tag": "Vineyard",
"cardset_tags": [
"alchemy",
],
"cost": "0",
"potcost": "1",
"types": [
"Victory",
],
}, {
"card_tag": "Apothecary",
"cardset_tags": [
"alchemy",
],
"cost": "2",
"potcost": "1",
"types": [
"Action",
],
}, {
"card_tag": "Herbalist",
"cardset_tags": [
"alchemy",
],
"cost": "2",
"types": [
"Action",
],
}, {
"card_tag": "Scrying Pool",
"cardset_tags": [
"alchemy",
],
"cost": "2",
"potcost": "1",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "University",
"cardset_tags": [
"alchemy",
],
"cost": "2",
"potcost": "1",
"types": [
"Action",
],
}, {
"card_tag": "Alchemist",
"cardset_tags": [
"alchemy",
],
"cost": "3",
"potcost": "1",
"types": [
"Action",
],
}, {
"card_tag": "Familiar",
"cardset_tags": [
"alchemy",
],
"cost": "3",
"potcost": "1",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Philosopher's Stone",
"cardset_tags": [
"alchemy",
],
"cost": "3",
"potcost": "1",
"types": [
"Treasure",
],
}, {
"card_tag": "Golem",
"cardset_tags": [
"alchemy",
],
"cost": "4",
"potcost": "1",
"types": [
"Action",
],
}, {
"card_tag": "Apprentice",
"cardset_tags": [
"alchemy",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Possession",
"cardset_tags": [
"alchemy",
],
"cost": "6",
"potcost": "1",
"types": [
"Action",
],
}, {
"card_tag": "Potion",
"cardset_tags": [
"alchemy",
"base",
],
"cost": "4",
"count": "16",
"types": [
"Treasure",
],
}, {
"card_tag": "Loan",
"cardset_tags": [
"prosperity",
],
"cost": "3",
"types": [
"Treasure",
],
}, {
"card_tag": "Trade Route",
"cardset_tags": [
"prosperity",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Watchtower",
"cardset_tags": [
"prosperity",
],
"cost": "3",
"types": [
"Reaction",
],
}, {
"card_tag": "Bishop",
"cardset_tags": [
"prosperity",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Monument",
"cardset_tags": [
"prosperity",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Quarry",
"cardset_tags": [
"prosperity",
],
"cost": "4",
"types": [
"Treasure",
],
}, {
"card_tag": "Talisman",
"cardset_tags": [
"prosperity",
],
"cost": "4",
"types": [
"Treasure",
],
}, {
"card_tag": "Worker's Village",
"cardset_tags": [
"prosperity",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "City",
"cardset_tags": [
"prosperity",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Contraband",
"cardset_tags": [
"prosperity",
],
"cost": "5",
"types": [
"Treasure",
],
}, {
"card_tag": "Counting House",
"cardset_tags": [
"prosperity",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Mint",
"cardset_tags": [
"prosperity",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Mountebank",
"cardset_tags": [
"prosperity",
],
"cost": "5",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Rabble",
"cardset_tags": [
"prosperity",
],
"cost": "5",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Royal Seal",
"cardset_tags": [
"prosperity",
],
"cost": "5",
"types": [
"Treasure",
],
}, {
"card_tag": "Vault",
"cardset_tags": [
"prosperity",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Venture",
"cardset_tags": [
"prosperity",
],
"cost": "5",
"types": [
"Treasure",
],
}, {
"card_tag": "Goons",
"cardset_tags": [
"prosperity",
],
"cost": "6",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Grand Market",
"cardset_tags": [
"prosperity",
],
"cost": "6",
"types": [
"Action",
],
}, {
"card_tag": "Hoard",
"cardset_tags": [
"prosperity",
],
"cost": "6",
"types": [
"Treasure",
],
}, {
"card_tag": "Bank",
"cardset_tags": [
"prosperity",
],
"cost": "7",
"types": [
"Treasure",
],
}, {
"card_tag": "Expand",
"cardset_tags": [
"prosperity",
],
"cost": "7",
"types": [
"Action",
],
}, {
"card_tag": "Forge",
"cardset_tags": [
"prosperity",
],
"cost": "7",
"types": [
"Action",
],
}, {
"card_tag": "King's Court",
"cardset_tags": [
"prosperity",
],
"cost": "7",
"types": [
"Action",
],
}, {
"card_tag": "Peddler",
"cardset_tags": [
"prosperity",
],
"cost": "8*",
"types": [
"Action",
],
}, {
"card_tag": "Platinum",
"cardset_tags": [
"prosperity",
"base",
],
"cost": "9",
"types": [
"Treasure",
],
}, {
"card_tag": "Colony",
"cardset_tags": [
"prosperity",
"base",
],
"cost": "11",
"types": [
"Victory",
],
}, {
"card_tag": "Black Market",
"cardset_tags": [
"promo",
],
"cost": "3",
"image": "Black_Market_set.png",
"types": [
"Action",
],
}, {
"card_tag": "Envoy",
"cardset_tags": [
"promo",
],
"cost": "4",
"image": "Envoy_set.png",
"types": [
"Action",
],
}, {
"card_tag": "Stash",
"cardset_tags": [
"promo",
],
"cost": "5",
"image": "Stash_set.png",
"types": [
"Treasure",
],
}, {
"card_tag": "Walled Village",
"cardset_tags": [
"promo",
],
"cost": "4",
"image": "Walled_Village_set.png",
"types": [
"Action",
],
}, {
"card_tag": "Governor",
"cardset_tags": [
"promo",
],
"cost": "5",
"image": "Governor_set.png",
"types": [
"Action",
],
}, {
"card_tag": "Prince",
"cardset_tags": [
"promo",
],
"cost": "8",
"image": "Prince_set.png",
"types": [
"Action",
],
}, {
"card_tag": "Summon",
"cardset_tags": [
"promo",
],
"group_tag": "promo events",
"cost": "5",
"types": [
"Event",
],
}, {
"card_tag": "Sauna",
"cardset_tags": [
"promo",
],
"group_tag": "Sauna - Avanto",
"cost": "4",
"count": "5",
"types": [
"Action",
],
}, {
"card_tag": "Avanto",
"cardset_tags": [
"promo",
],
"group_tag": "Sauna - Avanto",
"cost": "5",
"count": "5",
"types": [
"Action",
],
}, {
"card_tag": "Bag of Gold",
"cardset_tags": [
"cornucopia",
],
"group_tag": "Tournament and Prizes",
"cost": "0*",
"types": [
"Action",
"Prize",
],
}, {
"card_tag": "Diadem",
"cardset_tags": [
"cornucopia",
],
"group_tag": "Tournament and Prizes",
"cost": "0*",
"types": [
"Treasure",
"Prize",
],
}, {
"card_tag": "Followers",
"cardset_tags": [
"cornucopia",
],
"group_tag": "Tournament and Prizes",
"cost": "0*",
"types": [
"Action",
"Attack",
"Prize",
],
}, {
"card_tag": "Princess",
"cardset_tags": [
"cornucopia",
],
"group_tag": "Tournament and Prizes",
"cost": "0*",
"types": [
"Action",
"Prize",
],
}, {
"card_tag": "Trusty Steed",
"cardset_tags": [
"cornucopia",
],
"group_tag": "Tournament and Prizes",
"cost": "0*",
"types": [
"Action",
"Prize",
],
}, {
"card_tag": "Hamlet",
"cardset_tags": [
"cornucopia",
],
"cost": "2",
"types": [
"Action",
],
}, {
"card_tag": "Fortune Teller",
"cardset_tags": [
"cornucopia",
],
"cost": "3",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Menagerie",
"cardset_tags": [
"cornucopia",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Farming Village",
"cardset_tags": [
"cornucopia",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Horse Traders",
"cardset_tags": [
"cornucopia",
],
"cost": "4",
"types": [
"Action",
"Reaction",
],
}, {
"card_tag": "Remake",
"cardset_tags": [
"cornucopia",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Tournament",
"cardset_tags": [
"cornucopia",
],
"group_tag": "Tournament and Prizes",
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Young Witch",
"cardset_tags": [
"cornucopia",
],
"cost": "4",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Harvest",
"cardset_tags": [
"cornucopia",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Horn of Plenty",
"cardset_tags": [
"cornucopia",
],
"cost": "5",
"types": [
"Treasure",
],
}, {
"card_tag": "Hunting Party",
"cardset_tags": [
"cornucopia",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Jester",
"cardset_tags": [
"cornucopia",
],
"cost": "5",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Fairgrounds",
"cardset_tags": [
"cornucopia",
],
"cost": "6",
"types": [
"Victory",
],
}, {
"card_tag": "Crossroads",
"cardset_tags": [
"hinterlands",
],
"cost": "2",
"types": [
"Action",
],
}, {
"card_tag": "Duchess",
"cardset_tags": [
"hinterlands",
],
"cost": "2",
"types": [
"Action",
],
}, {
"card_tag": "Fool's Gold",
"cardset_tags": [
"hinterlands",
],
"cost": "2",
"types": [
"Treasure",
"Reaction",
],
}, {
"card_tag": "Develop",
"cardset_tags": [
"hinterlands",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Oasis",
"cardset_tags": [
"hinterlands",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Oracle",
"cardset_tags": [
"hinterlands",
],
"cost": "3",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Scheme",
"cardset_tags": [
"hinterlands",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Tunnel",
"cardset_tags": [
"hinterlands",
],
"cost": "3",
"types": [
"Victory",
"Reaction",
],
}, {
"card_tag": "Jack of all Trades",
"cardset_tags": [
"hinterlands",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Noble Brigand",
"cardset_tags": [
"hinterlands",
],
"cost": "4",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Nomad Camp",
"cardset_tags": [
"hinterlands",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Silk Road",
"cardset_tags": [
"hinterlands",
],
"cost": "4",
"types": [
"Victory",
],
}, {
"card_tag": "Spice Merchant",
"cardset_tags": [
"hinterlands",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Trader",
"cardset_tags": [
"hinterlands",
],
"cost": "4",
"types": [
"Action",
"Reaction",
],
}, {
"card_tag": "Cache",
"cardset_tags": [
"hinterlands",
],
"cost": "5",
"types": [
"Treasure",
],
}, {
"card_tag": "Cartographer",
"cardset_tags": [
"hinterlands",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Embassy",
"cardset_tags": [
"hinterlands",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Haggler",
"cardset_tags": [
"hinterlands",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Highway",
"cardset_tags": [
"hinterlands",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Ill-Gotten Gains",
"cardset_tags": [
"hinterlands",
],
"cost": "5",
"types": [
"Treasure",
],
}, {
"card_tag": "Inn",
"cardset_tags": [
"hinterlands",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Mandarin",
"cardset_tags": [
"hinterlands",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Margrave",
"cardset_tags": [
"hinterlands",
],
"cost": "5",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Stables",
"cardset_tags": [
"hinterlands",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Border Village",
"cardset_tags": [
"hinterlands",
],
"cost": "6",
"types": [
"Action",
],
}, {
"card_tag": "Farmland",
"cardset_tags": [
"hinterlands",
],
"cost": "6",
"types": [
"Victory",
],
}, {
"card_tag": "Ruins",
"cardset_tags": [
"dark ages",
],
"cost": "0",
"types": [
"Action",
"Ruins",
],
}, {
"card_tag": "Madman",
"cardset_tags": [
"dark ages",
],
"group_tag": "Hermit - Madman",
"cost": "0*",
"types": [
"Action",
],
}, {
"card_tag": "Spoils",
"cardset_tags": [
"dark ages",
],
"cost": "0*",
"count": "15",
"types": [
"Treasure",
],
}, {
"card_tag": "Hovel",
"cardset_tags": [
"dark ages",
],
"group_tag": "Shelters",
"cost": "1",
"types": [
"Reaction",
"Shelter",
],
}, {
"card_tag": "Necropolis",
"cardset_tags": [
"dark ages",
],
"group_tag": "Shelters",
"cost": "1",
"types": [
"Action",
"Shelter",
],
}, {
"card_tag": "Overgrown Estate",
"cardset_tags": [
"dark ages",
],
"group_tag": "Shelters",
"cost": "1",
"types": [
"Victory",
"Shelter",
],
}, {
"card_tag": "Poor House",
"cardset_tags": [
"dark ages",
],
"cost": "1",
"types": [
"Action",
],
}, {
"card_tag": "Squire",
"cardset_tags": [
"dark ages",
],
"cost": "2",
"types": [
"Action",
],
}, {
"card_tag": "Vagrant",
"cardset_tags": [
"dark ages",
],
"cost": "2",
"types": [
"Action",
],
}, {
"card_tag": "Hermit",
"cardset_tags": [
"dark ages",
],
"group_tag": "Hermit - Madman",
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Sage",
"cardset_tags": [
"dark ages",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Feodum",
"cardset_tags": [
"dark ages",
],
"cost": "4",
"types": [
"Victory",
],
}, {
"card_tag": "Fortress",
"cardset_tags": [
"dark ages",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Ironmonger",
"cardset_tags": [
"dark ages",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Procession",
"cardset_tags": [
"dark ages",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Rats",
"cardset_tags": [
"dark ages",
],
"cost": "4",
"count": "20",
"types": [
"Action",
],
}, {
"card_tag": "Band of Misfits",
"cardset_tags": [
"dark ages",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Bandit Camp",
"cardset_tags": [
"dark ages",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Count",
"cardset_tags": [
"dark ages",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Cultist",
"cardset_tags": [
"dark ages",
],
"cost": "5",
"types": [
"Action",
"Attack",
"Looter",
],
}, {
"card_tag": "Graverobber",
"cardset_tags": [
"dark ages",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Pillage",
"cardset_tags": [
"dark ages",
],
"cost": "5",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Scavenger",
"cardset_tags": [
"dark ages",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Altar",
"cardset_tags": [
"dark ages",
],
"cost": "6",
"types": [
"Action",
],
}, {
"card_tag": "Armory",
"cardset_tags": [
"dark ages",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Beggar",
"cardset_tags": [
"dark ages",
],
"cost": "2",
"types": [
"Action",
"Reaction",
],
}, {
"card_tag": "Catacombs",
"cardset_tags": [
"dark ages",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Counterfeit",
"cardset_tags": [
"dark ages",
],
"cost": "5",
"types": [
"Treasure",
],
}, {
"card_tag": "Death Cart",
"cardset_tags": [
"dark ages",
],
"cost": "4",
"types": [
"Action",
"Looter",
],
}, {
"card_tag": "Forager",
"cardset_tags": [
"dark ages",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Junk Dealer",
"cardset_tags": [
"dark ages",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Knights",
"cardset_tags": [
"dark ages",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Marauder",
"cardset_tags": [
"dark ages",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Market Square",
"cardset_tags": [
"dark ages",
],
"cost": "3",
"types": [
"Action",
"Reaction",
],
}, {
"card_tag": "Rebuild",
"cardset_tags": [
"dark ages",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Rogue",
"cardset_tags": [
"dark ages",
],
"cost": "5",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Storeroom",
"cardset_tags": [
"dark ages",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Urchin",
"cardset_tags": [
"dark ages",
],
"group_tag": "Urchin - Mercenary",
"cost": "3",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Wandering Minstrel",
"cardset_tags": [
"dark ages",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Hunting Grounds",
"cardset_tags": [
"dark ages",
],
"cost": "6",
"types": [
"Action",
],
}, {
"card_tag": "Mercenary",
"cardset_tags": [
"dark ages",
],
"group_tag": "Urchin - Mercenary",
"cost": "0*",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Mystic",
"cardset_tags": [
"dark ages",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Advisor",
"cardset_tags": [
"guilds",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Baker",
"cardset_tags": [
"guilds",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Butcher",
"cardset_tags": [
"guilds",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Candlestick Maker",
"cardset_tags": [
"guilds",
],
"cost": "2",
"types": [
"Action",
],
}, {
"card_tag": "Doctor",
"cardset_tags": [
"guilds",
],
"cost": "3+",
"types": [
"Action",
],
}, {
"card_tag": "Herald",
"cardset_tags": [
"guilds",
],
"cost": "4+",
"types": [
"Action",
],
}, {
"card_tag": "Journeyman",
"cardset_tags": [
"guilds",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Masterpiece",
"cardset_tags": [
"guilds",
],
"cost": "3+",
"types": [
"Treasure",
],
}, {
"card_tag": "Merchant Guild",
"cardset_tags": [
"guilds",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Plaza",
"cardset_tags": [
"guilds",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Soothsayer",
"cardset_tags": [
"guilds",
],
"cost": "5",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Stonemason",
"cardset_tags": [
"guilds",
],
"cost": "2+",
"types": [
"Action",
],
}, {
"card_tag": "Taxman",
"cardset_tags": [
"guilds",
],
"cost": "4",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Amulet",
"cardset_tags": [
"adventures",
],
"cost": "3",
"types": [
"Action",
"Duration",
],
}, {
"card_tag": "Artificer",
"cardset_tags": [
"adventures",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Bridge Troll",
"cardset_tags": [
"adventures",
],
"cost": "5",
"types": [
"Action",
"Attack",
"Duration",
],
}, {
"card_tag": "Caravan Guard",
"cardset_tags": [
"adventures",
],
"cost": "3",
"types": [
"Action",
"Duration",
"Reaction",
],
}, {
"card_tag": "Dungeon",
"cardset_tags": [
"adventures",
],
"cost": "3",
"types": [
"Action",
"Duration",
],
}, {
"card_tag": "Duplicate",
"cardset_tags": [
"adventures",
],
"cost": "4",
"types": [
"Action",
"Reserve",
],
}, {
"card_tag": "Gear",
"cardset_tags": [
"adventures",
],
"cost": "3",
"types": [
"Action",
"Duration",
],
}, {
"card_tag": "Giant",
"cardset_tags": [
"adventures",
],
"cost": "5",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Guide",
"cardset_tags": [
"adventures",
],
"cost": "3",
"types": [
"Action",
"Reserve",
],
}, {
"card_tag": "Haunted Woods",
"cardset_tags": [
"adventures",
],
"cost": "5",
"types": [
"Action",
"Attack",
"Duration",
],
}, {
"card_tag": "Hireling",
"cardset_tags": [
"adventures",
],
"cost": "6",
"types": [
"Action",
"Duration",
],
}, {
"card_tag": "Lost City",
"cardset_tags": [
"adventures",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Magpie",
"cardset_tags": [
"adventures",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Messenger",
"cardset_tags": [
"adventures",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Miser",
"cardset_tags": [
"adventures",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Ranger",
"cardset_tags": [
"adventures",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Ratcatcher",
"cardset_tags": [
"adventures",
],
"cost": "2",
"types": [
"Action",
"Reserve",
],
}, {
"card_tag": "Raze",
"cardset_tags": [
"adventures",
],
"cost": "2",
"types": [
"Action",
],
}, {
"card_tag": "Royal Carriage",
"cardset_tags": [
"adventures",
],
"cost": "5",
"types": [
"Action",
"Reserve",
],
}, {
"card_tag": "Storyteller",
"cardset_tags": [
"adventures",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Swamp Hag",
"cardset_tags": [
"adventures",
],
"cost": "5",
"types": [
"Action",
"Attack",
"Duration",
],
}, {
"card_tag": "Transmogrify",
"cardset_tags": [
"adventures",
],
"cost": "4",
"types": [
"Action",
"Reserve",
],
}, {
"card_tag": "Wine Merchant",
"cardset_tags": [
"adventures",
],
"cost": "5",
"types": [
"Action",
"Reserve",
],
}, {
"card_tag": "Port",
"cardset_tags": [
"adventures",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Coin of the Realm",
"cardset_tags": [
"adventures",
],
"cost": "2",
"types": [
"Treasure",
"Reserve",
],
}, {
"card_tag": "Relic",
"cardset_tags": [
"adventures",
],
"cost": "5",
"types": [
"Treasure",
"Attack",
],
}, {
"card_tag": "Treasure Trove",
"cardset_tags": [
"adventures",
],
"cost": "5",
"types": [
"Treasure",
],
}, {
"card_tag": "Distant Lands",
"cardset_tags": [
"adventures",
],
"cost": "5",
"types": [
"Action",
"Reserve",
"Victory",
],
}, {
"card_tag": "Page",
"cardset_tags": [
"adventures",
],
"group_tag": "Page -> Champion",
"cost": "2",
"types": [
"Action",
"Traveller",
],
}, {
"card_tag": "Peasant",
"cardset_tags": [
"adventures",
],
"group_tag": "Peasant -> Teacher",
"cost": "2",
"types": [
"Action",
"Traveller",
],
}, {
"card_tag": "Treasure Hunter",
"cardset_tags": [
"adventures",
],
"group_tag": "Page -> Champion",
"cost": "3*",
"types": [
"Action",
"Traveller",
],
}, {
"card_tag": "Warrior",
"cardset_tags": [
"adventures",
],
"group_tag": "Page -> Champion",
"cost": "4*",
"types": [
"Action",
"Attack",
"Traveller",
],
}, {
"card_tag": "Hero",
"cardset_tags": [
"adventures",
],
"group_tag": "Page -> Champion",
"cost": "5*",
"types": [
"Action",
"Traveller",
],
}, {
"card_tag": "Champion",
"cardset_tags": [
"adventures",
],
"group_tag": "Page",
"cost": "6*",
"count": "5",
"types": [
"Action",
"Duration",
],
}, {
"card_tag": "Soldier",
"cardset_tags": [
"adventures",
],
"group_tag": "Peasant -> Teacher",
"cost": "3*",
"types": [
"Action",
"Attack",
"Traveller",
],
}, {
"card_tag": "Fugitive",
"cardset_tags": [
"adventures",
],
"group_tag": "Peasant -> Teacher",
"cost": "4*",
"types": [
"Action",
"Traveller",
],
}, {
"card_tag": "Disciple",
"cardset_tags": [
"adventures",
],
"group_tag": "Peasant -> Teacher",
"cost": "5*",
"types": [
"Action",
"Traveller",
],
}, {
"card_tag": "Teacher",
"cardset_tags": [
"adventures",
],
"group_tag": "Peasant",
"cost": "6*",
"count": "5",
"types": [
"Action",
"Reserve",
],
}, {
"card_tag": "Alms",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "0",
"types": [
"Event",
],
}, {
"card_tag": "Ball",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "5",
"types": [
"Event",
],
}, {
"card_tag": "Bonfire",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "3",
"types": [
"Event",
],
}, {
"card_tag": "Borrow",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "0",
"types": [
"Event",
],
}, {
"card_tag": "Expedition",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "3",
"types": [
"Event",
],
}, {
"card_tag": "Ferry",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "3",
"types": [
"Event",
],
}, {
"card_tag": "Inheritance",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "7",
"types": [
"Event",
],
}, {
"card_tag": "Lost Arts",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "6",
"types": [
"Event",
],
}, {
"card_tag": "Mission",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "4",
"types": [
"Event",
],
}, {
"card_tag": "Pathfinding",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "8",
"types": [
"Event",
],
}, {
"card_tag": "Pilgrimage",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "4",
"types": [
"Event",
],
}, {
"card_tag": "Plan",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "3",
"types": [
"Event",
],
}, {
"card_tag": "Quest",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "0",
"types": [
"Event",
],
}, {
"card_tag": "Raid",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "5",
"types": [
"Event",
],
}, {
"card_tag": "Save",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "1",
"types": [
"Event",
],
}, {
"card_tag": "Scouting Party",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "2",
"types": [
"Event",
],
}, {
"card_tag": "Seaway",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "5",
"types": [
"Event",
],
}, {
"card_tag": "Trade",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "5",
"types": [
"Event",
],
}, {
"card_tag": "Training",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "6",
"types": [
"Event",
],
}, {
"card_tag": "Travelling Fair",
"cardset_tags": [
"adventures",
],
"group_tag": "adventures events",
"cost": "2",
"types": [
"Event",
],
}, {
"card_tag": "Archive",
"cardset_tags": [
"empires",
],
"cost": "5",
"types": [
"Action",
"Duration",
],
}, {
"card_tag": "Bustling Village",
"cardset_tags": [
"empires",
],
"group_tag": "Bustling Village - Settlers",
"cost": "5",
"count": "5",
"types": [
"Action",
],
}, {
"card_tag": "Capital",
"cardset_tags": [
"empires",
],
"cost": "5",
"types": [
"Treasure",
],
}, {
"card_tag": "Castles",
"cardset_tags": [
"empires",
],
"cost": "3",
"count": "12",
"types": [
"Victory",
"Castle",
],
}, {
"card_tag": "Catapult",
"cardset_tags": [
"empires",
],
"group_tag": "Catapult - Rocks",
"cost": "3",
"count": "5",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Chariot Race",
"cardset_tags": [
"empires",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Charm",
"cardset_tags": [
"empires",
],
"cost": "5",
"types": [
"Treasure",
],
}, {
"card_tag": "City Quarter",
"cardset_tags": [
"empires",
],
"cost": "0",
"debtcost": "8",
"types": [
"Action",
],
}, {
"card_tag": "Crown",
"cardset_tags": [
"empires",
],
"cost": "5",
"types": [
"Action",
"Treasure",
],
}, {
"card_tag": "Emporium",
"cardset_tags": [
"empires",
],
"group_tag": "Patrician - Emporium",
"cost": "5",
"count": "5",
"types": [
"Action",
],
}, {
"card_tag": "Encampment",
"cardset_tags": [
"empires",
],
"group_tag": "Encampment - Plunder",
"cost": "2",
"count": "5",
"types": [
"Action",
],
}, {
"card_tag": "Enchantress",
"cardset_tags": [
"empires",
],
"cost": "3",
"types": [
"Action",
"Attack",
"Duration",
],
}, {
"card_tag": "Engineer",
"cardset_tags": [
"empires",
],
"cost": "0",
"debtcost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Farmers' Market",
"cardset_tags": [
"empires",
],
"cost": "3",
"types": [
"Action",
"Gathering",
],
}, {
"card_tag": "Fortune",
"cardset_tags": [
"empires",
],
"group_tag": "Gladiator - Fortune",
"cost": "8",
"debtcost": "8",
"count": "5",
"types": [
"Treasure",
],
}, {
"card_tag": "Forum",
"cardset_tags": [
"empires",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Gladiator",
"cardset_tags": [
"empires",
],
"group_tag": "Gladiator - Fortune",
"cost": "3",
"count": "5",
"types": [
"Action",
],
}, {
"card_tag": "Groundskeeper",
"cardset_tags": [
"empires",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Legionary",
"cardset_tags": [
"empires",
],
"cost": "5",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Royal Blacksmith",
"cardset_tags": [
"empires",
],
"cost": "0",
"debtcost": "8",
"types": [
"Action",
],
}, {
"card_tag": "Overlord",
"cardset_tags": [
"empires",
],
"cost": "0",
"debtcost": "8",
"types": [
"Action",
],
}, {
"card_tag": "Patrician",
"cardset_tags": [
"empires",
],
"group_tag": "Patrician - Emporium",
"cost": "2",
"count": "5",
"types": [
"Action",
],
}, {
"card_tag": "Plunder",
"cardset_tags": [
"empires",
],
"group_tag": "Encampment - Plunder",
"cost": "5",
"count": "5",
"types": [
"Treasure",
],
}, {
"card_tag": "Rocks",
"cardset_tags": [
"empires",
],
"group_tag": "Catapult - Rocks",
"cost": "4",
"count": "5",
"types": [
"Treasure",
],
}, {
"card_tag": "Sacrifice",
"cardset_tags": [
"empires",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Settlers",
"cardset_tags": [
"empires",
],
"group_tag": "Bustling Village - Settlers",
"cost": "2",
"count": "5",
"types": [
"Action",
],
}, {
"card_tag": "Temple",
"cardset_tags": [
"empires",
],
"cost": "4",
"types": [
"Action",
"Gathering",
],
}, {
"card_tag": "Villa",
"cardset_tags": [
"empires",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Wild Hunt",
"cardset_tags": [
"empires",
],
"cost": "5",
"types": [
"Action",
"Gathering",
],
}, {
"card_tag": "Triumph",
"cardset_tags": [
"empires",
],
"group_tag": "empires events",
"cost": "0",
"debtcost": "5",
"types": [
"Event",
],
}, {
"card_tag": "Annex",
"cardset_tags": [
"empires",
],
"group_tag": "empires events",
"cost": "0",
"debtcost": "8",
"types": [
"Event",
],
}, {
"card_tag": "Donate",
"cardset_tags": [
"empires",
],
"group_tag": "empires events",
"cost": "0",
"debtcost": "8",
"types": [
"Event",
],
}, {
"card_tag": "Advance",
"cardset_tags": [
"empires",
],
"group_tag": "empires events",
"cost": "0",
"types": [
"Event",
],
}, {
"card_tag": "Delve",
"cardset_tags": [
"empires",
],
"group_tag": "empires events",
"cost": "2",
"types": [
"Event",
],
}, {
"card_tag": "Tax",
"cardset_tags": [
"empires",
],
"group_tag": "empires events",
"cost": "2",
"types": [
"Event",
],
}, {
"card_tag": "Banquet",
"cardset_tags": [
"empires",
],
"group_tag": "empires events",
"cost": "3",
"types": [
"Event",
],
}, {
"card_tag": "Ritual",
"cardset_tags": [
"empires",
],
"group_tag": "empires events",
"cost": "4",
"types": [
"Event",
],
}, {
"card_tag": "Salt the Earth",
"cardset_tags": [
"empires",
],
"group_tag": "empires events",
"cost": "4",
"types": [
"Event",
],
}, {
"card_tag": "Wedding",
"cardset_tags": [
"empires",
],
"group_tag": "empires events",
"cost": "4",
"debtcost": "3",
"types": [
"Event",
],
}, {
"card_tag": "Windfall",
"cardset_tags": [
"empires",
],
"group_tag": "empires events",
"cost": "5",
"types": [
"Event",
],
}, {
"card_tag": "Conquest",
"cardset_tags": [
"empires",
],
"group_tag": "empires events",
"cost": "6",
"types": [
"Event",
],
}, {
"card_tag": "Dominate",
"cardset_tags": [
"empires",
],
"group_tag": "empires events",
"cost": "14",
"types": [
"Event",
],
}, {
"card_tag": "Aqueduct",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Arena",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Bandit Fort",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Basilica",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Baths",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Battlefield",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Colonnade",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Defiled Shrine",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Fountain",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Keep",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Labyrinth",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Montain Pass",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Museum",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Obelisk",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Orchard",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Palace",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Tomb",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Tower",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Triumphal Arch",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Wall",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Wolf Den",
"cardset_tags": [
"empires",
],
"group_tag": "empires landmarks",
"cost": "",
"types": [
"Landmark",
],
}, {
"card_tag": "Vassal",
"cardset_tags": [
"dominion2ndEdition",
"dominion2ndEditionUpgrade",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Sentry",
"cardset_tags": [
"dominion2ndEdition",
"dominion2ndEditionUpgrade",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Poacher",
"cardset_tags": [
"dominion2ndEdition",
"dominion2ndEditionUpgrade",
],
"cost": "4",
"types": [
"Action",
],
}, {
"card_tag": "Merchant",
"cardset_tags": [
"dominion2ndEdition",
"dominion2ndEditionUpgrade",
],
"cost": "3",
"types": [
"Action",
],
}, {
"card_tag": "Bandit",
"cardset_tags": [
"dominion2ndEdition",
"dominion2ndEditionUpgrade",
],
"cost": "5",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Harbinger",
"cardset_tags": [
"dominion2ndEdition",
"dominion2ndEditionUpgrade",
],
"cost": "3",
"count": "10",
"types": [
"Action",
],
}, {
"card_tag": "Artisan",
"cardset_tags": [
"dominion2ndEdition",
"dominion2ndEditionUpgrade",
],
"cost": "6",
"types": [
"Action",
],
}, {
"card_tag": "Courtier",
"cardset_tags": [
"intrigue2ndEdition",
"intrigue2ndEditionUpgrade",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Diplomat",
"cardset_tags": [
"intrigue2ndEdition",
"intrigue2ndEditionUpgrade",
],
"cost": "4",
"types": [
"Action",
"Reaction",
],
}, {
"card_tag": "Lurker",
"cardset_tags": [
"intrigue2ndEdition",
"intrigue2ndEditionUpgrade",
],
"cost": "2",
"types": [
"Action",
],
}, {
"card_tag": "Mill",
"cardset_tags": [
"intrigue2ndEdition",
"intrigue2ndEditionUpgrade",
],
"cost": "4",
"types": [
"Action",
"Victory",
],
}, {
"card_tag": "Patrol",
"cardset_tags": [
"intrigue2ndEdition",
"intrigue2ndEditionUpgrade",
],
"cost": "5",
"types": [
"Action",
],
}, {
"card_tag": "Replace",
"cardset_tags": [
"intrigue2ndEdition",
"intrigue2ndEditionUpgrade",
],
"cost": "5",
"types": [
"Action",
"Attack",
],
}, {
"card_tag": "Secret Passage",
"cardset_tags": [
"intrigue2ndEdition",
"intrigue2ndEditionUpgrade",
],
"cost": "4",
"types": [
"Action",
],
} ]
{
"Artisan": {
"extra": "The card you gain comes from the Supply and is put into your hand.\nYou cannot use empty Coin &nbsp;to increase how expensive of a card you gain; it always costs from 0 Coins to 5 Coins.\n After gaining the card, you put a card from your hand onto your deck; that can be the card you just gained, or a different card.",
"name": "Artisan",
"description": "Gain a card to your hand costing up to 5 Coins. Put a card from your hand onto your deck."
},
"Bustling Village": {
"extra": "You can look through your discard pile even if you know there are no Settlers in it.",
"name": "Bustling Village",
"description": "+1 Card\n+3 Actions\nLook through your discard pile. You may reveal a Settlers from it and put it into your hand."
},
"Defiled Shrine": {
"extra": "Note that this triggers on gaining an Action, whether bought or otherwise gained, but only on buying Curse, not on gaining Curse other ways.\n<VP> tokens will go on Ruins (from Dominion: Dark Ages) when used, but not on Farmers' Market, Temple, or Wild Hunt (the three Action - Gathering cards).",
"name": "Defiled Shrine",
"description": "When you gain an Action, move 1<VP> from its pile to this. When you buy a Curse, take the <VP> from this.\n______________________\nSetup: Put 2<VP> on each non-Gathering Action Supply pile."
},
"Ranger": {
"extra": "At the start of the game, place your Journey token (the one with the boot) face up. When you play this, you get +1 Buy, and turn the token over. Then if it is face down, nothing more happens. If it is face up, you draw 5 cards. So, every other time you play a Ranger, you will draw 5 cards. It does not matter what turned over the Journey token; you could turn it face down with Giant, then face up with Ranger.",
"name": "Ranger",
"description": "+1 Buy\nTurn your Journey token over (it starts face up). If it's face up, +5 Cards."
},
"Training": {
"extra": "When you buy this, you move your + 1 Coin token to any Action Supply pile. This token gives you + 1 Coin whenever you play a card from that pile; see the Tokens section.",
"name": "Training",
"description": "Move your + 1 Coin token to an Action Supply pile (when you play a card from that pile, you first get + 1 Coin)."
},
"Death Cart": {
"extra": "When you play Death Cart, you get + 5 Coins, and either trash an Action card from your hand, or trash the Death Cart. If you have no Action card in your hand, you will have to trash the Death Cart, but you can trash the Death Cart whether or not you have an Action card in hand. A card with multiple types, one of which is Action, is an Action card. When you gain a Death Cart, either from buying it or from gaining it some other way, you also gain 2 Ruins. You just take the top 2, whatever they are. If there are not enough Ruins left, take as many as you can. The Ruins come from the Supply and are put into your discard pile. The other players get to see which ones you got. The player gaining Death Cart is the one who gains Ruins; if Possession (from Alchemy) is used to make another player buy Death Cart, the player actually gaining the Death Cart (the one who played Possession) gains the Ruins. If you use Trader (from Hinterlands) to take a Silver instead of a Death Cart, you do not gain any Ruins. It doesn't matter whose turn it is; if you use Ambassador (from Seaside) to give Death Carts to each other player, those players also gain Ruins. Passing cards with Masquerade (from Intrigue) does not count as gaining them.",
"name": "Death Cart",
"description": "+5 Coins\nYou may trash an Action card from your hand. If you don\u2019t, trash this.\n______________________\nWhen you gain this, gain 2 Ruins."
},
"Ghost Ship": {
"extra": "The other players choose which cards they put on their decks and in what order. This has no effect on another player who already has only 3 cards in hand. A player with no cards left in their deck does not shuffle; the cards put back become the only cards in their deck.",
"name": "Ghost Ship",
"description": "+2 Card, Each other player with 4 or more cards in hand puts cards from his hand on top of his deck until he has 3 cards in his hand."
},
"Adventurer": {
"extra": "If you have to shuffle in the middle, shuffle. Don't shuffle in the revealed cards as these cards do not go to the Discard pile until you have finished revealing cards. If you run out of cards after shuffling and still only have one Treasure, you get just that one Treasure.",
"name": "Adventurer",
"description": "Reveal cards from your deck until you reveal 2 Treasure cards. Put those Treasure cards in your hand and discard the other revealed cards."
},
"Bandit": {
"extra": "First you gain a Gold from the Supply, putting it into your discard pile.\n Then each other player, in turn order, reveals their top 2 cards, trashes one they choose that is a Treasure other than Copper (e.g. Silver or Gold), and discards the other revealed cards.\n A player who did not reveal a Treasure card other than Copper simply discards both cards.",
"name": "Bandit",
"description": "Gain a Gold. Each other player reveals the top 2 cards of their deck, trashes a revealed Treasure other than Copper, and discards the rest."
},
"Remake": {
"extra": "Trash a card from your hand, and gain a card costing exactly 1 coin more than it; then trash another card from your hand, and gain a card costing exactly 1 coin more than that card. If you have no cards in hand, you do not trash anything or gain anything; if you have only one card in hand, trash it and gain a card costing 1 coin more than it. Gained cards come from the Supply and are put into your discard pile. If there is no card at the exact cost needed, you do not gain a card for that trashed card. For example you could use Remake to trash an Estate, gaining a Silver, then trash a Copper, gaining nothing.",
"name": "Remake",
"description": "Do this twice: Trash a card from your hand then gain a card costing exactly 1 more than the trashed card."
},
"Ferry": {
"extra": "When you buy this, you move your - 2 Coin cost token to any Action Supply pile. This token makes cards from that pile cost 2 Coins less, but not less than 0 Coins, on your turns; see the Tokens section.",
"name": "Ferry",
"description": "Move your - 2 Coin cost token to an Action Supply pile (cards from that pile cost 2 Coin less on your turns, but not less than 0 Coin."
},
"Tomb": {
"extra": "This works even when it is not your turn, such as when you trash a card to Swindler (from Dominion: Intrigue), and works when told to trash a card that is not yours, such as with Salt the Earth.",
"name": "Tomb",
"description": "When you trash a card, +1<VP>."
},
"Ruins": {
"extra": "See Additional Rules for Dark Ages and Preparation. Abandoned Mine: When you play this, you just get +1 Coin. Ruined Library: When you play this, you draw a card. Ruined Market: When you play this, you just get +1 Buy. Ruined Village: When you play this, you just get +1 Action. Survivors: You either discard both cards, or put both cards back on top; you cannot just discard one card.",
"name": "Ruins",
"description": "Abandoned Mine: +1 Coin\nRuined Library: +1 Card\nRuined Market: +1 Buy\nRuined Village: +1 Action\nSurvivors: Look at the top 2 cards of your deck. Discard them or put them back in any order."
},
"Triumph": {
"extra": "You get +1<VP> per card you have gained, including the Estate, and any other cards bought or gained other ways; you do not get <VP> for Events bought.\nOnce the Estate pile is empty, this does nothing.",
"name": "Triumph",
"description": "Gain an Estate.\nIf you did, +1<VP> per card you've gained this turn."
},
"Copper": {
"extra": "60 cards per game.",
"name": "Copper",
"description": "Worth 1 Coin."
},
"Hunting Party": {
"extra": "First you draw a card and get +1 Action. Then you reveal your hand, and reveal cards from your deck until revealing one that is not a duplicate of one in your hand. A card is not a duplicate of one in your hand if it does not have the same name as any cards in your hand. If you run out of cards while revealing cards, shuffle your discard pile (but not the revealed cards) and keep revealing cards. If you still do not find one, just discard all of the cards revealed from your deck. If you do find a card not matching any cards in your hand, put it into your hand and discard the other cards revealed from your deck.",
"name": "Hunting Party",
"description": "+1 Card\n+1 Action\nReveal your hand. Reveal cards from your deck until you reveal a card that isn\u2019t in a duplicate of one in your hand and discard the rest."
},
"Tax": {
"extra": "Every Supply pile starts with 1 Debt, including Kingdom cards and basic cards like Silver.\nThe Event itself, when bought, adds 2 Debt to a single pile, whether or not that pile has any Debt on it already.\nThe Debt is taken by the next player to buy a card from that pile; gaining a card without buying it leaves the Debt on the pile.",
"name": "Tax",
"description": "Add 2 Debt to a Supply pile.\n______________________\nSetup: Add 1 Debt to each Supply pile. When a player buys a card, they take the Debt from its pile."
},
"Duchess": {
"extra": "When you play this, you get +2 coins, and each player, including you, looks at the top card of his own deck and either discards it or puts it back on top, his choice. Any player with no cards in his deck shuffles his discard pile first; any player who still has no cards to look at does not look at one. When a player gains a Duchy in a game with Duchess in the Supply, that player may also gain a Duchess from the Supply. This works whether the player gained a Duchy due to buying one, or gained a Duchy some other way. Duchess does not interact in any special way with the promotional card Black Market.",
"name": "Duchess",
"description": "+2 Coins\nEach player (including you) looks at the top card of his deck, and discards it or puts it back.\n______________________\nIn games using this, when you gain a Duchy, you may gain a Duchess."
},
"Margrave": {
"extra": "You draw 3 cards and get +1 Buy. Each other player draws a card, then discards down to 3 cards in hand. Drawing a card is not optional for them. A player who only has 3 cards or fewer after drawing does not discard.",
"name": "Margrave",
"description": "+3 Cards\n+1 Buy\nEach other player draws a card, then discards down to 3 cards in hand."
},
"Farmers' Market": {
"extra": "The first time this is played, it produces +1 Coin (and +1 Buy), the next time +2 Coin, then +3 Coin, then +4 Coin, then the next time the player takes the 4 <VP> (and gets no + Coin), then the next time it is back to +1 Coin. This still functions if the Farmers' Market pile is empty.",
"name": "Farmers' Market",
"description": "+1 Buy\nIf there are 4 <VP> or more on the Farmers' Market Supply pile, take them and trash this. Otherwise, add 1 <VP> to the pile and then +1 Coin per 1 <VP> on the pile."
},
"Courtier": {
"extra": "First reveal a card from your hand, then count the types.<br></br>The types are the words on the bottom line \u2013 including Action, Attack, Curse, Reaction, Treasure, and Victory (with more in expansions).<br></br><br></br>Then choose one different thing per type the card had; if you revealed a card with two types, you pick two things.<br></br><br></br>For example you could reveal a Copper and choose \"gain a Gold,\" or reveal a Mill and choose \"+1 Action\" and \"+3 Coin\".<br></br><br></br>If you gain a Gold, put the Gold into your discard pile.",
"name": "Courtier",
"description": "Reveal a card from your hand. For each type it has (Action, Attack, etc.), choose one: +1 Action; or +1 Buy; or +3 Coin; or gain a Gold. The choices must be different."
},
"Festival": {
"extra": "If you are playing multiple Festivals, keep a careful count of your Actions. Say how many you have left out loud; this trick works every time (i.e. \"I'm playing the Festival and now have two Actions remaining. I play a Market and have two Actions remaining. I play another Festival and now have three actions remaining...).",
"name": "Festival",
"description": "+2 Actions, +1 Buy, +2 Coins."
},
"Sage": {
"extra": "If you run out of cards while revealing cards, shuffle your discard pile (not including the revealed cards) and continue. If you run out of cards to reveal and have no cards in your discard pile, stop there; discard everything revealed, and you do not get a card. If you find a card costing 3 Coins or more, put that one into your hand and discard the rest. For example you might reveal Copper, then Copper, then Curse, then Province; Province costs 8 Coins, so you would stop there, put Province in your hand, and discard the two Coppers and the Curse.",
"name": "Sage",
"description": "+1 Action\nReveal cards from the top of your deck until you reveal one costing 3 Coins or more. Put that card into your hand and discard the rest."
},
"Champion": {
"extra": "Champion stays in play for the rest of the game once played. For the rest of the game, it provides you with an additional +1 Action each time you play an Action, which means you will always be able to play all of your Actions; and it protects you from all further Attacks played (whether you want the protection or not). Champion only protects you from Attacks played after it; for example it does not stop a previously played Swamp Hag from giving you Curses that turn.",
"name": "Champion",
"description": "+1 Action\nFor the rest of the game, when another player plays an Attack, it doesn't affect you, and when you play an Action, +1 Action.\n(This stays in play. This is not in the Supply.)"
},
"Masquerade": {
"extra": "First you draw 2 cards. Next, each player (all at the same time) chooses a card from his hand and places it face down on the table between him and the player to his left. The player to the left then puts that card into his hand. Cards are passed simultaneously, so you may not look at the card you are receiving until you have chosen a card to pass. Finally, you may trash a card from your hand. Only the player who played Masquerade may trash a card. This is not an Attack and cannot be responded to with Moat or Secret Chamber.",
"name": "Masquerade",
"description": "+2 Card, Each player passes a card in their hand to the player on their left. You may trash a card from your hand."
},
"Plunder": {
"extra": "This gives you a <VP> token every time you play it.",
"name": "Plunder",
"description": "+2 Coin\n +1<VP>"
},
"Masterpiece": {
"extra": "This is a Treasure worth 1 Coin, like Copper. When you buy it, you gain a Silver for each extra 1 Coin you pay over the cost. For example, if you buy a Masterpiece for 6 Coins, you gain three Silvers.",
"name": "Masterpiece",
"description": "Worth 1 Coin.\n______________________\nWhen you buy this, you may overpay for it. If you do, gain a Silver per 1 Coin you overpaid."
},
"Transmogrify": {
"extra": "When you play this, you get +1 Action and put it on your Tavern mat. It stays on your mat until you call it, at the start of one of your turns. If multiple things can happen at the start of your turn, you can do them in any order. When you call Transmogrify, it moves from the mat into play, and you trash a card from your hand, then gain a card costing up to 1 Coin more than the trashed card. The gained card comes from the Supply and is put into your hand; if you had no cards to trash, you do not gain one. Transmogrify is discarded that turn with your other cards in play. You may trash a card to gain a card costing 1 Coin more, or the same amount, or less; you may trash a card to gain a copy of the same card.",
"name": "Transmogrify",
"description": "+1 Action\nPut this on your Tavern mat.\n______________________\nAt the start of your turn, you may call this, to trash a card from your hand, gain a card costing up to 1 Coin more than it, and put that card into your hand."
},
"Arena": {
"extra": "With Villa it is possible for your Buy phase to start twice or more in a turn; you can make use of Arena each time.",
"name": "Arena",
"description": "At the start of your Buy phase, you may discard an Action card. If you do, take 2<VP> from here.\n______________________\nSetup: Put 6<VP> here per player."
},
"Horn of Plenty": {
"extra": "This is a Treasure worth 0 coins. You play it in your Buy phase, like other Treasures. It does not produce any coins to spend. However, when you play it, you gain a card costing up to per differently named card you have in play. This includes itself, other played Treasures, played Actions, and any Duration cards (from Dominion: Seaside) played on your previous turn. It only counts cards currently in play, not ones that were in play but left; for example if you played a Feast (from Dominion) this turn, you will have trashed it, so it will not count for Horn of Plenty. The card you gain must come from the Supply, and is put into your discard pile. If it is a Victory card, trash Horn of Plenty. Cards with multiple types, one of which is Victory (such as Nobles from Dominion: Intrigue) are Victory cards. You do not have to play Horn of Plenty in your Buy phase, and you choose the order that you play Treasures. You do not trash Horn of Plenty if you gain a Victory card some other way while it's in play (such as by buying one).",
"name": "Horn of Plenty",
"description": "Worth 0 Coins\nWhen you play this, gain a card costing up to 1 Coin per differently named card you have in play, counting this. If it\u2019s a Victory card, trash this."
},
"Borrow": {
"extra": "You can only buy this once per turn. When you do, if your -1 Card token is not on your deck, you put it on your deck and get + 1 Coin. The -1 Card token will cause you to draw one less card the next time you draw cards; see the Tokens section.",
"name": "Borrow",
"description": "+1 Buy\nOnce per turn: If your -1 Card token isn't on your deck, put it there and +1 Coin."
},
"Herald": {
"extra": "When you play this, first draw a card and get +1 Action, then reveal the top card of your deck. If it is an Action card, play it; this is not optional. Playing the Action card does not \"use up\" one of your Action plays for the turn. Cards with multiple types, one of which is Action (such as Great Hall from Dominion: Intrigue), are Action cards. If Herald plays a Duration card (from Dominion: Seaside), the Herald is still discarded normally at end of turn, as it is not needed to track anything. When you buy this, you put one card from your discard pile on top of your deck for each extra 1 Coin you pay over the cost. For example, if you buy Herald for 6 Coins, you will put two cards from your discard pile on top of your deck. This card lets you look through your discard pile; normally you cannot. You cannot look through your discard pile first to see how much you want to overpay, and once you overpay you must put the appropriate number of cards on top of your deck if possible. If you overpay enough to put more cards on your deck than there are cards in your discard pile, you just put all of your discard pile onto your deck. You may not look through your discard pile if you buy Herald without overpaying for it. When you put multiple cards on your deck due to overpaying for a Herald, put them on your deck in any order.",
"name": "Herald",
"description": "+1 Card\n+1 Action\nReveal the top card of your deck. If it is an Action, play it.\n______________________\nWhen you buy this, you may overpay for it. For each 1 Coin you overpaid, look through your discard pile and put a card from it on top of your deck."
},
"Swindler": {
"extra": "A player with no cards left in his Deck shuffles first; a player who still has no cards does not trash a card or gain a card. If the order matters (such as when piles are running low), resolve Swindler in turn order starting with the player to your left. Gained cards go to discard piles. If a player trashed a 0-cost card such as Copper, you may choose to give him Curse (if there are any left). You can give a player another copy of the same card he trashed. The gained cards have to be ones from the Supply, and you have to pick a card that's left if you can (you cannot pick an empty pile). If there are no cards in the Supply with the same cost as a given player's trashed card, no card is gained by that player. A player who Moats this does not reveal a card from his deck, and so neither trashes a card nor gains a card.",
"name": "Swindler",
"description": "+2 Coins, Each other player trashes the top card of his deck and gains a card with the same cost that you choose."
},
"Poacher": {
"extra": "You draw your one card before discarding.\n If there are no empty piles, you do not discard.\n If there is one empty pile, you discard one card; if there are two empty piles, you discard two cards, and so on.\n This includes all Supply piles, including Curses, Coppers, Poacher itself, etc.\n If you do not have enough cards to discard, just discard the rest of your hand.\n\n Non-Supply piles, such as Spoils, do not matter to Poacher.",
"name": "Poacher",
"description": "+1 Card\n+1 Action\n+1 Coin\nDiscard a card per empty Supply pile."
},
"Settlers": {
"extra": "You can look through your discard pile even if you know there is no Copper in it.",
"name": "Settlers",
"description": "+1 Card\n +1 Action\nLook through your discard pile. You may reveal a Copper from it and put it into your hand."
},
"Necropolis": {
"extra": "This is a Shelter; see Preparation. It is never in the Supply. It is an Action card; when you play it, you get +2 Actions.",
"name": "Necropolis",
"description": "+2 Actions"
},
"Palace": {
"extra": "For example, if you had 7 Coppers, 5 Silvers, and 2 Golds, that would be two sets of Copper - Silver - Gold, for 6<VP> total.",
"name": "Palace",
"description": "When scoring, 3<VP> per set you have of Copper - Silver - Gold."
},
"Montain Pass": {
"extra": "This only happens the first time a player gains a Province; it does not matter if the Province was bought or not, or if Provinces have left the pile earlier due to Salt the Earth.\nThis happens between turns; Possession (from Dominion: Alchemy) will not be in effect.\nThe player to the left of the player who got the Province bids first, then the player to their left and so on, ending with the player who got the Province.\nEach bid can be a pass, or a higher bid than the previous bid.\nBids are in amounts of Debt, from 1 Debt to 40 Debt; a bid of 40 Debt cannot be beaten.\nThe player who bid the highest (if any) gets +8<VP> and takes the amount of Debt of their bid.",
"name": "Montain Pass",
"description": "When you are the first player to gain a Province, after that turn, each player bids once, up to 40 Debt, ending with you. High bidder gets +8<VP> and takes the Debt they bid."
},
"Wild Hunt": {
"extra": "If the Estate pile is empty, you can choose that option but will not get the <VP> tokens. Wild Hunt still functions normally if the Wild Hunt pile is empty.",
"name": "Wild Hunt",
"description": "Choose one: +3 Cards and add 1<VP> to the Wild Hunt Supply pile; or gain an Estate, and if you do, take the <VP> from the pile."
},
"Replace": {
"extra": "Like Remodel, you first trash a card from your hand, then gain a card from the Supply costing up to 2 Coin more than the trashed card, putting the gained card into your discard pile.<br></br><br></br>Replace gives you an additional bonus based on the types of the gained card; if it is an Action or Treasure you move it to the top of your deck, and if it is a Victory card the other players each gain a Curse.<br></br><br></br>It is possible to get both bonuses; if you gain Harem, Mill, or Nobles with Replace, it both goes on your deck and causes the other players to each gain a Curse.",
"name": "Replace",
"description": "Trash a card from your hand. Gain a card costing up to 2 Coins more than it. If the gained card is an Action or Treasure, put it onto your deck; if it's a Victory card, each other player gains a Curse."
},
"Secret Passage": {
"extra": "First draw 2 cards and get +1 Action; then put a card from your hand anywhere in your deck.<br></br><br></br>The card can be one you just drew or any other card from your hand.<br></br><br></br>It can go on top of your deck, on the bottom, or anywhere in-between; you can count out a specific place to put it, e.g. four cards down.<br></br><br></br>If there are no cards left in your deck, the card put back becomes the only card in your deck.<br></br><br></br>Where you put the card is public knowledge.<br></br><br></br>You don't have to put the card into a specific spot, you can just shove it into your deck if you want.",
"name": "Secret Passage",
"description": "+2 Cards\n+1 Action\n\nTake a card from your hand and put it anywhere in your deck."
},
"Doctor": {
"extra": "When you play this, you name a card, reveal the top three cards of your deck, trash each of those cards that has that name, and put the other cards back on your deck in any order. You do not have to name a card being used this game. If there are fewer than three cards left in your deck, reveal the remaining cards, and shuffle your discard pile (which does not include those cards) to get the remainder needed to reveal. If there are still not enough cards, just reveal as many as you can. When you buy this, for each extra 1 Coin you pay over the cost, you look at the top card of your deck, and either trash it, discard it, or put it back on top. If there are no cards left in your deck, shuffle your discard pile into your deck (including any cards already discarded to this overpay ability this turn), and if there still are no cards in it, you do not look at one. If you overpay more than 1 Coin, you may do different things for each card you look at, and you will look at the same card again if you put it back on top. For example if you bought Doctor for 7 Coins, you would look at the top card four times; you might end up first trashing a Copper, then discarding a Province, then putting a Silver back on top, then putting that Silver back on top again.",
"name": "Doctor",
"description": "Name a card. Reveal the top 3 cards of your deck. Trash the matches. Put the rest back on top in any order.\n______________________\nWhen you buy this, you may overpay for it. For each 1 Coin you overpaid, look at the top card of your deck; trash it, discard it, or put it back."
},
"Overgrown Estate": {
"extra": "This is a Shelter; see Preparation. It is never in the Supply. It is a Victory card despite being worth 0 Victory. If this is trashed, you draw a card, right then, even in the middle of resolving another card. For example, if you use Altar to trash Overgrown Estate, you first draw a card, then gain a card costing up to 5 Coins. This card does not give you a way to trash itself, it merely does something if you manage to trash it.",
"name": "Overgrown Estate",
"description": "0 <VP>\n______________________\nWhen you trash this, +1 Card."
},
"Smugglers": {
"extra": "This looks at the most recent turn of the player to your right, even if you've taken multiple turns in a row. If that player gained no cards, or nothing costing 6 or less, then Smugglers does nothing. If that player gained multiple cards costing 6 or less, you choose which one to gain a copy of. Gained cards must come from the supply. They can be any card gained, whether bought or otherwise gained; you can even gain a card that the previous player gained with Smugglers. If the previous player gained a card via Black Market, you will not be able to gain a copy of it (no copies of it in the supply.) This is not an Attack; Lighthouse and Moat can't stop it. You cannot gain cards with Potion in the cost with Smugglers.",
"name": "Smugglers",
"description": "Gain a copy of a card costing up to 6 Coins that the player to your right gained on his last turn."
},
"Fountain": {
"extra": "You either get 15<VP> or 0<VP>; there is no extra bonus for having 20 Coppers.",
"name": "Fountain",
"description": "When scoring, 15<VP> if you have at least 10 Coppers."
},
"Chariot Race": {
"extra": "You and the player to your left reveal your top cards; yours goes into your hand, theirs goes back on their deck. If your card cost more you get +1 Coin and +1<VP>; you can put the token on the Chariot Race to remind you that it made +1 Coin this turn. If it is a tie, your card did not cost more. With Debt, your card costs more only if both Coin and Debt amounts are larger, or one is larger and the other the same. For example Fortune (8 Coins 8 Debt) costs more than Overlord (5 Debt), but Overlord does not cost more than Silver, and Silver does not cost more than Overlord. If either player has no card to reveal, your card does not cost more.",
"name": "Chariot Race",
"description": "+1 Action\nReveal the top card of your deck and put it into your hand. The player to your left reveals the top card of their deck. If your card costs more, +1 Coin and +1<VP>."
},
"Contraband": {
"extra": "This is a Treasure worth 3 coins, like Gold. When you play it, you get +1 Buy, the player to your left names a card, and you cannot buy the named card this turn. This does not stop you from gaining the card in ways other than buying it (such as via Hoard). He does not have to name a card in the Supply. If you play multiple Contrabands in one turn, the player to your left names a card each time; if he names different cards, you cannot buy any of the named cards this turn. You can play Treasures in any order, and you resolve this ability right when you play it, before playing any further Treasure cards. Note that once you buy a card in the Buy phase, you cannot play more Treasures. The number of cards left in a player's hand is public information; you can ask whenever you want to know it (for example, when that player plays Contraband).",
"name": "Contraband",
"description": "Worth 3 Coins.\n+1 Buy\nWhen you play this, the player to your left names a card. You can't buy that card this turn."
},
"Royal Blacksmith": {
"extra": "You discard both Coppers that were in your hand already, and Coppers drawn in the +5 Cards.",
"name": "Royal Blacksmith",
"description": "+5 Cards\nReveal your hand; discard the Coppers."
},
"Dominate": {
"extra": "This does nothing once the Province pile is empty.",
"name": "Dominate",
"description": "Gain a Province. If you do, +9<VP>."
},
"Hermit": {
"extra": "When you play this, look through your discard pile, and then you may choose to trash a card that is not a Treasure, from either your hand or your discard pile. You do not have to trash a card and cannot trash Treasures. A card with multiple types, one of which is Treasure (such as Harem from Intrigue), is a Treasure. After trashing or not, you gain a card costing up to 3 Coins. The card you gain comes from the Supply and is put into your discard pile. Gaining a card is mandatory if it is possible. Then, when you discard Hermit from play - normally, in Clean-up, after playing it in your Action phase - if you did not buy any cards this turn, you trash Hermit and gain a Madman. The Madman comes from the Madman pile, which is not in the Supply, and is put into your discard pile. It does not matter whether or not you gained cards other ways, only whether or not you bought a card. If there are no Madman cards left, you do not gain one. If Hermit is not discarded from play during Clean-up - for example, if you put it on your deck with Scheme (from Hinterlands) - then the ability that trashes it will not trigger.",
"name": "Hermit",
"description": "Look through your discard pile. You may trash a card from your discard pile or hand that is not a Treasure. Gain a card costing up to 3 Coins.\nWhen you discard this from play, if you did not buy any cards this turn, trash this and gain a Madman from the Madman pile."
},
"Explorer": {
"extra": "You don't have to reveal a Province if you have one. If you do reveal one you gain a Gold, otherwise you gain a Silver. The gained card comes from the supply and is put into your hard; it can be spent the same turn.",
"name": "Explorer",
"description": "You may reveal a Province card from your hand. If you do, gain a Gold card, putting it into your hand. Otherwise, gain a Silver card, putting it into your hand."
},
"Spy": {
"extra": "Spy causes all players, including the one who played it, to reveal the top card of their Deck. Note that you draw your card for playing Spy before any cards are revealed. Anyone who does not have any cards left in their Deck shuffles in order to have something to reveal. Anyone who still has no cards to reveal doesn't reveal one. If players care about the order in which things happen for this, you do yourself first, then each other player in turn order. Revealed cards that aren't discarded are returned to the top of their players' Decks.",
"name": "Spy",
"description": "+1 Card, +1 Action, Each player (including you) reveals the top card of his deck and either discards it or puts it back, your choice."
},
"Labyrinth": {
"extra": "This can only happen once per turn per player.\nFor example if you gain 4 cards in the same turn, only the second one will come with 2<VP>.",
"name": "Labyrinth",
"description": "When you gain a 2nd card in one of your turns, take 2<VP> from here.\n______________________\nSetup: Put 6<VP> here per player."
},
"Altar": {
"extra": "You trash a card from your hand if you can, and then gain a card whether or not you trashed one. The gained card comes from the Supply and is put into your discard pile.",
"name": "Altar",
"description": "Trash a card from your hand. Gain a card costing up to 5 Coins."
},
"Wedding": {
"extra": "You get the <VP> even if there are no Golds left.",
"name": "Wedding",
"description": "+1<VP>\nGain a Gold."
},
"Count": {
"extra": "This card gives you two separate choices: first you either discard 2 cards, put a card from your hand on top of your deck, or gain a Copper; after resolving that, you either get +3 Coins, trash your hand, or gain a Duchy. For example, you might choose to discard 2 cards, then gain a Duchy. Gained cards come from the Supply and are put into your discard pile. You can choose an option even if you cannot do it. If you trash multiple cards that do something when trashed at once, trash them all, then choose an order to resolve the things that happen due to them being trashed.",
"name": "Count",
"description": "Choose one: Discard 2 cards; or put a card from your hand on top of your deck; or gain a Copper.\nChoose one: +3 Coins; or trash your hand; or gain a Duchy."
},
"Ritual": {
"extra": "This does nothing once the Curse pile is empty.\nThis only gives you +1<VP> per 1 Coin the trashed card cost; it does not give anything for Debt or Potion in costs.",
"name": "Ritual",
"description": "Gain a Curse. If you do, trash a card from your hand. +1<VP> per 1 Coin it cost."
},
"Feast": {
"extra": "The gained card goes into your Discard pile. It has to be a card from the Supply. You cannot use coins from Treasures or previous Actions (like the Market) to increase the cost of the card that you gain. If you use Throne Room on Feast, you will gain two cards, even though you can only trash Feast once. Gaining the card isn't contingent on trashing Feast; they're just two things that the card tries to make you do.",
"name": "Feast",
"description": "Trash this card. Gain a card costing up to 5 Coins."
},
"Basilica": {
"extra": "This happens each time you buy a card.\nFor example with 4 Coin and 3 Buys, you could buy Copper, then Copper, then Silver, taking 2<VP>, then 2<VP>, then none.",
"name": "Basilica",
"description": "When you buy a card, if you have 2 Coins or more left, take 2<VP> from here.\n______________________\nSetup: Put 6<VP> here per player."
},
"Sea Hag": {
"extra": "A player with no cards left in his deck shuffles first in order to get a card to discard. If he still has no cards, he doesn't discard one. A player discarding his last card to this has the gained Curse become the only card in his deck. If there aren't enough Curses left to go around, deal them out in turn order, starting with the player to the left of the player who played Sea Hag.",
"name": "Sea Hag",
"description": "Each other player discards the top card of his deck, then gains a Curse card, putting it on top of his deck."
},
"Enchantress": {
"extra": "Players revealing a card like Moat when this is played have to do it right then, not later, even though the attack will not hurt them until their turn. The first Action each other player plays, just on their next turn, will give them +1 Card +1 Action instead of what it would have normally done. This does not affect abilities below a dividing line; they still function. For example a player playing Sacrifice would get +1 Card +1 Action and not do anything Sacrifice normally does; a player playing Groundskeeper would get +1 Card +1 Action and would still get <VP> for gaining Victory cards. It can be helpful to turn the affected card sideways, to remember that it did not do what it normally did. Enchantress does not affect card abilities from cards played on previous turns; for example if an opponent plays Enchantress and you have an Archive out from a previous turn, on your turn you will first get a card from your Archive as normal, and then the first Action card actually played on that turn will be affected by Enchantress. If Enchantress affects a Crown played in a Buy phase, its player gets +1 Card +1 Action, but has no way to use the +1 Action, since it is their Buy phase (but it might matter e.g. if the player buys Villa).",
"name": "Enchantress",
"description": "Until your next turn, the first time each other play plays an Action card on their turn, they get +1 Card and +1 Action instead of following its instructions.\n\nAt the start of your next turn, +2 Cards."
},
"Emporium": {
"extra": "This counts Action cards in play, including Action cards played this turn, Duration cards in play from previous turns, and Reserve cards (from Dominion: Adventures) called into play this turn.",
"name": "Emporium",
"description": "+1 Card\n +1 Action\n +1 Coin\n______________________\nWhen you gain this, if you have at least 5 Action cards in play, +2 Victory Tokens."
},
"Duke": {
"extra": "This does nothing until the end of the game, at which time it's worth 1 VP per Duchy you have. This counts all of your cards - your Discard pile and hand are part of your Deck at that point. During set-up, place 12 Dukes in the Supply for a 3- or 4- [or 5- or 6-] player game and 8 in the Supply for a 2-player game.",
"name": "Duke",
"description": "Worth 1 <VP> per Duchy you have."
},
"Philosopher's Stone": {
"extra": "This is a Treasure card. It is a Kingdom card; it will only be in games where it is randomly dealt out as one of the 10 Kingdom cards, or otherwise selected to be one of them. It is played during your Buy phase, like other Treasure cards. When you play it, count the number of cards in your deck and discard pile combined, divide by 5, and round down. That is how many coins this produces for you. Once played, the amount of coins you get does not change even if the number of cards changes later in the turn. The next time you play it, count again. If you play multiple copies, obviously the number will be the same for all of them. It does not matter what order your discard pile is in, but the order your deck is in matters. Do not change that order while counting! You will get to look through your discard pile as you count it. You only get to count your deck and discard pile, not your hand or cards in play or set aside cards. You cannot play more Treasures after buying something in your buy phrase; so for example you cannot buy a card, then play Philosopher's Stone, then buy another card.",
"name": "Philosopher's Stone",
"description": "When you play this, count your deck and discard pile.\nWorth 1 Coin per 5 cards total between them (rounded down)."
},
"Wine Merchant": {
"extra": "When you play this, you get +1 Buy and + 4 Coins, and put it on your Tavern mat. It stays on your mat until the end of one of your Buy phases in which you have 2 Coins or more that you didn't spend. At that point you can discard Wine Merchant from your mat. If you have multiple Wine Merchants on your mat, you don't need 2 Coins per Wine Merchant, just 2 Coins total.",
"name": "Wine Merchant",
"description": "+1 Buy\n+4 Coins\nPut this on your Tavern mat.\n______________________\nAt the end of your Buy phase, if you have at least 2 Coins unspent, you may discard this from your Tavern mat."
},
"Taxman": {
"extra": "You may trash a Treasure card from your hand. This is optional. Cards with multiple types, one of which is Treasure (like Harem from Dominion: Intrigue), are Treasures. If you do trash a Treasure, each other player with at least five cards in hand discards a copy of it from her hand if she can, or reveals a hand with no copies of it, and you gain a Treasure costing up to 3 Coins more than the trashed Treasure, putting it on top of your deck. If there are no cards in your deck, it becomes the only card in your deck. You do not have to gain a more expensive Treasure; you may gain a Treasure with the same cost, or a cheaper Treasure. You have to gain a card if you trashed one though, if possible. The gained Treasure comes from the Supply.",
"name": "Taxman",
"description": "You may trash a Treasure from your hand. Each other player with 5 or more cards in hand discards a copy of it (or reveals a hand without it). Gain a Treasure card costing up to 3 Coins more than the trashed card, putting it on top of your deck."
},
"Crown": {
"extra": "If you play this in your Action phase, you play an Action card from your hand, then play the same card again; this does not use up any extra Actions you have. If you play this in your Buy phase, you play a Treasure from your hand, then play it again; this does not use up any Actions at all. Crown can be used to play another Crown in either your Action or Buy phase, causing you to either play two more Actions twice each, or two more Treasures twice each. If you play Crown in your Action phase via something that lets you play Treasures (like Storyteller from Dominion: Adventures), Crown will still play an Action card twice.",
"name": "Crown",
"description": "If it's your Action phase, you may play an Action from your hand twice. If it's your Buy phase, you may play a Treasure from your hand twice."
},
"Library": {
"extra": "If you have to shuffle in the middle, the set-aside cards are not shuffled into the new Deck. They will be discarded when you have finished drawing cards. If you run out of cards even after shuffling, you just get however many there were. You are not obligated to set aside Actions - you just have the option to do so. If you have 7 or more cards in hand after you play the Library, you don't draw any cards.",
"name": "Library",
"description": "Draw until you have 7 cards in hand. You may set aside any Action cards drawn this way, as you draw them; discard the set aside cards after you finish drawing."
},
"Hamlet": {
"extra": "First draw a card, and get +1 Action. Then you may either discard one card to get another +1 Action; or you may discard one card to get +1 Buy; or you may discard two cards and get both +1 Action and +1 Buy; or you may discard no cards at all. You only get the extra +1 Action or +1 Buy if you actually discarded a card for it. You cannot discard multiple cards to get multiple +Actions or multiple +Buys.",
"name": "Hamlet",
"description": "+1 Card\n+1 Action\nYou may discard a card; If you do +1 Action.\nYou may discard a card; If you do +1 Buy"
},
"Inn": {
"extra": "When you play this, you draw 2 cards, get +2 Actions, then discard 2 cards. The cards you discard can be ones that were in your hand and/or ones you just drew. You discard cards if able, even if you were unable to draw 2 cards. When you gain this, you look through your discard pile (something normally not allowed) and shuffle any number of Action cards from it into your deck (leaving the rest of your discard pile in your discard pile). You do not have to shuffle any Action cards into your deck. You can shuffle the Inn you just gained into your deck; it is an Action card in your discard pile. Cards with two types, one of which is Action, are Action cards. You must reveal the Action cards that you choose to shuffle into your deck. It does not matter what order you leave your discard pile in afterwards. This ability functions if you gain Inn due to buying it, or gain Inn some other way.",
"name": "Inn",
"description": "+2 Cards\n+2 Actions\nDiscard 2 cards.\n______________________\nWhen you gain this, look through your discard pile (including this), reveal any number of Action cards from it, and shuffle them into your deck."
},
"Archive": {
"extra": "You look at three cards, and get one now, one next turn, and one the turn after that. Put the set-aside cards under Archive. If you play two Archives, they get separate sets of cards. If you Throne Room an Archive, keep the sets of cards separate; you get one from each each turn. If there are fewer than three cards, just set aside what you can, and Archive will run out of cards faster and still be discarded the turn it has no cards left.",
"name": "Archive",
"description": "+1 Action\nSet aside the top 3 cards of your deck face down (you may look at them). Now and at the start of your next two turns, put one into your hand."
},
"Dungeon": {
"extra": "When you play this, you get +1 Action, draw 2 cards, and discard 2 cards; then at the start of your next turn, you again draw 2 cards and discard 2 cards.",
"name": "Dungeon",
"description": "+1 Action\nNow and at the start of your next turn: +2 Cards then discard 2 cards."
},
"Stables": {
"extra": "You may discard a Treasure card from your hand. This is optional. If you did discard one, you get +3 Cards and +1 Action. You draw after discarding, so if you have to shuffle to get the 3 cards, you will end up shuffling in the card you discarded.",
"name": "Stables",
"description": "You may discard a Treasure. If you do, +3 Cards and +1 Action."
},
"Catacombs": {
"extra": "When you play this, you look at the top 3 cards of your deck, and either put all 3 into your hand, or discard all 3 and draw the next 3 cards. If you discard them and have to shuffle to draw 3 cards, you will shuffle in the cards you discarded and may end up drawing some of them. When you trash Catacombs, you gain a card costing less than it. This happens whether Catacombs is trashed on your turn or someone else's, and no matter who has the card that trashed it. The gained card comes from the Supply and is put into your discard pile.",
"name": "Catacombs",
"description": "Look at the top 3 cards of your deck.\nChoose one: Put them into your hand;\nor discard them and +3 Cards.\n______________________\nWhen you trash this, gain a cheaper card."
},
"Scheme": {
"extra": "When you play this, you draw a card, get +1 Action, and set up an effect to happen later in the turn, at the start of Clean- up. At that time, you may optionally choose an Action card you have in play. If you discard that Action card from play this turn, as you normally do, you will put it on top of your deck. This happens before you draw cards for next turn. The Action card you choose can be Scheme itself, or any other Action card you have in play, which might have been played before or after you played Scheme. If the Action card is not discarded during Clean- up, for example due to being a Duration card from Dominion: Seaside that was played this turn, then it does not get put on top of your deck.",
"name": "Scheme",
"description": "+1 Card\n+1 Action\nAt the start of Clean-up this turn, you may choose an Action card you have in play. If you discard it from play this turn, put it on your deck."
},
"Merchant": {
"extra": "When you play Merchant, you draw a card and get +1 Action.\n If you end up playing a Silver later in the turn, it comes with 1 Coin.\n If you play more than one Merchant, each gives you 1 Coin when you play that first Silver; but if you play more than one Silver, you only get the 1 Coin for the first Silver.\n\n If you manage to play a Merchant after playing a Silver, the Merchant gives you no bonus (for the previous Silver or for any Silvers you might play later in the turn).\n Playing Throne Room on Merchant will give you 2 Coin when you play your first Silver.",
"name": "Merchant",
"description": "+1 Card\n+1 Action\nThe first time you play a Silver this turn, +1 Coin."
},
"Ratcatcher": {
"extra": "When you play this, you get +1 Card and +1 Action, and put it on your Tavern mat. It stays on your mat until you call it at the start of one of your turns. If multiple things can happen at the start of your turn, you can do them in any order. When you call Ratcatcher, you move it from the mat into play, and you trash a card from your hand. Ratcatcher is discarded that turn with your other cards in play.",
"name": "Ratcatcher",
"description": "+1 Card\n+1 Action\nPut this on your Tavern mat.\n______________________\nAt the start of your turn, you may call this, to trash a card from your hand."
},
"Silk Road": {
"extra": "This is a Victory card, not an Action card. It does nothing until the end of the game, when it is worth 1 victory point for every four Victory cards in your Deck (counting all of your cards - your Discard pile and hand are part of your Deck at that point). Silk Roads count themselves. Round down; if you have 11 Victory cards, Silk Road is worth 2 victory points. During set-up, put all 12 Silk Roads in the Supply for a game with 3 or more players, but only 8 in the Supply for a 2-player game. Cards with multiple types, one of which is Victory, are Victory cards and so are counted by Silk Road.",
"name": "Silk Road",
"description": "Worth 1 <VP> for every 4 Victory cards in your deck (round down)."
},
"Oasis": {
"extra": "You draw before discarding. You can discard the card you drew. If you are unable to draw a card (due to having no cards in your deck, and none in your discard pile to shuffle), you still discard a card if able.",
"name": "Oasis",
"description": "+1 Card\n+1 Action\n+1 Coins\nDiscard a card."
},
"Candlestick Maker": {
"extra": "You get +1 Action and +1 Buy, and take a Coin token.",
"name": "Candlestick Maker",
"description": "+1 Action\n+1 Buy\nTake a Coin token."
},
"Saboteur": {
"extra": "Each other player turns over the top cards of his deck until he reveals one costing 3 coins or more. If a player needs to shuffle to continue revealing cards, he does not shuffle in the already revealed cards. If he goes through all of his cards without finding a card costing 3 coins or more, he just discards everything revealed and is done. If he does find a card costing 3 coins or more, he trashes it, and then may choose to gain a card costing at most 2 coins less than the trashed card. For example, if he trashed a card costing 5 coins, he may gain a card costing up to 3 coins. The gained card must be from the Supply and is put into his discard pile, as are his revealed cards. Costs of cards are affected by Bridge.",
"name": "Saboteur",
"description": "Each other player reveals cards from the top of his deck until revealing one costing 3 Coins or more. He trashes that card and may gain a card costing at most 2 Coins less than it. He discards the other revealed cards."
},
"Woodcutter": {
"extra": "During your Buy phase, you may add 2 Coins to the total value of the Treasure cards played, and you may buy an additional card from the Supply.",
"name": "Woodcutter",
"description": "+1 Buy, +2 Coins."
},
"Torturer": {
"extra": "Each other player chooses which option to suffer and then suffers it. A player can choose to gain a Curse even when there are no Curses left, in which case he doesn't gain one; and a player can choose to discard 2 cards even if he has no cards in hand or one card in hand (if he has one card, he discards that single card). Gained Curses go to the players' hands rather than their discard piles. If there aren't enough Curses left for everybody, deal them around in turn order starting with the player to your left. When the order matters (such as with very few Curses left), each player makes his decision of which fate to suffer in turn order.",
"name": "Torturer",
"description": "+3 Card, Each other player chooses one: he discards 2 cards; or he gains a Curse card, putting it in his hand."
},
"Scouting Party": {
"extra": "When you buy this you get +1 Buy (letting you buy another Event or a card afterwards). Then look at the top 5 cards of your deck, discarding 3 and putting the rest on top of your deck in any order. If there are fewer than 5 cards even after shuffling, you still discard 3 of them; if there are only 3 cards left between your deck and discard pile, all 3 will be discarded. Scouting Party is unaffected by the -1 Card token; if it is on top of your deck, replace it after resolving Scouting Party.",
"name": "Scouting Party",
"description": "+1 Buy\nLook at the top 5 cards of your deck. Discard 3 of them and put the rest back on top of your deck in any order."
},
"Fortress": {
"extra": "When you play this, you draw a card and get +2 Actions. If this is trashed, you take it from the trash and put it into your hand. This happens no matter whose turn it is when Fortress is trashed. It is not optional. You still trashed Fortress, even though you get it back; for example if you play Death Cart and choose to trash Fortress, the \"if you do\" on Death Cart is true, you did trash an Action, so you do not trash Death Cart.",
"name": "Fortress",
"description": "+1 Card, +2 Actions\n______________________\nWhen you trash this, put it into your hand."
},
"Jack of all Trades": {
"extra": "This card does four separate things, in the order listed; you do all of them (the last one is optional). First, gain a Silver from the Supply, putting it into your discard pile. If there are no Silvers left in the Supply, you do not gain one. Second, look at the top card of your deck, and either discard it or put it back on top. If there are no cards left in your deck, shuffle your discard pile to get a card to look at (this will shuffle in the Silver you just gained). If there are still no cards, you do not look at one. Third, draw cards until you have at least five cards in hand. If you already have five or more cards in hand, you do not draw any cards. If there are not enough cards left to draw between your deck and discard pile, just draw what you can. Fourth, you may trash a card from your hand that is not a Treasure card. Cards with two types, one of which is Treasure, are Treasures.",
"name": "Jack of all Trades",
"description": "Gain a Silver.\nLook at the top card of your deck; discard it or put it back.\nDraw until you have 5 cards in hand.\nYou may trash a card from your hand that is not a Treasure."
},
"Throne Room": {
"extra": "You pick another Action card in your hand, play it, and play it again. The second use of the Action card doesn't use up any extra Actions you have. You completely resolve playing the Action the first time before playing it the second time. If you Throne Room a Throne Room, you play an Action, doing it twice, and then play another Action and do it twice; you do not resolve an Action four times. If you Throne Room a card that gives you +1 Action, such as Market, you will end up with 2 Actions left afterwards, which is tricky, because if you'd just played Market twice you'd only have 1 Action left afterwards. Remember to count the number of Actions you have remaining out loud to keep from getting confused! You cannot play any other Actions in between playing the Throne Roomed Action twice.",
"name": "Throne Room",
"description": "Choose an Action card in your hand. Play it twice."
},
"Apothecary": {
"extra": "You draw a card first. Then reveal the top four cards, put the Coppers and Potions into your hand, and put the rest back on top of your deck. If there aren't four cards left in your deck, reveal what you can and shuffle to get the rest. If there still aren't enough cards, just reveal what there is. Any cards that are not Copper and are not Potion go back on top of your deck in an order your choose. You cannot choose not to take all of the Coppers and Potions. If after revealing four cards there are no cards left in your deck, the cards you put back will become the only cards in your deck.",
"name": "Apothecary",
"description": "+1 Card\n+1 Action\nReveal the top 4 cards of your deck. Put the revealed Coppers and Potions into your hand. Put the other cards back on top in any order."
},
"Ill-Gotten Gains": {
"extra": "This is a Treasure worth 2 coins like Copper. When you play it, you may gain a Copper. The gained Copper comes from the Supply and is put into your hand; you can immediately play it. If there is no Copper left in the Supply, you do not gain one. When you gain Ill-Gotten Gains, each other player gains a Curse. This happens whether you gain Ill-Gotten Gains due to buying it, or you gain it some other way. The Curses come from the Supply and go into discard piles. If there are not enough Curses left to go around, deal them out in turn order, starting with the player to the left of the player who gained Ill-Gotten Gains. III-Gotten Gains is not an Attack, and gaining it is not playing an Attack; cards like Moat from Dominion do not work against it.",
"name": "Ill-Gotten Gains",
"description": "Worth 1 Coin\nWhen you play this, you may gain a Copper, putting it into your hand.\n______________________\nWhen you gain this, each other player gains a Curse."
},
"Navigator": {
"extra": "You discard all 5 cards or none of them. If you don't discard them, put them back in any order. If there aren't 5 cards left in your deck, look at as many as you can, then shuffle your discard pile (not including the cards you are currently looking at), and look at the rest. If there still aren't 5, you just look at however many are left, and put them back or discard them.",
"name": "Navigator",
"description": "+2 Coins, Look at the top 5 cards of your deck. Either discard all of them, or put them back on top of your deck in any order."
},
"Graverobber": {
"extra": "You choose either option, then do as much of it as you can; you can choose an option even if you will not be able to do it. You can look through the trash at any time. If you choose to gain a card from the trash, the other players get to see what it is, and it goes on top of your deck. If there were no cards in your deck, it becomes the only card in your deck. If there is no card in the trash costing from 3 Coins to 6 Coins, you will fail to gain one. Cards with Potion in the cost (from Alchemy) do not cost from 3 Coins to 6 Coins. If you choose to trash an Action card from your hand, the card you gain comes from the Supply and is put into your discard pile.",
"name": "Graverobber",
"description": "Choose one: Gain a card from the trash costing from 3 Coins to 6 Coins, putting it on top of your deck; or trash an Action card from your hand and gain a card costing up to 3 Coins more than it."
},
"Upgrade": {
"extra": "Draw a card first. Then, you must trash a card from your hand and gain a card costing exactly 1 coin more than the trashed card. The gained card has to be a card in the Supply, and it goes into your discard pile. If there are no cards available for that cost, you do not get one (you still trashed a card though). If you do not have a card in your hand to trash, you neither trash nor gain a card. Card costs are affected by Bridge. Since Bridge affects the costs of the card you trash and then card you gain, in most cases the Bridge will have no net effect. But since cards cannot go below zero in cost, a Bridge played before an Upgrade would allow you to trash a Copper and gain an Estate.",
"name": "Upgrade",
"description": "+1 Card, +1 Action, Trash a card from your hand. Gain a card costing exactly 1 Coin more than it."
},
"Mandarin": {
"extra": "When you play this, you get +3 coins, and put a card from your hand on top of your deck. If you have no cards left in hand, you do not put a card on top of your deck. If there are no cards left in your deck, the card you put on top becomes the only card in your deck. When you gain this, you put all of your Treasures from play on top of your deck in any order. You do not have to show this order to other players. You have to put all of your Treasures on top; you cannot leave some out. You only put Treasures from play on top of your deck, not unplayed Treasures from your hand. This does not stop you from having the coins you got from playing those Treasures; for example, if you have +1 Buy and play four Golds and buy a Mandarin, you put the Golds on top of your deck, and still have 7 coins left to spend. Mandarin puts your played Treasures on your deck whether you gained it due to buying it or gained it some other way, although normally you will only have Treasures in play in your Buy phase.",
"name": "Mandarin",
"description": "+3 Coins\nPut a card from your hand on top of your deck.\n______________________\nWhen you gain this, put all Treasures you have in play on top of your deck in any order."
},
"Cartographer": {
"extra": "You draw a card first, then look at the top 4 cards of your deck. If there are fewer than 4 cards left in your deck, look at the remaining cards, and shuffle your discard pile (which does not include those cards) to get the remainder needed to look at. If there are still not enough cards, just look at as many as you can. Discard any number of the cards you looked at - none, all four, or something in-between - and put the rest back on top of your deck in any order. if there were no cards left in your deck, these become the only cards in your deck. You do not reveal the cards you put back.",
"name": "Cartographer",
"description": "+1 Card\n+1 Action\nLook at the top 4 cards of your deck. Discard any number of them. Put the rest back on top in any order."
},
"Black Market": {
"extra": "Black Market allows you to Buy a card during the Action phase. You can use coins provided by other Action cards played earlier in the Action phase and you can also play Treasure cards from your hand to pay the cost of the bought card. The Treasure cards are played to the table in your play area, just as you would during the Buy phase. You may play more Treasure cards than are required for the purchase; the extra coins from Action cards and Treasure cards are available to use during your Buy phase. You may even play Treasure cards without Buying a card. You may not reuse coins already spent during a turn. A card bought during the Action phase does not count as a card bought in your Buy phase, so you do not need an action card giving you +1 Buy to still buy a card during your normal Buy phase. The Black Market deck, created before game start, is made up of Kingdom cards that are not in the Supply of the current game. The players should agree before the game which cards will be used to create the Black Market deck (for example, you could agree to use one of every Kingdom card you own that is not a part of the Supply). It is recommended that the Black Market deck contain at least 15 Kingdom cards, with no duplicates. All players can see which cards are placed in the Black Market deck before the game begins, at which point the deck is shuffled. This deck is not a Supply pile and if it is emptied, it does not count towards the end game conditions. If you play Black Market and the Black Market deck is empty, you cannot buy a card but you still get +2 Coins. If you play Black Market and choose not to buy one of the three cards from the Black Market deck, you still get +2 Coins.",
"name": "Black Market",
"description": "+2 Coins, Reveal the top 3 cards of the Black Market deck. You may buy one of them immediately. Put the unbought cards on the bottom of the Black Market deck in any order.\n(Before the game, make a Black Market deck out of one copy of each Kingdom card not in the supply.)."
},
"Smithy": {
"extra": "Draw three cards.",
"name": "Smithy",
"description": "+3 Cards."
},
"Quest": {
"extra": "You may either discard an Attack to gain a Gold, or discard two Curses to gain a Gold, or discard any 6 cards to gain a Gold. The gained Gold is put into your discard pile. You may choose to discard 6 cards despite not having enough cards in hand; you will discard everything and not gain a Gold. You may choose to discard two Curses despite only having one; you will discard that Curse and not gain a Gold.",
"name": "Quest",
"description": "You may discard an Attack, two Curses, or six cards. If you do, gain a Gold."
},
"Witch": {
"extra": "If there aren't enough Curses left to go around when you play the Witch, you deal them out in turn order - starting with the player after you. If you play Witch with no Curses remaining, you will still draw 2 cards. A player gaining a Curse puts it face-up into his Discard pile.",
"name": "Witch",
"description": "+2 Cards, Each other player gains a Curse card."
},
"Bazaar": {
"extra": "You draw a card, get 2 more Actions to use, and get 1 more coin to spend this turn.",
"name": "Bazaar",
"description": "+1 Card, +2 Actions, +1 Coin."
},
"Haven": {
"extra": "First draw a card; then choose a card from your hand and set it aside, face down. Put the set aside card on the Haven, to remind you what it's for. Other players don't get to see what you put down. You have to set aside a card; it's not optional. Haven and the card stay there until the start of your next turn, at which point you put the set aside card into your hand. Haven itself is discarded during the Clean-up phase of that subsequent turn.",
"name": "Haven",
"description": "+1 Card, +1 Action, Set aside a card from your hand face down. At the start of your next turn, put it into your hand."
},
"Fool's Gold": {
"extra": "This is both a Treasure and a Reaction. It can be played in your Buy phase like other Treasures. When you play it, it is worth 1 coin if this is the first time you played a Fool's Gold this turn, and otherwise it is worth 4 coins. So if your lay three Fool's Golds in the same turn, the first is worth 1 coin, the second is worth 4 coins, and the third is worth 4 coins. Fool's Gold is also a Reaction. When another player gains a Province, you may trash Fool's Gold from your hand; if you do, you gain a Gold from the Supply, putting it on top of your deck rather than into your discard pile. If there are no cards in your deck, the Gold becomes the only card in your deck. If there are no Gold cards left in the Supply, you do not gain one, but can still trash Fool's Gold. This Reaction is only usable when another player gains a Province, not you. It is usable whether a Province was gained due to being bought, or gained some other way.",
"name": "Fool's Gold",
"description": "If this is the first time you played a Fool's Gold this turn, this is worth 1 coin, otherwise it's worth 4 coins.\n______________________\nWhen another player gains a Province, you may trash this from your hand. If you do, gain a Gold, putting it on your deck."
},
"Ambassador": {
"extra": "First you choose and reveal a card from your hand. You may place up to 2 copies of that card from your hand back in the Supply. You may choose not to put any of them back in the Supply. Then the other players each gain a copy of it from the Supply. If the pile for the chosen card runs out, some players may not get one; cards are given out in turn order starting with the next player. If you have no other cards in hand when you play this, it does nothing.",
"name": "Ambassador",
"description": "Reveal a card from your hand. Return up to 2 copies of it from your hand to the Supply. Then each other player gains a copy of it."
},
"Bridge Troll": {
"extra": "This gives each other player his - 1 Coin token, which will cause those players to get 1 Coin less the next time they get treasure; see the Tokens section. It also gives you +1 Buy both on the turn you play it and on your next turn. While Bridge Troll is in play, on your turns only, cards cost 1 Coin less, but not less than 0 Coins. This applies to all cards everywhere, including cards in the Supply, cards in hand, and cards in Decks. For example if you have Bridge Troll in play and play Raze, trashing Estate, Estate will only cost 1 Coin, so you'll only look at one card rather than two. This is cumulative; if you have two Bridge Trolls in play from last turn and play another Bridge Troll this turn, all cards will cost 3 Coins less this turn (to a minimum of 0 Coins).",
"name": "Bridge Troll",
"description": "Each other player takes his -1 Coin token. Now and at the start of your next turn:\n+1 Buy\n______________________\nWhile this is in play, cards cost 1 Coin less on your turn, but not less than 0 Coins."
},
"Trusty Steed": {
"extra": "First choose any two of the four options; then do those options in the order listed. So if you choose both +2 Cards, and the last option, you will draw cards before you gain the Silvers and put your deck into your discard pile. The last option both gains you Silvers and puts your deck into your discard pile. The Silvers come from the Supply; if there are fewer than four left, just gain as many as you can. You do not get to look through your deck as you put it into your discard pile. This is a Prize; see the Additional Rules.",
"name": "Trusty Steed",
"description": "Choose two: +2 Cards; or +2 Actions; or +2 Coins; or gain 4 Silvers and put your deck into your discard pile.\n(This is not in the Supply.)"
},
"Bonfire": {
"extra": "This only trashes cards you have in play, not cards from your hand. You can trash zero, one, or two cards. If you trash Treasures with this, this does not remove the 1 Coin you got from playing those Treasures this turn. For example, with 5 Coppers in play and two Buys, you could pay 3 Coins for a Bonfire to trash two of the Coppers, then spend the other 2 Coins on a Peasant.",
"name": "Bonfire",
"description": "Trash up to 2 cards you have in play."
},
"Transmute": {
"extra": "If you have no cards left in hand to trash, you do not get anything. If you trash a Curse to this, you do not get anything - Curse is not an Action card or Victory card or Treasure card. If you trash a card with more than one type, you get each applicable thing. For example, if you trash an Action-Victory card (such as Nobles, from Intrigue), you gain both a Duchy and a Gold. Gained cards come from the Supply and go to your discard pile. If there are no appropriate cards left to gain, you don't gain those cards.",
"name": "Transmute",
"description": "Trash a card from your hand. If it is an...\nAction card, gain a Duchy\nTreasure card, gain a Transmute\nVictory card, gain a Gold"
},
"Scavenger": {
"extra": "Putting your deck into your discard pile is optional, but putting a card from your discard pile on top of your deck is not; you do it unless there are no cards in your discard pile. Putting your deck into your discard pile will not trigger Tunnel (from Hinterlands). If your deck has no cards in it, such as from putting them into your discard pile, then the card you put on top of your deck will be the only card in your deck.",
"name": "Scavenger",
"description": "+2 Coins\nYou may put your deck into your discard pile. Look through your discard pile and put one card from it on top of your deck."
},
"Mill": {
"extra": "You can choose to discard 2 cards even if you only have one card in hand, but you only get +2 Coin if you actually discarded 2 cards.<br></br>\u2013<br></br>Use 8 Mills for games with 2 players, 12 for games with 3 or more players.",
"name": "Mill",
"description": "+1 Card\n+1 Action\n\nYou may discard 2 cards, for +2 Coin.\n\n\u2013\n\nWorth 1 VP"
},
"Counterfeit": {
"extra": "This is a Treasure worth 1 Coin. You play it in your Buy phase, like other Treasures. When you play it, you also get +1 Buy, and you may play an additional Treasure card from your hand twice. If you choose to do that, you trash that Treasure. You still get any coins that Treasure gave you from playing it, despite trashing it. If you use Counterfeit to play Spoils twice, you will get + 6 Coins, (in addition to the 1 Coin, from Counterfeit) and return Spoils to the Spoils pile; you will be unable to trash it. If you use Counterfeit to play a Treasure that does something special when you play it, you will do that thing twice. Cards with two types, one of which is Treasure (such as Harem from Intrigue) are Treasures and so can be played via Counterfeit.",
"name": "Counterfeit",
"description": "Worth 1 Coin\n+1 Buy\nWhen you play this, you may play a Treasure from your hand twice. If you do, trash that Treasure"
},
"Platinum": {
"extra": "This is not a Kingdom card. You do not use it every game. It is a Treasure worth 5 coins. If only Kingdom cards from Prosperity are being used this game, then the Platinum and Colony piles are added to the Basic cards in the Supply for the game. If a mix of Kingdom cards from Prosperity and other sets are being used, then the inclusion of Platinum and Colony in the Supply should be determined randomly, based on the proportion of Prosperity and non-Prosperity cards in use. For example, choose a random Kingdom card being used - such as the first card dealt out from the Randomizer deck [this is equivalent to rolling a d10 or choosing a card at random after all 10 have been selected] - and if it is from Prosperity, add Platinum and Colony to the Supply. Platinum and Colony are not Kingdom cards; when those are included, there are 10 Kingdom cards, plus Copper, Silver, Gold, Platinum, Estate, Duchy, Province, Colony, and Curse, in the Supply. Use 8 Colonies for a 2-player game, or 12 Colonies for a game with 3 or more players. [Use all 12 Platinum regardless of the number of players. Platinum and Colony are meant to be used together and both or neither should be used, not one or the other.]",
"name": "Platinum",
"description": "Worth 5 Coins."
},
"Cutpurse": {
"extra": "Other players must discard one and only one Copper. If they do not have a Copper, they must reveal their hand for all players to see.",
"name": "Cutpurse",
"description": "+2 Coins, Each other player discards a Copper card (or reveals a hand with no Copper)."
},
"Curse": {
"extra": "Curses are an available pile in the Supply regardless of what other cards are in the Supply. With 2 players, place 10 Curses in the Supply. With 3 players, place 20 Curses in the Supply. With 4 players, place 30 Curses in the Supply. With 5 players, place 40 Curses in the Supply. With 6 players, place 50 Curses in the Supply.",
"name": "Curse",
"description": "-1 <VP>"
},
"Museum": {
"extra": "Multiple cards from the same pile can score for this as long as they have different names.",
"name": "Museum",
"description": "When scoring, 2<VP> per differently named card you have."
},
"Butcher": {
"extra": "First take two Coin tokens. Then you may trash a card from your hand and pay any number of Coin tokens (returning them to the pile). The number of Coin tokens you pay can be zero. Butcher itself is no longer in your hand and so cannot trash itself (though it can trash another copy of Butcher). If you trashed a card, you gain a card costing up to the cost of the trashed card plus the number of Coin tokens you paid. For example, you could trash an Estate and pay six Coin tokens to gain a Province, or you could trash another Butcher and pay zero Coin tokens to gain a Duchy. You can pay the Coin tokens you just got. Paying Coin tokens for this ability does not get you coins to spend, it just changes what cards you can gain with this ability.",
"name": "Butcher",
"description": "Take two Coin tokens. You may trash a card from your hand and then pay any number of Coin tokens. If you did trash a card, gain a card with a cost of up to the cost of the trashed card plus the number of Coin tokens you paid."
},
"Treasury": {
"extra": "If you buy multiple cards and at least one of them is a Victory card, then none of your Treasuries can be put on top of your deck. If you played multiple Treasuries and did not buy a Victory card this turn, then you can put any or all of the played Treasuries on top of your deck. If you forget and discard a Treasury to your discard pile, then essentially you have chosen not to use the optional ability. You may not dig through your discard pile to retrieve it later. Gaining a Victory card without buying it, such as with Smugglers, does not stop you from putting Treasury on top of your deck.",
"name": "Treasury",
"description": "+1 Card, +1 Action, +1 Coin, When you discard this from play, if you didn't buy a Victory card this turn, you may put this on top of your deck."
},
"Warehouse": {
"extra": "If you do not have 3 cards to draw in your deck, draw as many as you can, shuffle your discard pile, and draw the remaining cards. If you are still not able to draw 3 cards, draw as many as you can. You will still need to discard 3 cards if you can, even if you couldn't draw 3. You may discard any combination of cards that you just drew with the Warehouse or cards that were previously in your hand.",
"name": "Warehouse",
"description": "+3 Card, +1 Action, Discard 3 cards."
},
"Save": {
"extra": "You can only buy this once per turn. When you do, you get +1 Buy (letting you buy another Event or a card afterwards), set aside a card from your hand face down (the other players do not get to see it), and put it into your hand at the end of the turn, after drawing your hand for the next turn. For example you might set aside an unplayed Copper, and then after drawing your 5 cards for next turn, add the Copper to your hand.",
"name": "Save",
"description": "+1 Buy\nOnce per turn: Set aside a card from your hand, and put it into your hand at end of turn (after drawing)."
},
"Ironworks": {
"extra": "The card you gain must be from the Supply and is put into your discard pile. You get a bonus depending on what type of card you gained. A card with 2 types gives you both bonuses; if you use Ironworks to gain a Great Hall, you will then draw a card (because Great Hall is a Victory card) and may play another Action (because Great Hall is an Action card). Costs of cards are affected by Bridge. [You cannot gain a card with Potion in the cost with Ironworks.]",
"name": "Ironworks",
"description": "Gain a card costing up to 4 Coins. If it is an... Action card, +1 Action. Treasure card, +1 Coin. Victory card, +1 Card."
},
"Worker's Village": {
"extra": "You draw a card, can play two more Actions this turn, and can buy one more card in your Buy phase this turn.",
"name": "Worker's Village",
"description": "+1 Card\n+2 Actions\n+1 Buy"
},
"Chancellor": {
"extra": "You must resolve the Chancellor (decide whether or not to discard your Deck by flipping it into your Discard pile) before doing other things on your turn, like deciding what to buy or playing another Action card. You may not look through your Deck as you discard it.",
"name": "Chancellor",
"description": "+2 Coins, You may immediately put your deck into your discard pile."
},
"Sauna": {
"extra": "Sauna is a promotional Action card. It's a cantrip that allows you to trash a card when you play a Silver. It is a split pile card, with five copies of Sauna sitting on top of five copies of Avanto.",
"name": "Sauna",
"description": "+1 Card\n+1 Action\nYou may play an Avanto from your hand.\nWhile this is in play, when you play a Silver, you may trash a card from your hand."
},
"Courtyard": {
"extra": "You draw cards and add them to your hand before putting one back. The card you put on top of your deck can be any card in your new hand and doesn't have to be one of the 3 you just drew.",
"name": "Courtyard",
"description": "+3 Card, Put a card from your hand on top of your deck."
},
"Apprentice": {
"extra": "If you do not have any cards left in hand to trash, you do not draw any cards. If you trash a card costing 0 coins, such as Curse or Copper, you do not draw any cards. Otherwise you draw a card per Coin the card you trashed cost, and another two cards if it had Potion in its cost. For example, if you trash a Golem, which costs 4 Coins and 1 Potion, you draw 6 cards.",
"name": "Apprentice",
"description": "+1 Action\nTrash a card from your hand.\n+1 Card per Coin it costs.\n+2 Cards if it has Potion in its cost."
},
"University": {
"extra": "Gaining an Action card is optional. If you choose to gain one, it comes from the Supply, must cost no more than 5 coins, and goes to your discard pile. Cards with multiple types, one of which is Action, are Actions and can be gained this way. Cards with Potion in their cost can't be gained by this.",
"name": "University",
"description": "+2 Actions\nYou may gain an Action card costing up to 5 Coins."
},
"Plaza": {
"extra": "First you draw a card and get +2 Actions; then you may discard a Treasure. You can discard the card you drew if it is a Treasure. If you discarded a Treasure card, you take a Coin token. Cards with multiple types, one of which is Treasure (such as Harem from Dominion: Intrigue), are Treasures.",
"name": "Plaza",
"description": "+1 Card\n+2 Actions\nYou may discard a Treasure card. If you do, take a Coin token."
},
"Windfall": {
"extra": "If there are fewer than 3 Golds in the pile, just gain the remaining Golds.",
"name": "Windfall",
"description": "If your deck and discard pile are empty, gain 3 Golds."
},
"Watchtower": {
"extra": "When you play this, you draw cards one at a time until you have 6 cards in hand. If you have 6 or more cards in hand already, you do not draw any cards. When you gain a card, even on someone else's turn, you may reveal Watchtower from your hand, to either trash the gained card or put it on top of your deck. You may reveal Watchtower each time you gain a card; for example if another player plays Mountebank, you may use Watchtower to trash both the Curse and Copper, or to trash the Curse and put the Copper on top of your deck, or just to trash the Curse, and so on. You still did gain whatever card you gained; you just immediately trash it. So if Mountebank gives you a Curse and you trash it, the Curse pile will go down by one as the Curse gets moved to the trash pile. You may reveal Watchtower on your own turn as well, for example when buying a card, or gaining a card via something like Expand. If you use Watchtower to put a card on your deck but have no cards left in your deck, you do not shuffle; the gained card becomes the only card in your deck. Revealing Watchtower does not take it out of your hand; you could reveal Watchtower on multiple opponents' turns and still have it on your turn to draw up to 6 with. When cards are gained during a Possession turn (from Alchemy), the player who played Possession is the one who can use Watchtower, not the player who is being possessed. If a gained card is going somewhere other than to your discard pile, such as a card gained with Mine (from Dominion), you can still use Watchtower to trash it or put it on your deck.",
"name": "Watchtower",
"description": "Draw until you have 6 cards in hand.\n______________________\nWhen you gain a card, you may reveal this from your hand. If you do, either trash that card, or put it on top of your deck."
},
"Tournament": {
"extra": "First you get +1 Action. Then each player, including you, may reveal a Province card from his hand. Then, if you revealed a Province, discard that card, and you gain a Prize of your choice, or a Duchy, putting whatever card you took on top of your deck. If there were no cards in your deck, it becomes the only card in your deck. There are five Prizes, set out at the start of the game; see Preparation. You can only take a Prize from the Prize pile. You can take any Prize from the Prize pile; you do not have to take the top one. You can take a Duchy instead, whether or not the Prizes have run out. You can opt to take a Duchy even if the Duchy pile is empty, or a Prize even if no Prizes are left; in these cases you gain nothing. After gaining your card or not, if no other player revealed a Province, you draw a card and get +1 coin.",
"name": "Tournament",
"description": "+1 Action\nEach player may reveal a Province from his hand. If you do, discard it and gain a Prize (from the Prize pile) or a Duchy, putting it on top of your deck. If no-one else does, +1 Card +1 Coin.\nPrizes: Bag of Gold, Diadem, Followers, Princess, Trusty Steed"
},
"Embassy": {
"extra": "When you play this, you draw five cards, then discard three cards. The cards you discard can be ones that were in your hand and/or ones you just drew. You discard three cards if able, even if you were unable to draw the full five cards (due to not having enough cards in your deck and discard pile). If you do not have three cards to discard, you discard as many as you can. When you gain this, each other player gains a Silver. Players only gain Silvers when you gain this, not when you play this. They gain Silvers whether you gained Embassy due to buying it, or gained it some other way. Gaining Silvers is not optional for them. The Silvers come from the Supply. If there are not enough Silvers left to go around, deal them out in turn order, starting with the player to the left of the player who gained Embassy.",
"name": "Embassy",
"description": "+5 Cards\nDiscard 3 cards.\n______________________\nWhen you gain this, each other player gains a Silver."
},
"Shanty Town": {
"extra": "You get 2 more Actions to use no matter what else happens. Then you must reveal your hand. If you have no Action cards in hand, you draw 2 cards. If the first card you draw is an Action card, you still draw the second card. Action - Victory cards are Action cards.",
"name": "Shanty Town",
"description": "+2 Actions, Reveal your hand. If you have no Action cards in hand, +2 Cards."
},
"Giant": {
"extra": "At the start of the game, place your Journey token (the one with the boot) face up. When you play this, you turn the Journey token over. Then, if it is face down, you get + 1 Coin and nothing more happens. If it is face up, you get + 5 Coins and the attack part happens. The attack resolves in turn order, starting with the player to your left. The player reveals the top card of his deck, and either trashes it if it costs from 3 to 6 Coins, or discards it and gains a Curse otherwise. Cards with in the cost (from Alchemy) do not cost from 3 to 6 Coins. Cards with an asterisk or + by the cost that cost from 3 to 6 Coins (such as Teacher, or Masterpiece from Guilds) do get trashed. Players can respond to Giant being played with Reactions that respond to Attacks (such as Caravan Guard), even if Giant will only be producing + 1 Coin this time.",
"name": "Giant",
"description": "Turn your Journey token over (it starts face up). If it's face down, +1 Coin. If it's face up, +5 Coins, and each other player reveals the top card of his deck, trashes it if it costs 3 Coins to 6 Coins, and otherwise discards it and gains a Curse."
},
"Distant Lands": {
"extra": "This is a Victory card. Use 8 for games with 2 players, or 12 for games with 3 or more players. This is also an Action card; when you play it, you put it on your Tavern mat. It will stay there the rest of the game; there is no way to call it. At the end of the game, Distant Lands is worth 4 Victory Points if it is on your mat, or 0 Victory Points if it is not. It counts as part of your deck either way (for example it can contribute to how many Victory Points a Gardens is worth).",
"name": "Distant Lands",
"description": "Put this on your Tavern mat.\n______________________\nWorth 4 VP if on your Tavern mat at the end of the Game (otherwise worth 0 VP)."
},
"Cache": {
"extra": "This is a treasure worth 3 coins, like Gold. When you gain it, you also gain two Coppers from the Supply. if there are not two Coppers left, just gain as many as you can. You only gain Coppers when you gain Cache, not when you play it. You gain Coppers whether you gained Cache due to buying it, or gained it some other way.",
"name": "Cache",
"description": "Worth 3 coins\n______________________\nWhen you gain this, gain two Coppers."
},
"Jester": {
"extra": "Each player with no cards in his deck shuffles his discard pile in order to get a card to discard. If he still has no cards, he does not discard one. For each player who discarded a card, if it is a Victory card, he gains a Curse, and otherwise, you choose: either that player gains a copy of the card, or you do. The gained copies and Curses come from the Supply and are put into the discard piles of the players who gain them. If a card is revealed for which there are no copies in the Supply, no one gains a copy of it. This Attack hits other players in turn order, which can matter when some piles are low. A card with multiple types, one of which is Victory (such as Nobles from Dominion: Intrigue) is a Victory card.",
"name": "Jester",
"description": "+2 Coins\nEach other player discards the top card of his deck. If it\u2019s a Victory card he gains a Curse. Otherwise he gains a copy of the discarded card or you do, your choice."
},
"Hoard": {
"extra": "This is a Treasure worth 2 coins, like Silver. When you buy a Victory card with this in play, you gain a Gold card from the Supply, putting it into your discard pile. If there are no Golds left, you do not get one. If you have multiple Hoards in play, you will gain multiple Golds from buying a single one. So for example if you had two Hoards in play and no other money, with +1 Buy, you could buy two Estates and gain four Golds. Victory cards include cards that are other types as well, such as Nobles and Harem in Intrigue. You gain a Gold even if you use Watchtower to immediately trash the Victory card you gained. Victory cards gained other than by buying them do not get you Gold.",
"name": "Hoard",
"description": "Worth 2 Coins.\n______________________\nWhile this is in play, when you buy a Victory card, gain a Gold."
},
"Relic": {
"extra": "This is a Treasure worth 2 Coins. You play it in your Buy phase, like other Treasures. When you play it, you also make each other player put his -1 Card token on his deck, which will cause those players to draw one less card the next time they draw cards; see the Tokens section. Relic is an Attack despite not being an Action; it can be blocked with Moat and responded to with Caravan Guard and so on. A player responding to Relic with Caravan Guard first plays Caravan Guard, including drawing a card, and then puts his -1 Card token on his deck.",
"name": "Relic",
"description": "2 Coins\nWhen you play this, each other player puts his -1 Card token on his deck."
},
"Fugitive": {
"extra": "When you play this, you draw 2 cards, get +1 Action, and then discard a card from your hand. The discarded card does not have to be one of the cards just drawn.",
"name": "Fugitive",
"description": "+2 Cards\n+1 Action\nDiscard a card.\n______________________\nWhen you discard this from play, you may exchange it for a Disciple.\n(This is not in the Supply.)"
},
"Bandit Camp": {
"extra": "Draw a card before gaining a Spoils. The Spoils comes from the Spoils pile, which is not part of the Supply, and is put into your discard pile. If there are no Spoils cards left, you do not get one.",
"name": "Bandit Camp",
"description": "+1 Card, +2 Actions\nGain a Spoils from the Spoils pile."
},
"Goons": {
"extra": "[When a player takes VP tokens, he takes a player mat to put them on. VP tokens are not private and anyone can count them. VP tokens come in 1 VP and 5 VP denominations and players can make change as needed. Tokens are unlimited and if they run out, use something else to track any further tokens. At the end of the game, players add the total value of their VP tokens to their score.] You get 1 VP token for each card you buy, but do not get a VP token for gaining a card some other way. Multiple copies of Goons are cumulative; if you have two Goons in play and buy a Silver, you get 2 VP tokens. However if you King's Court a Goons, despite having played the card 3 times, there is still only one copy of it in play, so buying Silver would only get you 1 VP token.",
"name": "Goons",
"description": "+1 Buy\n+2 Coins\nEach other player discards down to 3 cards in hand.\n______________________\nWhile this is in play, when you buy a card, +1 <VP>."
},
"Outpost": {
"extra": "The extra turn is completely normal except that your starting hand for it is only 3 cards. This means that you only drew 3 cards instead of 5 cards during the Clean-up phase of the turn when you played Outpost. Leave Outpost in front of you until the end of the extra turn. If you play Outpost as well as a \"Now and at the start of your next turn\" card, such as Merchant Ship, the turn from Outpost will be that next turn, so you'll get those coins then. If you manage to play Outpost twice in one turn, you will still only get one extra turn. If you play Outpost during an extra turn, it won't give you another turn.",
"name": "Outpost",
"description": "You only draw 3 cards (instead of 5) in this turn's Clean-up phase. Take an extra turn after this one. This can't cause you to take more than two consecutive turns."
},
"Farmland": {
"extra": "This is a Victory card, not an Action card. It is worth 2 victory points at the end of the game. When you buy it, you trash a card from your hand if able, and if you did, you gain a card from the supply costing exactly 2 coins more than the trashed card if able. If there are no cards left in your hand to trash, you do not trash or gain a card, and if you trashed a card but there are no cards in the supply costing exactly 2 coins more than the trashed card, you do not gain a card. This ability only functions when you buy Farmland, not when you gain it some other way. During set-up, put all 12 Farmlands in the Supply for a game with 3 or more players, but only 8 in the Supply for a 2-player game.",
"name": "Farmland",
"description": "2 <VP>\n______________________\nWhen you buy this, trash a card from your hand. Gain a card costing exactly 2 Coins more than the trashed card."
},
"Fortune": {
"extra": "You only double your Coin the first time you play a Fortune in a turn; any further times only get you +1 Buy.",
"name": "Fortune",
"description": "+1 Buy\nWhen you play this, double your Coin if you haven't yet this turn.\n______________________\nWhen you gain this, gain a Gold per Gladiator you have in play."
},
"Diadem": {
"extra": "This is a Treasure worth 2 coins, like Silver. You play it in your Buy phase, like other Treasures. When you play it, you get an extra +1 coin per unused Action you have. This means Actions, not Action cards. So for example if you play Farming Village (which gives you +2 Actions), then Diadem, Diadem will give you an extra + 2 coins, for 4 coins total. If you play no Action cards at all on your turn, you will have one unused Action, so you will get total from Diadem. This is a Prize; see the Additional Rules.",
"name": "Diadem",
"description": "Worth 2 Coins.\nWhen you play this, +1 Coins per unused Action you have (Action, not Action card).\n(This is not in the Supply.)"
},
"Trader": {
"extra": "When you play this, trash a card from your hand, and if you did, gain a number of Silvers equal to the cost of that card in coins. The Silvers come from the Supply and are put into your discard pile. If there are not enough Silvers left, just gain all of the Silvers that you can. You only gain Silvers if you trashed a card. If you trash a card costing 0 coins, such as Copper, you will gain zero Silvers. You can trash Silver if you want; you will gain three Silvers for it normally. If costs are different, such as due to playing Highway, then Trader will give you a different number of Silvers, based on the current costs. For example ifyou play Highway and then Trader, trashing an Estate you will only gain one Silver. If you trash a card with Potion in its cost from Dominion: Alchemy, you do not get anything for the Potion, just for the coins that the card cost. Trader is also a Reaction. When you gain a card, whether due to buying it or due to gaining it some other way, you may reveal Trader from your hand to instead gain a Silver from the Supply. If you do this, you gain a Silver, not the card you would have gained; if something would have happened due to gaining the other card, it does not happen, because you did not gain it. For example if you buy Ill-Gotten Gains but use Trader to gain Silver instead, no-one will gain a Curse. However if something happens when you buy a card, that will still happen if you replace gaining the card with gaining Silver. For example you can buy Farmland, trash a card from your hand and gain one costing 2 more, then use Trader to gain Silver rather than Farmland. If the card you were going to gain was not going to your discard pile, the Silver still goes to your discard pile; if the card you were going to gain did not come from the Supply, the Silver still comes from the Supply. If there are no Silvers left in the Supply, you can still reveal Trader when you gain a card; you gain nothing instead of the card you would have gained.",
"name": "Trader",
"description": "Trash a card from your hand. Gain a number of Silvers equal to its cost in coins.\n______________________\nWhen you would gain a card, you may reveal this from your hand. If you do, instead, gain a silver."
},
"Fairgrounds": {
"extra": "At the end of the game, this is worth 2 VP per 5 differently named cards in your deck, rounded down. So if you have 0-4 different cards, it is worth 0 VP; if you have 5-9, it is worth 2 VP; if you have 10-14, it is worth 4 VP; if you have 15-19, it is worth 6; and so on. By default there are only 17 differently named cards available in a game, but sometimes there may be more cards, such as via Young Witch's setup rule, or due to Tournament. Use 8 Fairgrounds in a game with 2 players, and 12 for a game with 3 or more players.",
"name": "Fairgrounds",
"description": "Worth 2 <VP> for every 5 differently named cards in your deck (rounded down)"
},
"Venture": {
"extra": "This is a Treasure card worth 1 coin, like Copper. When you play it, you reveal cards from your deck until revealing a Treasure card. If you run out of cards before revealing a Treasure, shuffle your discard pile (but not the revealed cards) to get more; if you still do not find a Treasure, just discard all of the revealed cards. If you do find a Treasure, discard the other cards and play the Treasure. If that Treasure does something when played, do that something. For example if Venture finds you another Venture, you reveal cards again. Remember that you choose what order to play Treasure cards; for example if you have both Venture and Loan in hand, you can play either one first.",
"name": "Venture",
"description": "Worth 1 Coin.\nWhen you play this, reveal cards from your deck until you reveal a Treasure. Discard the other cards. Play that Treasure."
},
"Oracle": {
"extra": "First, each player including you, reveals the top two cards of his deck, and either discards both of them or puts both of them back on top, your choice. A player putting the cards back puts them back in an order he chooses, and without needing to reveal that order. Then, you draw two cards. So if you put back the cards you revealed, you will draw them.",
"name": "Oracle",
"description": "Each player (including you) reveals the top 2 cards of his deck, and you choose one: either he discards them, or he puts them back on top in an order he chooses.\n+2 Cards"
},
"Patrol": {
"extra": "First draw 3 cards, then reveal the top 4 cards of your deck.<br></br><br></br>Put the revealed Victory cards and Curses into your hand; you have to take them all.<br></br><br></br>Put the rest of the cards back on your deck in any order you choose.",
"name": "Patrol",
"description": "+3 Cards\n\nReveal the top 4 cards of your deck. Put the Victory cards and Curses into your hand. Put the rest back in any order."
},
"Nomad Camp": {
"extra": "When you gain this card, it goes on top of your deck rather than into your discard pile. This is true whether you gained it due to buying it or gained it some other way. If there were no cards in your deck, it becomes the only card in your deck.",
"name": "Nomad Camp",
"description": "+1 Buy\n+2 Coins\n______________________\nWhen you gain this, put it on top of your deck."
},
"Battlefield": {
"extra": "You take the <VP> whether you bought the Victory card or gained it another way.",
"name": "Battlefield",
"description": "When you gain a Victory card, take 2<VP> from here.\n______________________\nSetup: Put 6<VP> here per player."
},
"Mountebank": {
"extra": "This hits the other players in turn order when that matters (such as when the Curse or Copper pile is low). Each of the other players in turn chooses whether or not to discard a Curse card from his hand, and if he does not, gains a Curse and a Copper from the Supply, putting them into his discard pile. If either the Curse or Copper pile is empty, he still gains the other one. If both are empty, he does not gain either, but can still discard Curse if he wants to. A player using Moat (from Dominion) on this may not discard a Curse, and doesn't gain a Curse or Copper - you cannot Moat just part of the attack. A player using Watchtower on this can use it just to trash the Curse, just to trash the Copper, or to trash both.",
"name": "Mountebank",
"description": "+2 Coins\nEach other player may discard a Curse. If he doesn't, he gains a Curse and a Copper."
},
"Haggler": {
"extra": "When you play this, you get +2 coins. While this is in play, whenever you buy a card, you gain a cheaper card that is not a Victory card. For example, you could buy a Province, and gain a Gold via Haggler. Gaining a card is not optional. The gained card comes from the Supply and is put into your discard pile. Haggler only gives you an extra card when you buy a card, not when you gain a card some other way (such as with Haggler itself). If there is no cheaper card available in the Supply (e.g., if you buy a Copper), you do not gain a card. Using a card that lets you play a card several times (like Throne Room from Dominion) on Haggler does not gain you two or more cards per card bought, as there is still only one copy of Haggler in play. The bonus is cumulative if you have three Hagglers in play, you will gain three more cards for each card you buy. Cards with two types, one of which is Victory, are Victory cards and so cannot be gained with Haggler.",
"name": "Haggler",
"description": "+2 Coins\n______________________\nWhile this is in play, when you buy a card, gain a card costing less than it that is not a Victory card."
},
"Thief": {
"extra": "A player with just one card left revealed that last card and then shuffles to get the other card to reveal (without including the revealed card); a player with no cards left shuffles to get both of them. A player who still doesn't have two cards to reveal after shuffling just reveals what he can. Each player trashes one Treasure card at most, of the attacker's choice from the two revealed cards, and then you gain any of the trashed cards that you want. You can only take Treasures just trashed - not ones trashed on previous turns. You can take none of them, all of them, or anything in between. Put the Treasures you decided to gain into your Discard pile. The ones you choose not to gain stay in the Trash pile.",
"name": "Thief",
"description": "Each other player reveals the top 2 cards of his deck. If they revealed any Treasure cards, they trash one of them that you choose. You may gain any or all of these trashed cards. They discard the other revealed cards."
},
"Merchant Ship": {
"extra": "You get 2 coins to spend this turn, and 2 more on your next turn. Leave this in front of you until the Clean-up phase of your next turn.",
"name": "Merchant Ship",
"description": "Now and at the start of your next turn: +2 Coins."
},
"Fishing Village": {
"extra": "You get a coin to spend and 2 more Actions to use this turn. At the start of your next turn you get a coin and only one more Action. This means you will be able to play 2 Actions total on your next turn (counting your normal Action). Leave this in front of you until the Clean-up phase of your next turn.",
"name": "Fishing Village",
"description": "+2 Actions, +1 Coin, At the start of your next turn: +1 Action, +1 Coin."
},
"Gladiator": {
"extra": "If there are no Gladiators in the Supply, you cannot trash one, but that does not stop you from getting the +1 Coin. If you have no cards in hand, the player to your left cannot reveal a copy of the card you revealed, so you will get the +1 Coin and trash a Gladiator.",
"name": "Gladiator",
"description": "+2 Coin\nReveal a card from your hand. The player to your left may reveal a copy from their hand. If they do not, +1 Coin and trash a Gladiator from the Supply."
},
"Engineer": {
"extra": "Engineer cannot gain copies of itself, or any other card with Debt in the cost. When you play it, you gain a card, then may trash Engineer to gain a second card (which can be the same as the first or different).",
"name": "Engineer",
"description": "Gain a card costing up to 4 Coins. You may trash this. If you do, gain a card costing up to 4 Coins."
},
"Junk Dealer": {
"extra": "You have to trash a card from your hand if you can. You draw before trashing.",
"name": "Junk Dealer",
"description": "+1 Card\n+1 Action\n+1 Coin\nTrash a card from your hand."
},
"Overlord": {
"extra": "When you play this, you pick an Action card from the Supply that costs up to 5 Coin, and treat this card as if it were the card you chose. Normally this will just mean that you follow the instructions on the card you picked. For example, with Village in the Supply, you could play Overlord as Village and get +1 Card +2 Actions. Overlord also gets the chosen card's cost, name, and types, until it leaves play. If you play Overlord as a card that moves itself somewhere, such as to the trash or the Supply, Overlord will do that; for example Overlord played as Encampment will be set aside and return to the Overlord pile at the start of Clean-up. If you play Overlord as a Duration card, or as a Throne Room on a Duration card, Overlord will stay in play the same way the Duration card or Throne Room would. If you play an Overlord multiple times such as via a Throne Room, you will only pick what to play it as the first time; the other times it will be the same thing. Once in play, Overlord is the thing it copied, rather than an Overlord; for example Colonnade will produce <VP> if you buy a copy of that card, but not if you buy an Overlord. Overlord can only be played as a visible card in the Supply, and the top card of a pile; it cannot be played as a card from an empty pile, or as a card that has not been uncovered from a split pile, or as a card from a split pile that has been bought out, or as a non-Supply card (like Mercenary from Dominion: Dark Ages). Overlord cannot be played as Crown during a Buy phase, since Overlord itself is not a Treasure and so cannot be played in Buy phases.",
"name": "Overlord",
"description": "Play this as if it were an Action card in the Supply costing up to 5 Coin. This is that card until it leaves play."
},
"Salt the Earth": {
"extra": "If the trashed card does something when trashed (such as Crumbling Castle), you do that thing.",
"name": "Salt the Earth",
"description": "+1<VP>\nTrash a Victory card from the Supply."
},
"Workshop": {
"extra": "The card you gain is put into your Discard pile. It has to be a card from the Supply. You cannot use coins from Treasures or previous Actions (like the Market) to increase the cost of the card you may gain. [You cannot gain cards with Potion in the cost with Workshop.]",
"name": "Workshop",
"description": "Gain a card costing up to 4 Coins."
},
"Hunting Grounds": {
"extra": "When you play this, draw 4 cards. If this is trashed, you either gain a Duchy or 3 Estates, your choice. These cards come from the Supply and are put into your discard pile. If you choose the 3 Estates and there are not 3 left, just gain as many as you can.",
"name": "Hunting Grounds",
"description": "+ 4 Cards\n______________________\nWhen you trash this,\ngain a Duchy or 3 Estates."
},
"Forge": {
"extra": "\"Any number\" includes zero. If you trash no cards, you have to gain a card costing 0 coins if you can. This is different from how cards like Expand work if you do not trash anything, because Forge looks at the total, not at any one card's cost. If there is no card at the required cost, you do not gain a card. The card you gain comes from the Supply and is put into your discard pile. Potion symbols (on cards from Alchemy) are not added, and the card you gain cannot have a potion symbol in its cost.",
"name": "Forge",
"description": "Trash any number of cards from your hand. Gain a card with cost exactly equal to the total cost in coins of the trashed cards."
},
"Soothsayer": {
"extra": "The Gold and Curses come from the Supply and go into discard piles. If there is no Gold left, you do not gain one. If there are not enough Curses left to go around, deal them out in turn order, starting with the player to your left. Each player who gained a Curse draws a card. This is not optional. A player who did not gain a Curse, whether due to the Curses running out or due to some other reason, does not draw a card. A player who uses Watchtower (from Dominion: Prosperity) to trash the Curse did gain a Curse and so draws a card; a player who uses Trader (from Dominion: Hinterlands) to gain a Silver instead did not gain a Curse and so does not draw a card.",
"name": "Soothsayer",
"description": "Gain a Gold. Each other player gains a Curse. Each player who did draws a card."
},
"Trash": {
"extra": "",
"name": "Trash",
"description": "Pile of trash."
},
"Cultist": {
"extra": "When you play this, you draw two cards, then each other player gains a Ruins. These come from the Ruins pile in the Supply, and are put into discard piles. Go in turn order starting to your left; each player takes the top Ruins, revealing the next one each time. If the Ruins pile runs out, players stop gaining them at that point. After giving out Ruins, you may play another Cultist from your hand. It can be one you just drew from playing Cultist, or one you already had in your hand. Playing a Cultist this way does not use up any extra Actions you were allowed to play due to cards like Fortress - the original Cultist uses up one Action and that is it. When you trash a Cultist of yours, you draw three cards. This happens whether or not it is your turn, and whether or not the card that causes Cultist to be trashed was yours. If you trash a Cultist while revealing cards, such as to a Knight attack, you do not draw the revealed cards that are about to be discarded.",
"name": "Cultist",
"description": "+2 Cards\nEach other player gains a Ruins. You may play a Cultist from your hand.\n______________________\nWhen you trash this, +3 Cards."
},
"Teacher": {
"extra": "When you play this, put it on your Tavern mat. It stays on your mat until you call it at the start of one of your turns. If multiple things can happen at the start of your turn, you can do them in any order. When you call Teacher, it moves from the mat into play, and you choose your +1 Action, +1 Card, +1 Buy, or + 1 Coin token, and move it to an Action Supply pile that you have no tokens on. The token on the pile means that every time you play a card from that pile, you will get the corresponding bonus - if you put your +1 Action token on a pile, you will get an extra +1 Action when playing a card from that pile. See the Tokens section. This cannot put a token on a pile you have tokens on, including the tokens Teacher places as well as your - 2 Coin cost token and Trashing token. This can put a token on a pile that other players have tokens on. Other things can put tokens on a pile you put a token on with Teacher; it is just Teacher itself that cannot put a token on a pile you have a token on. It is okay if the pile has a token that does not belong to you or anyone, such as an Embargo token (from Seaside) or coin token for Trade Route (from Prosperity). It is okay if you have an Estate token on a card set aside from that pile.",
"name": "Teacher",
"description": "Put this on your Tavern mat.\n______________________\nAt the start of your turn, you may call this, to move your +1 Card, +1 Action, +1 Buy, or +1 Coin token to an Action Supply pile you have no tokens on (when you play a card from that pile, you first get that bonus).\n(This is not in the Supply.)"
},
"Lost City": {
"extra": "When you gain this, each other player draws a card. This applies whether you bought it or gained it some other way.",
"name": "Lost City",
"description": "+2 Cards\n+2 Actions\n______________________\nWhen you gain this, each other player draws a card."
},
"Fortune Teller": {
"extra": "Each other player reveals cards from the top of his deck until he reveals a Victory or Curse card. If he runs out of cards before finding one, he shuffles his discard pile (but not the revealed cards), and keeps revealing cards. If he still cannot find one, he just discards all of the revealed cards. If he does find one, he puts the Victory or Curse card on top of his deck, and discards the other revealed cards. If his deck has no other cards in it, it becomes the only card in his deck. A card with multiple types, one of which is Victory (such as Nobles from Dominion: Intrigue), is a Victory card. You do not choose Victory or Curse - they stop on the first card that matches either type.",
"name": "Fortune Teller",
"description": "+2 Coin\nEach other player reveals cards from the top of his deck until he reveals a Victory of Curse card. He puts it on top and discards the other revealed cards."
},
"Scrying Pool": {
"extra": "First you reveal the top card of each player's deck, and either have them discard it or have them put it back. After you finish making those decisions, reveal cards from the top of your deck until you reveal a card that isn't an Action card. If you run out of cards without revealing an Action card, shuffle your discard pile and keep going. If you have no discard pile left either, stop there. Put all of the revealed Action cards into your hand, plus that first non-Action you revealed. If the very first card you revealed was not an Action, that card goes into your hand. Cards with multiple types, one of which is Action, are Actions. The only cards that go into your hand are the ones revealed as part of the revealing cards until finding a non-Action; you do not get discarded cards from the first part of what Scrying Pool did, or cards from other players' decks.",
"name": "Scrying Pool",
"description": "+1 Action\nEach player (including you) reveals the top card of his deck and either discards it or puts it back, your choice. Then reveal cards from the top of your deck until revealing one that isn't an Action.\nPut all of your revealed cards into your hand."
},
"Governor": {
"extra": "You always get +1 Action. Then you either 1) draw three cards and each other player draws a card; 2) gain a Gold and each other player gains a Silver; 3) may trash a card from your hand and gain a card costing exactly 2 Coins more and each other player may trash a card from his hand and gain a card costing exactly 1 Coin more. Go in turn order, starting with yourself; this may matter if piles are low. The gained cards come from the Supply and are put into discard piles; if there are none left, those cards are not gained. For example if you choose the second option and there is only one Silver in the Supply, the player to your left gets it and no-one else gets one. For the third option, you only gain a card if you trashed a card, and only if there is a card available in the Supply with the exact cost required. If you do trash a card, you must gain a card if you can. You cannot trash a Governor you played to itself, as it is no longer in your hand when you play it (though you can trash another copy of Governor from your hand).",
"name": "Governor",
"description": "+1 Action\nChoose one; you get the version in parentheses: Each player gets +1 (+3) Cards; or each player gains a Silver (Gold); or each player may trash a card from his hand and gain a card costing exactly 1 Coin (2 Coins) more."
},
"Talisman": {
"extra": "This is a Treasure worth 1 coin, like Copper. Each time you buy a non-Victory card costing 4 coins or less with this in play, you gain another copy of the bought card. If there are no copies left, you do not gain one. The gained card comes from the Supply and goes into your discard pile. If you have multiple Talismans, you gain an additional copy for each one; if you buy multiple cards for 4 coins or less, Talisman applies to each one. For example if you have two Talismans, four Coppers, and two Buys, you could Buy Silver and Trade Route, gaining two more Silvers and two more Trade Routes. Talisman only affects buying cards; it does not work on cards gained other ways, such as with Expand. A card if a Victory card if Victory is any of its types; for example Great Hall from Intrigue is an Action - Victory card, so it is a Victory card. Talisman only cares about the cost of the card when you buy it, not its normal cost; so for example it can get you a Peddler if you have played two Actions this turn, thus lowering Peddler's cost to 4 coins, or can get you a Grand Market if you played Quarry. [You may not choose to not gain the additional card from Talisman; you must gain an additional one for each Talisman in play if possible.]",
"name": "Talisman",
"description": "Worth 1 Coin.\n______________________\nWhile this is in play, when you buy a card costing 4 Coins or less that is not a Victory card, gain a copy of it."
},
"Vault": {
"extra": "\"Any number\" includes zero. You draw cards first; you can discard the cards you just drew. Each other player chooses whether or not to discard 2 cards, then discards 2 cards if he chose to, then draws a card if he did discard 2 cards. If one of the other players has just one card, he can choose to discard it, but will not draw a card. Another player who discards but then has no cards left to draw shuffles in the discards before drawing.",
"name": "Vault",
"description": "+2 Cards\nDiscard any number of cards. +1 Coin per card discarded.\nEach other player may discard 2 cards. If he does, he draws a card."
},
"Rocks": {
"extra": "If it is another player's turn, then it is not your Buy phase, so the Silver goes to your hand.",
"name": "Rocks",
"description": "+1 Coin\n______________________\nWhen you gain or trash this, gain a Silver; if it is your Buy phase, put the Silver on your deck, otherwise put it into your hand."
},
"Bridge": {
"extra": "Costs are 1 coin lower for all purposes. For example, if you played Village, then Bridge, then Workshop, you could use Workshop to gain a Duchy (because Duchy now costs 4 Coins due to the Bridge). Then if you played 3 Coins, you could buy a Silver (for 2 Coins) and an Estate (for 1 coin). Cards in players' decks are also affected. The effect is cumulative; if you Throne Room a Bridge, all cards will cost 2 Coins less this turn. Costs never go below 0 Coins. For this reason, if you play Bridge and then play Upgrade, you could trash a Copper (which still costs zero, even though you played Bridge) and gain a Pawn (which costs 1 after Bridge is played).",
"name": "Bridge",
"description": "+1 Buy, +1 Coin. All cards (including cards in players' hands) cost 1 Coin less this turn, but not less than 0 Coins."
},
"Pawn": {
"extra": "First pick any 2 of the 4 options. You cannot pick the same option twice. After picking both, do both, in either order. You may not choose to draw a card, look at the card drawn, and then make your second choice.",
"name": "Pawn",
"description": "Choose two: +1 Card, +1 Action, +1 Buy, +1 Coin. (The choices must be different.)."
},
"Expedition": {
"extra": "This increases the number of cards you draw in Clean- up of the same turn. It is cumulative. Normally you draw 5 cards; after an Expedition you would draw 7, after two Expeditions you would draw 9, and so on. It only applies for the turn you buy it. If you play Outpost (from Seaside), getting an extra turn with only 3 cards, and also buy Expedition, you add the 2 extra cards onto the base of 3 cards, for 5 cards total.",
"name": "Expedition",
"description": "Draw 2 extra cards for your next hand."
},
"City Quarter": {
"extra": "Cards with multiple types that include Action, such as Crown, are Actions.",
"name": "City Quarter",
"description": "+2 Actions\nReveal your hand. +1 Card per Action card revealed."
},
"Patrician": {
"extra": "Cards costing Debt do not cost 5 Coin or more unless they also have a Coin cost of 5 Coin or more. So Fortune does but City Quarter does not.",
"name": "Patrician",
"description": "+1 Card\n +1 Action\nReveal the top card of your deck. If it costs 5 Coin or more, put it into your hand."
},
"Bishop": {
"extra": "[When a player takes VP tokens, he takes a player mat to put them on. VP tokens are not private and anyone can count them. VP tokens come in 1 VP and 5 VP denominations and players can make change as needed. Tokens are unlimited and if they run out, use something else to track any further tokens. At the end of the game, players add the total value of their VP tokens to their score.] Trashing a card is optional for the other players but mandatory for you. You trash a card, then each other player may trash a card, in turn order. Only the player who played Bishop can get VP tokens from it. Potion in costs is ignored, for example if you trash Golem (from Alchemy) which costs 4 coins 1 potion, you get 3 VP tokens total (counting the 1 VP you always get from Bishop). If you have no cards left in your hand to trash, you still get the 1 coin and 1 VP token.",
"name": "Bishop",
"description": "+1 Coin\n+1 <VP>\nTrash a card from your hand. +<VP> equal to half its cost in coins, rounded down.\nEach other player may trash a card from his hand."
},
"Peddler": {
"extra": "Most of the time, this costs 8 coins. During Buy phases, this costs 2 coins less per Action card you have in play. This cost applies to all Peddler cards, including ones in hands and decks. It never costs less than 0 coins. If you play King's Court on Worker's Village, for example, that is just two Action cards you have in play, even though you played the Worker's Village three times. Buying cards using the promotional card Black Market is something that does not happen during a Buy phase, so Peddler still costs 8 coins then.",
"name": "Peddler",
"description": "+1 Card; +1 Action; +2 Coin\n______________________\nDuring your Buy phase, this costs 2 Coins less per Action card you have in play, but not less than 0 Coins."
},
"Treasure Hunter": {
"extra": "This counts all cards gained, not just bought cards. For example if the player to your right played Amulet, gaining a Silver, then bought a Duchy, you would gain two Silvers. The gained Silvers are put into your discard pile.",
"name": "Treasure Hunter",
"description": "+1 Action\n+1 Coin\nGain a Silver per card the player to your right gained in his last turn.\n______________________\nWhen you discard this from play, you may exchange it for a Warrior.\n(This is not in the Supply.)"
},
"Disciple": {
"extra": "Playing an Action card from your hand is optional. If you do play one, you play it twice, then gain a copy of it if possible; gaining the copy is not optional once you have played it. The copy comes from the Supply and is put into your discard pile; if the Action is a non-Supply card, such as Fugitive, you can play it twice, but do not gain a copy of it. This does not use up any extra Actions you were allowed to play due to cards like Port - Disciple itself uses up one Action and that is it. You cannot play any other cards in between resolving the Discipled Action card multiple times, unless that Action card specifically tells you to (such as Disciple itself does). If you Disciple a card that gives you +1 Action, such as Artificer, you will end up with 2 Actions to use afterwards, rather than the one you would have left if you just played two Artificers. If you use Disciple on a Duration card, Disciple will stay in play until the Duration card is discarded.",
"name": "Disciple",
"description": "You may play an Action card from your hand twice. Gain a copy of it.\n______________________\nWhen you discard this from play, you may exchange it for a Teacher.\n(This is not in the Supply.)"
},
"Province": {
"extra": "Put 8 in the Supply in a game with two players. Put 12 in the Supply in a game with three or four players. Put 15 in the Supply in a game with five players. Put 18 in the Supply in a game with six players.",
"name": "Province",
"description": "6 <VP>"
},
"Cellar": {
"extra": "You can't discard Cellar to itself, since it isn't in your hand any longer when you resolve it. You choose what cards to discard and discard them all at once. You only draw cards after you have discarded. If you have to shuffle to do the drawing, the discarded cards will end up shuffled into your new Deck.",
"name": "Cellar",
"description": "+1 Action, Discard any number of cards. +1 Card per card discarded."
},
"Great Hall": {
"extra": "This is both an Action card and a Victory card. When you play it, you draw a card and may play another Action. At the end of the game, it's worth 1 VP, like an Estate. During set-up, place 12 Great Halls in the Supply for a 3- or 4- [or 5- or 6-] player game and 8 in the Supply for a 2-player game.",
"name": "Great Hall",
"description": "+1 Card, +1 Action, 1 <VP>"
},
"Urchin": {
"extra": "When you play this, you draw a card and get +1 Action, then each other player discards down to 4 cards in hand. Players who already have 4 or fewer cards in hand do not do anything. While Urchin is in play, when you play another Attack card, before resolving it, you may trash the Urchin. If you do, you gain a Mercenary. The Mercenary comes from the Mercenary pile, which is not in the Supply, and is put into your discard pile. If there are no Mercenaries left you do not gain one. If you play the same Urchin twice in one turn, such as via Procession, that does not let you trash it for a Mercenary. If you play two different Urchins however, playing the second one will let you trash the first one.",
"name": "Urchin",
"description": "+1 Card\n+1 Action\nEach other player discards down to 4 cards in hand.\n______________________\nWhen you play another Attack card with this in play, you may trash this.\nIf you do, gain a Mercenary from the Mercenary pile."
},
"Gardens": {
"extra": "This Kingdom card is a Victory card, not an Action card. It does nothing until the end of the game, when it is worth 1 victory point per 10 cards in your Deck (counting all of your cards - your Discard pile and hand are part of your Deck at that point). Round down; if you have 39 cards, Gardens is worth 3 victory points. During set-up, place 12 Gardens in the Supply for a 3+ player game and 8 in the Supply for a 2 player game.",
"name": "Gardens",
"description": "Variable, Worth 1 <VP> for every 10 cards in your deck (rounded down)."
},
"Counting House": {
"extra": "This card lets you look through your discard pile, something you normally are not allowed to do. You only get to look through your discard pile when you play this. You do not have to show the other players your entire discard pile, just the Coppers you take out. After you take out the Coppers, you can leave the cards in your discard pile in any order.",
"name": "Counting House",
"description": "Look through your discard pile, reveal any number of Copper cards from it, and put them into your hand."
},
"Embargo": {
"extra": "You can pick any pile in the supply. If multiple Embargo cards are used to put Embargo tokens on the same pile, a player gains a Curse card for every Embargo token when they buy a card from that pile. You do not gain a Curse card if you gain a card from an Embargoed pile without buying it (for example, if you gain a card with Smugglers). If you Throne Room an Embargo, you place two Embargo tokens and they do not have to go on the same Supply pile. If you run out of Embargo tokens, use a suitable replacement to mark Embargoed piles. If there are no Curses left, Embargo tokens do nothing.",
"name": "Embargo",
"description": "+2 Coins, Trash this card. Put an Embargo token on top of a Supply pile. - When a player buys a card, he gains a Curse card per Embargo token on that pile."
},
"Stonemason": {
"extra": "When you play this, trash a card from your hand, and gain two cards, each costing less than the card you trashed. Trashing a card is not optional. If you do not have any cards left in your hand to trash, you do not gain any cards. The two cards you gain can be different or the same. For example you could trash a Gold to gain a Duchy and a Silver. Gaining cards is not optional if you trashed a card. The gained cards come from the Supply and are put into your discard pile; if there are no cheaper cards in the Supply (for example if you trash a Copper), you do not gain any. If there is only one card in the Supply cheaper than the trashed card, you gain that one. The cards you gain are gained one at a time; this may matter with cards that do something when gained, such as Inn from Dominion: Hinterlands. When you buy this, you may choose to overpay for it. If you do, you gain two Action cards each costing exactly the amount you overpaid. The Action cards can be different or the same. For example, if you buy Stonemason for 6 Coins, you could gain two Heralds. The Action cards come from the Supply and are put into your discard pile. If there are no cards with the appropriate cost in the Supply, you do not gain one. Overpaying with a Potion (from Dominion: Alchemy) will let you gain cards with Potion in the cost. Cards with multiple types, one of which is Action (such as Great Hall from Dominion: Intrigue), are Action cards. If you choose not to overpay, you will not gain any cards from that ability; it is not possible to use it to gain Action cards costing 0 Coins.",
"name": "Stonemason",
"description": "Trash a card from your hand. Gain 2 cards each costing less than it.\n______________________\nWhen you buy this, you may overpay for it. If you do, gain 2 Action cards each costing the amount you overpaid."
},
"Legionary": {
"extra": "Players wishing to respond to the Attack (e.g. with Moat) must do so before you choose whether or not to reveal a Gold.",
"name": "Legionary",
"description": "+3 Coin\nYou may reveal a Gold from your hand. If you do, each other player discards down to 2 cards in hand, then draws a card."
},
"Wolf Den": {
"extra": "Having no copies of a card, or two or more copies of a card, confers no penalty.\nScores can go negative.",
"name": "Wolf Den",
"description": "When scoring, -3<VP> per card you have exactly one copy of."
},
"Keep": {
"extra": "This applies to each different Treasure being used in the game.\nIf all players have the same number of copies of a Treasure, they all get the 5<VP> for that Treasure.",
"name": "Keep",
"description": "When scoring, 5<VP> per differently named Treasure you have, that you have more copies of than each other player, or tied for most."
},
"Menagerie": {
"extra": "If there are any two or more cards in your hand with the same name, you only draw one card; if there are no matches, you draw three cards. Only the card names matter for this; Copper and Silver are different cards for example, despite both being Treasures. If you have no cards in hand at all after playing Menagerie, then you have no matching cards, and so get +3 Cards.",
"name": "Menagerie",
"description": "+1 Action\nReveal your hand.\nIf there are no duplicate cards in it, +3 Cards.\nOtherwise, +1 Card."
},
"Villa": {
"extra": "If you gain this during your Action phase, such as with Engineer, you will put the Villa into your hand and get +1 Action (letting you, for example, play the Villa). If you gain this during your Buy phase (such as by buying it), you will put the Villa into your hand, get +1 Action, and return to your Action phase. This will let you play more Action cards (such as the Villa); when you are done with that you will return to your Buy phase, from the beginning - you can play more Treasures (and Arena will trigger again). If you buy Villa, that uses up your default Buy for the turn, however playing Villa will give you +1 Buy and so let you buy another card in your second Buy phase. If you gain this during another player's turn, you will put the Villa into your hand and get +1 Action, but will have no way to use that Action, since it is not your turn. It is possible to return to your Action phase multiple times in a turn via buying multiple Villas. Returning to your Action phase does not cause \"start of turn\" abilities to repeat; they only happen at the start of your turn.",
"name": "Villa",
"description": "+2 Actions\n +1 Buy\n +1 Coin\n______________________\nWhen you gain this, put it into your hand, +1 Action, and if it's your Buy phase return to your Action phase."
},
"Conquest": {
"extra": "This counts the two Silvers it gives you (provided that there were Silvers left to gain).\nFor example, with 12 Coin and 2 Buys and having gained no Silvers earlier in the turn, you could buy Conquest twice, getting two Silvers, then +2<VP>, then two more Silvers, then +4<VP>.",
"name": "Conquest",
"description": "Gain 2 Silvers.\n+1<VP> per Silver you've gained this turn."
},
"Golem": {
"extra": "Reveal cards from the top of your deck, one at a time, until you have revealed two Action cards that are not Golem. If you run out of cards before revealing two non-Golem Actions, shuffle your discard pile (but not the revealed cards) and continue. If you run out and have no discard pile left either, you just get the Actions you found. Discard all of the revealed cards except for the non-Golem Actions you found. If you did not find any, you're done. If you found one, play it. If you found two, play them both, in either order. You cannot choose not to play one of them. These Action cards are not in your hand and so are unaffected by things that look for cards in your hand. For example, if one of them is Throne Room (from Dominion), you cannot use it on the other one.",
"name": "Golem",
"description": "Reveal cards from your deck until you reveal 2 Action cards other than Golem Cards.\nDiscard the other cards, then play the Action cards in either order."
},
"Inheritance": {
"extra": "You can only buy this once per game. When you do, set aside a non-Victory Action card from the Supply that costs up to 4 Coins, and put your Estate token on it (the one depicting a house). This is not gaining a card, and does not count for things that care about gaining, such as Treasure Hunter; however at the end of the game, include the card in your deck when scoring. For the rest of the game, all of your Estates have the abilities and types of the set aside card. For example if you set aside a Port, then your Estates are Action - Victory cards, that can be played for +1 Card +2 Actions. This also changes Estates you buy or otherwise gain during the game; if you used Inheritance on a Port and then later bought an Estate, that Estate would come with a Port, just as buying a Port gains you a Port. This only affects your own Estates, not Estates of other players. An Estate is yours if either it started in your deck, or you gained it or bought it, or you were passed it with Masquerade (from Intrigue). An Estate stops being yours if you trash it, return it to the Supply, pass it with Masquerade, or are stopped from gaining it due to Possession (from Alchemy) or Trader (from Hinterlands). There are no limits on the set aside card other than being a non-Victory Action from the Supply costing up to 4 Coins; it may be a Duration card, a Reaction card, and so on. It does not have to continue costing up to 4 Coins, it only has to cost up to 4 Coins when set aside. Your Estates are still worth 1 Victory Point when scoring at the end of the game. Your Estates only copy abilities and types; they do not copy cost, name, or what pile they are from (thus they don't trigger tokens like +1 Action on the copied pile, and are not the Bane for Young Witch from Cornucopia even if the copied pile is the Bane). Starting Estates come from the Estates pile.",
"name": "Inheritance",
"description": "Once per game: Set aside a non-Victory Action card from the Supply costing up to 4 Coin. Move your Estate token to it (your Estates gain the abilities and types of that card)."
},
"Vineyard": {
"extra": "This Kingdom card is a Victory card, not an Action card. It does nothing until the end of the game, when it is worth 1 victory point per 3 Action cards in your Deck (counting all of your cards - your Discard pile and hand are part of your Deck at that point). Round down; if you have 11 Action cards, Vineyard is worth 3 victory points. During set-up, put all 12 Vineyards in the Supply for a game with 3 or more players, but only 8 in the Supply for a 2-player game. Cards with multiple types, one of which is Action, are Actions and so are counted by Vineyard.",
"name": "Vineyard",
"description": "Worth 1 <VP> for every 3 Action cards in your deck (rounded down)."
},
"Armory": {
"extra": "The card you gain comes from the Supply and is put on top of your deck.",
"name": "Armory",
"description": "Gain a card costing up to 4 Coins, putting it on top of your deck."
},
"Moat": {
"extra": "An attack card is one that says \"Attack\" on the bottom line (usually, \"Action - Attack\"). When someone else plays an Attack card, you may reveal the Moat by showing it from your hand to the other players and then returning it to your hand (before the Attack card resolves). You are then unaffected by that Attack card. You won't gain a Curse because of a Witch or reveal a card to a Spy, and so on. Moat doesn't stop anything an Attack does to other players or to the player of the Attack; for example, if everyone else Moats a Witch, the person who played it still gets to draw 2 cards. Moat can also be played on your turn as an Action to draw 2 cards.",
"name": "Moat",
"description": "+2 Cards, When another player plays an Attack card, you may reveal this from your hand. If you do, you are unaffected by that Attack."
},
"Marauder": {
"extra": "First you gain a Spoils. It comes from the Spoils pile, which is not part of the Supply, and is put into your discard pile. If there are no Spoils cards left, you do not get one. Then each other player gains a Ruins. These come from the Ruins pile in the Supply, and are put into discard piles. Go in turn order starting to your left; each player takes the top Ruins, revealing the next one each time. If the Ruins pile runs out, players stop gaining them at that point.",
"name": "Marauder",
"description": "Gain a Spoils from the Spoils pile.\nEach other player gains a Ruins."
},
"Catapult": {
"extra": "If the card you trash is a treasure, each other player discards down to 3 cards in hand; if the card you trash costs 3 Coins or more, each other player gains a Curse; if it is both (e.g. Silver), both things happen; if it is neither, neither thing happens. If you have no cards in hand left to trash, neither thing happens.",
"name": "Catapult",
"description": "+1 Coin\nTrash a card from your hand. If it costs 3 Coins or more, each other player gains a Curse. If it's a Treasure, each other player discards down to 3 cards in hand."
},
"Moneylender": {
"extra": "If you do not have a Copper in your hand to trash, you don't get the +3 Coins to spend in the Buy phase.",
"name": "Moneylender",
"description": "Trash a Copper from your hand. If you do, +3 Coins."
},
"Bag of Gold": {
"extra": "The Gold you gain comes from the Supply and is put on top of your deck. If your deck has no cards in it, it becomes the only card in your deck. If there are no Golds left in the Supply, you do not gain one. This is a Prize; see the Additional Rules.",
"name": "Bag of Gold",
"description": "+1 Action\nGain a Gold, putting it on top of your deck.\n(This is not in the Supply.)"
},
"Vassal": {
"extra": "If the card is an Action card, you can play it, but do not have to.\nIf you do play it, you move it into your play area and follow its instructions; this does not use up one of your Action plays for the turn.",
"name": "Vassal",
"description": "+2 Coin\nDiscard the top card of your deck. If it's an Action card, you may play it"
},
"Forum": {
"extra": "For example, with 13 Coin and only one Buy, you could buy a Forum, getting +1 Buy, then buy a Province.",
"name": "Forum",
"description": "+3 Cards\n +1 Action\nDiscard 2 cards.\n______________________\nWhen you buy this, +1 Buy."
},
"Tunnel": {
"extra": "This is both a Victory card and a Reaction. At the end of the game, Tunnel is worth 2 victory points. Tunnel's Reaction ability functions when you discard it. You cannot simply choose to discard it; something has to let you or make you discard it. This ability functions whether you discard Tunnel on your own turn (such as due to Oasis) or on someone else's (such as due to Margrave). It functions if Tunnel is discarded from your hand (such as due to Oasis) or from your deck, or when set aside (such as due to Cartographer). If Tunnel would normally not necessarily be revealed (such as when discarding multiple cards to Cartographer), you have to reveal it to get the Gold. Revealing it is optional, even if Tunnel was already revealed for some other reason; you are not forced to gain a Gold. This ability does not function if cards are put into your discard pile without being discarded, such as when you buy a card, when you gain a card directly (such as with Border Village), when your deck is put into your discard pile, such as with Chancellor from Dominion, or with Possession from Dominion: Alchemy, when trashed cards are returned to you at end of turn. It also does not function during Clean-up, when you normally discard all of your played and unplayed cards. The key thing to look for is a card actually telling you to \"discard\" cards. The Gold you gain comes from the Supply and is put into your discard pile; if there is no Gold left in the Supply, you do not gain one.",
"name": "Tunnel",
"description": "2 <VP>\n______________________\nWhen you discard this other than during a Clean-up phase, you may reveal it. If you do, gain a Gold."
},
"Alchemist": {
"extra": "When you play this, you draw two cards and may play an additional Action card this turn. In the Clean-up Phase, when you discard this, if you have at least one Potion card in play, you may put Alchemist on top of your deck. This is optional and happens before drawing your new hand. If you have no cards in your deck when you do this, Alchemist becomes the only card in your deck. If you have multiple Alchemists and a Potion, you can put any or all of the Alchemists on top of your deck. You don't have to have used the Potion to buy anything, you only need to have played it.",
"name": "Alchemist",
"description": "+2 Cards\n+1 Action\nWhen you discard this from play, you may put this on top of your deck if you have a Potion in play."
},
"Grand Market": {
"extra": "You do not have to play all of the Treasures in your hand in your Buy phase. Coppers in your hand do not stop you from buying Grand Market - only Coppers in play do. Coppers that were in play earlier in the turn but are not anymore also don't stop you; if you have 11 Coppers in play and 2 Buys, you could buy a Mint, trash all of your played Treasures, and then buy a Grand Market. You can gain Grand Market other ways - for example with Expand - whether or not you have Coppers in play. Treasures other than Copper do not prevent you from buying Grand Market, even if they are worth 1 coin (such as Loan).",
"name": "Grand Market",
"description": "+1 Card\n+1 Action\n+1 Buy\n+2 Coins\n______________________\nYou can't buy this if you have any Copper in play."
},
"Horse Traders": {
"extra": "When you play this, you get +1 Buy and +3 coins, and discard 2 cards from your hand. If you do not have enough cards to discard, just discard what you can; you still get the +1 Buy and +3 coins. When another player plays an Attack card, before that card does anything, you may reveal this from your hand. If you do, you set it aside, and at the start of your next turn, you return it to your hand and draw a card. While it is set aside, it is not in play or in your hand, and cannot be further revealed to Attacks. Therefore it will only work on one Attack per round of turns. You can reveal it for an Attack and still play it on your next turn. You can reveal multiple Horse Traders to a single Attack. For example, if another player plays Followers, you could reveal and set aside two Horse Traders from your hand, then gain a Curse but discard no cards, as you would only have three cards in hand at that point. Then on your next turn you would pick up the two Horse Traders and also draw two cards.",
"name": "Horse Traders",
"description": "+1 Buy\n+3 Coin\nDiscard 2 Cards\nWhen another player plays an Attack card, you may set this aside from your hand. If you do, then at the start of your next turn, +1 Card and return this to your hand."
},
"Soldier": {
"extra": "This gives + 2 Coins, and then an additional + 1 Coin per other Attack card you have in play. Then each other player with 4 or more cards in hand discards a card. So for example if you play Soldier, then another Soldier, and have an opponent with 5 cards in hand, you will get + 2 Coins and that opponent will discard a card, then you will get + 2 Coins and an extra + 1 Coin while that opponent discards again. Soldier only cares about Attack cards in play, not Attack cards played that turn; for example using Disciple on Soldier will not produce an extra + 1 Coin, because there is no other Attack card in play. Duration Attacks played on the previous turn are Attack cards in play and so do count for Soldier.",
"name": "Soldier",
"description": "+2 Coins\n+1 Coin per other Attack you have in play. Each other player with 4 or more cards in hand discards a card.\n______________________\nWhen you discard this from play, you may exchange it for a Fugitive.\n(This is not in the Supply.)"
},
"Storeroom": {
"extra": "Discard any number of cards from your hand, and draw as many cards as you discarded. Then, discard any number of cards - which could include cards you just drew - and you get +1 Coins per card you discarded that time.",
"name": "Storeroom",
"description": "+ 1 Buy\nDiscard any number of cards.\n+1 Card per card discarded.\nDiscard any number of cards.\n+ 1 Coins per card discarded the second time."
},
"Raid": {
"extra": "This Event is like an Attack, but buying it is not playing an Attack, and so cannot be responded to with cards like Moat and Caravan Guard. When you buy this, you gain a Silver for each Silver you have in play; for example, with four Silvers in play, you would gain four Silvers. The Silvers go to your discard pile; if there aren't enough left, just take what is left. Then each other player puts his -1 Card token on top of his deck, which will cause those players to draw one less card the next time they draw cards; see the Tokens section.",
"name": "Raid",
"description": "Gain a Silver per Silver you have in play. Each other player puts his -1 Card token on his deck."
},
"Walled Village": {
"extra": "When you play this, you draw a card and can play two more Actions this turn. At the start of your Clean-up phase, before discarding anything and before drawing for next turn, if you have a Walled Village in play and no more than two Action cards in play (counting the Walled Village), you may put the Walled Village on top of your deck. If the only cards you have in play are two Walled Villages, you may put either or both of them on top of your deck. Walled Village has to be in play to be put on top of your deck. Walled Village only checks how many Action cards are in play when its ability resolves; Action cards you played earlier this turn but which are no longer in play (such as Feast from Dominion) are not counted, while Action cards still in play from previous turns (duration cards from Dominion: Seaside) are counted, as are Action cards that are in play now but may leave play after resolving Walled Village (such as Treasury from Dominion: Seaside).",
"name": "Walled Village",
"description": "+1 Card\n+2 Actions\nAt the start of Clean-up, if you have this and no more than one other Action card in play, you may put this on top of your deck."
},
"Prince": {
"extra": "Prince has you play the same cheap action every turn for the rest of the game. The turn you play Prince, you set it aside with an Action from your hand costing 4 coins or less; then every turn after that you play the Action at the start of the turn, and then set it aside again when you discard it from play. If you don't discard the Action then you stop playing it with Prince; Prince at that point is just set aside doing nothing for the rest of the game. That won't normally happen but will happen for example if the Action is a Feast or Mining Village and you trashed it, or if it's a Duration card and so it stayed in play, or if it's a Madman and was returned to its pile, or if it's an Island and was set aside, or if it's a card you put back on your deck with Scheme. The set aside Action technically goes back and forth from being in play to being set aside each turn, but in practice it's easier to leave it sitting on the Prince and just announce resolving it each turn.",
"name": "Prince",
"description": "You may set this aside. If you do, set aside an Action card from your hand costing up to 4 coins. At the start of each of your turns, play that Action, setting it aside again when you discard it from play. (Stop playing it if you fail to set it aside on a turn you play it)."
},
"Mystic": {
"extra": "You get +1 Action and +2 Coins. Then name a card (\"Copper,\" for example - not \"Treasure\") and reveal the top card of your deck; if you named the same card you revealed, put the revealed card into your hand. If you do not name the right card, put the revealed card back on top. You do not need to name a card being used this game. Names need to match exactly for you to get the card; for example Sir Destry and Sir Martin do not match. You do not need to name a card available in the Supply.",
"name": "Mystic",
"description": "+1 Action\n+ 2 Coins\nName a card.\nReveal the top card of your deck.\nIf it\u2019s the named card, put it into your hand."
},
"Swamp Hag": {
"extra": "you will get + 3 Coins at the start of your next turn; and until then, other players will gain a Curse whenever they buy a Card. Players who buy multiple cards will gain a Curse per card bought; players who do not buy any cards will not get any Curses. This is cumulative; if you play two Swamp Hags, and the player after you plays one, then the player after that will get three Curses with any card bought. This does not affect cards gained other ways, only bought cards. Buying Events is not buying cards and so does not trigger this. If you play Swamp Hag and then take an extra turn immediately, such as with Mission or Outpost (from Seaside), you will get + 3 Coins at the start of that turn and discard Swamp Hag that turn, and other players will never be affected by it. If you want to use a Reaction card like Moat against Swamp Hag, you have to use it right when Swamp Hag is played.",
"name": "Swamp Hag",
"description": "Until your next turn, when any other player buys a card, he gains a Curse.\nAt the start of your next turn:\n+3 Coins"
},
"Treasure Map": {
"extra": "You can play this without another Treasure Map in your hand; if you do, you trash this and gain nothing. You have to actually trash two copies of Treasure Map to gain the Golds; so for example if you Throne Room a Treasure Map, with two more Treasure Maps in hand, then the first time Treasure Map resolves you trash it and another one and gain 4 Golds, and the second time it resolves you trash your other Treasure Map but gain nothing (since you didn't actually trash the played Treasure Map that time). If there aren't enough Gold cards left, just gain what you can. The gained Golds go on top of your Deck. If your deck was empty they become the only cards in it.",
"name": "Treasure Map",
"description": "Trash this and another copy of Treasure Map from your hand. If you do trash two Treasure Maps, gain 4 Gold cards, putting them on top of your deck."
},
"Laboratory": {
"extra": "Draw two cards. You may play another Action card during your Action phase.",
"name": "Laboratory",
"description": "+2 Cards, +1 Action."
},
"Diplomat": {
"extra": "When playing this, you get +2 Cards, then count your cards in hand, and if you have 5 cards or fewer, you get +2 Actions.<br></br><br></br>So, for example if you play this from a hand of 5 cards, you will put it into play, going down to 4 cards, then draw 2 cards, going up to 6 cards, and that is more than 5 cards so you would not get the +2 Actions.<br></br><br></br>Diplomat can also be used when another player plays an Attack card, if you have at least 5 cards in hand.<br></br><br></br>Before the Attack card does anything, you can reveal a Diplomat from your hand; if you do, you draw 2 cards, then discard 3 cards (which can include the Diplomat).<br></br><br></br>If you still have at least 5 cards in hand after doing that (such as due to Council Rooms), you can reveal Diplomat again and do it again.<br></br><br></br>You reveal Reactions one at a time; you cannot reveal two Diplomats simultaneously.<br></br><br></br>You can reveal a Moat from your hand (to be unaffected by an Attack) either before or after revealing and resolving a Diplomat (even if the Moat was not in your hand until after resolving Diplomat).",
"name": "Diplomat",
"description": "+ 2 Cards\n\nIf you have 5 or fewer cards in hand (after drawing), +2 Actions.\n\u2013\nWhen another player plays an Attack card, you may first reveal this from a hand of 5 or more cards, to draw 2 cards then discard 3."
},
"Rebuild": {
"extra": "You can name any card, whether or not it is being used this game or is a Victory card. Then reveal cards from your deck until you reveal a Victory card that is not what you named. If you run out of cards, shuffle your discard pile and continue, without shuffling in the revealed cards. If you run out of cards with no cards left in your discard pile, stop there, discard everything, and nothing more happens. If you did find a Victory card that was not what you named, you discard the other revealed cards, trash the Victory card, and gain a Victory card costing up to 3 Coins more than the trashed card. The card you gain comes from the Supply and is put into your discard pile.",
"name": "Rebuild",
"description": "+ 1 Action\nName a card. Reveal cards from the top of your deck until you reveal a Victory card that is not the named card. Discard the other cards. Trash the Victory card and gain a Victory card costing up to 3 Coins more than it."
},
"Squire": {
"extra": "When you play this, you get +1 Coins, and your choice of either +2 Actions, +2 Buys, or gaining a Silver. The Silver comes from the Supply and is put into your discard pile. If Squire is trashed somehow, you gain an Attack card; the Attack card comes from the Supply and is put into your discard pile. You can gain any Attack card available in the Supply, but if no Attack card is available, you do not gain one.",
"name": "Squire",
"description": "+1 Coin\nChoose one: +2 Actions; or +2 Buys; or gain a Silver.\n______________________\nWhen you trash this, gain an Action card."
},
"Magpie": {
"extra": "If the top card of your deck is a Treasure, it goes into your hand. If the card is not a Treasure, leave it on top of your deck. If the card is an Action card or Victory card, you gain a Magpie; once the Magpie pile is empty, revealing an Action or Victory card will not get you anything. If you reveal a Harem (from Intrigue), you both put it into your hand and gain a Magpie, since it is both a Treasure and a Victory card.",
"name": "Magpie",
"description": "+1 Card\n+1 Action\nReveal the top card of your deck. If it's a Treasure, put it into your hand. If it's an Action or Victory card, gain a Magpie."
},
"Temple": {
"extra": "You get +1<VP>, trash 1, 2, or 3 cards with different names from your hand (for example a Copper and an Estate, but not two Coppers), then add 1<VP> (from the supply) to the Temple pile. Gaining a Temple (whether buying it or otherwise) gives you all the <VP> that has accumulated on the pile. The pile gets <VP> even if it is empty; this only matters if there is a way to return a Temple to the pile (like Ambassador from Dominion: Seaside) or a way to gain one from the trash (like Graverobber from Dominion: Dark Ages).",
"name": "Temple",
"description": "+1<VP>\nTrash from 1 to 3 differently named cards from your hand. Add 1<VP> to the Temple Supply pile.\n______________________\nWhen you gain this, take the <VP> from the Temple Supply pile."
},
"Lookout": {
"extra": "If you do not have 3 cards to look at from the top of your deck, look at as many as you can and then shuffle your discard pile to look at the remaining cards. You should look at all 3 cards before deciding which to trash, which card to discard, and which card to put back on top of your deck. If the 3 cards you look at are the last 3 cards in your deck, the card you put back on top of your deck will be the only card left in your deck. If you have less than 3 cards to look at, even after shuffling, then you must follow the instructions on the card in order. If you only have one card to look at, you must trash it. If you have 2 cards to look at, you must trash one and discard one.",
"name": "Lookout",
"description": "+1 Action, Look at the top 3 cards of your deck. Trash one of them. Discard one of them. Put the other one on top of your deck."
},
"Treasure Trove": {
"extra": "This is a Treasure worth 2 Coins. You play it in your Buy phase, like other Treasures. When you play it, you gain a Copper and a Gold from the Supply, putting them into your discard pile. If one of those piles is empty, you still gain the other card.",
"name": "Treasure Trove",
"description": "2 Coins\nWhen you play this, gain a Gold and a Copper."
},
"Journeyman": {
"extra": "This draws you three cards that are not a particular card. First name a card. It does not have to be a card being used this game. Then reveal cards from the top of your deck until you have revealed three cards that are not the named card. If you run out of cards without finding three, shuffle your discard pile into your deck and continue. If you still cannot find three, stop. Put the cards you found that were not the named card into your hand and discard the rest.",
"name": "Journeyman",
"description": "Name a card. Reveal cards from the top of your deck until you reveal 3 cards that are not the named card. Put those cards into your hand and discard the rest."
},
"Rogue": {
"extra": "If there is a card in the trash costing from 3 Coins to 6 Coins, you have to gain one of them; it is not optional. You can look through the trash at any time. The other players get to see what card you took. The gained card goes into your discard pile. Cards with Potion in the cost (from Alchemy) do not cost from 3 Coins to 6 Coins. If there was no card in the trash costing from 3 Coins to 6 Coins, you instead have each other player reveal the top 2 cards of his deck, trash one of them of his choice that costs from 3 Coins to 6 Coins (if possible), and discard the rest. Go in turn order, starting with the player to your left.",
"name": "Rogue",
"description": "+ 2 Coins\nIf there are any cards in the trash costing from 3 Coins to 6 Coins, gain one of them. Otherwise, each other player reveals the top 2 cards of his deck, trashes one of them costing from 3 Coins to 6 Coins, and discards the rest."
},
"Wishing Well": {
"extra": "First you draw your card. Then name a card (\"Copper,\" for example - not \"Treasure\") and reveal the top card of your deck; if you named the same card you revealed, put the revealed card in your hand. If you do not name the right card, you put the revealed card back on top.",
"name": "Wishing Well",
"description": "+1 Card, +1 Action, Name a card, then reveal the top card of your deck. If it is the named card, put it in your hand."
},
"Princess": {
"extra": "This makes all cards cheaper (to a minimum of 0 coins) as long as it is in play. When it leaves play, it stops making cards cheaper. This applies to cards everywhere - cards in the Supply, cards in hand, cards in decks. For example if you played Princess, then Remake, trashing a Copper, you could gain a Silver, as Silver would cost 1 coin while Copper would still cost 0 coins. Using Throne Room (from Dominion) on Princess will not make cards cost less, as there is still only one copy of Princess in play. This is a Prize; see the Additional Rules.",
"name": "Princess",
"description": "+1 Buy\nWhile this is in play, cards cost 2 Coins less, but not less than 0 Coins.\n(This is not in the Supply.)"
},
"Expand": {
"extra": "This is not in your hand after you play it, so you cannot trash it as the card trashed. The card you gain can cost up to 3 coins more than the trashed card, but it can also cost any smaller amount, even less than the cost of the trashed card. You can trash a card and gain a copy of the same card. If you have no card in hand to trash, you do not gain a card. The card you gain comes from the Supply and is put into your discard pile.",
"name": "Expand",
"description": "Trash a card from your hand. Gain a card costing up to 3 Coins more than the trashed card."
},
"Artificer": {
"extra": "First you get +1 Card, +1 Action, and + Coin . Then you discard any number of cards. You may choose not to discard any cards. Then you may gain a card costing exactly 1 per card discarded. For example if you discarded two cards; you may gain a card costing 2 ; if you discard no cards, you may gain a card costing 0. The gained card comes from the Supply and is put on top of your deck. You may choose not to gain a card, even if you discard cards.",
"name": "Artificer",
"description": "+1 Card\n+1 Action\n+1 Coin\nDiscard any number of cards. You may gain a card costing exactly 1 Coin per card discarded, putting it on top of your deck."
},
"Madman": {
"extra": "This card is not in the Supply; it can only be obtained via Hermit. When you play it, you get +2 Actions, return it to the Madman pile if you can (this is not optional), and if you did return it, you draw a card per card in your hand. For example if you had three cards in hand after playing Madman, you would draw three cards. Normally, nothing will prevent you from returning Madman to the Madman pile, but you may fail to due to playing Madman twice via Procession, Throne Room (from Dominion), or King's Court (from Prosperity). So, for example, if you Procession a Madman, you will get +2 Actions, return Madman to the Madman pile, draw a card per card in your hand, get another +2 Actions, fail to return Madman and so not draw cards the second time, fail to trash Madman, and then gain an Action card costing exactly 1 Coin if you can.",
"name": "Madman",
"description": "+2 Actions\nReturn this to the Madman pile. If you do, +1 Card per card in your hand.\n(This card is not in the supply.)"
},
"Pearl Diver": {
"extra": "Draw a card before you look at the bottom card of your deck. If placing the card on top of your deck, be sure not to look at the next card on the bottom of your deck while moving the card. If you have no cards left when it's time to look at the bottom, you shuffle first.",
"name": "Pearl Diver",
"description": "+1 Card, +1 Action, Look at the bottom card of your deck. You may put it on top."
},
"Knights": {
"extra": "The ability Knights have in common is that each other player reveals the top 2 cards of his deck, trashes one of them that he chooses that costs from 3 Coins to 6 Coins, and discards the rest; then, if a Knight was trashed, you trash the Knight you played that caused this trashing. Resolve this ability in turn order, starting with the player to your left. Cards with Potion in the cost (from Alchemy) do not cost from 3 Coins to 6 Coins. The player losing a card only gets a choice if both cards revealed cost from 3 Coins to 6 Coins; if they both do and one is a Knight but the player picks the other card, that will not cause the played Knight to be trashed. When Sir Martin is the top card of the pile, it can be gained with an Armory and so on. If Sir Vander is trashed, you gain a Gold; this happens whether it is trashed on your turn or someone else's. The player who had Sir Vander is the one who gains the Gold, regardless of who played the card that trashed it. The Gold from Sir Vander, and the card gained for Dame Natalie, comes from the Supply and is put into your discard pile. When playing Dame Anna, you may choose to trash zero, one, or two cards from your hand. Dame Josephine is also a Victory card, worth 2 Victory at the end of the game. The Knight pile is not a Victory pile though, and does not get a counter for Trade Route (from Prosperity) even if Dame Josephine starts on top. If you choose to use the Knights with Black Market (a promotional card), put a Knight directly into the Black Market deck, rather than using the randomizer card. Sir Martin only costs 4 Coins, though the other Knights all cost 5 Coins.",
"name": "Knights",
"description": "This is a pile in which each card is different. There is the same basic ability on each card, but also another ability unique to that card in the pile, and they all have different names. Shuffle the Knights pile before playing with it, keeping it face down except for the top one, which is the only card that can be gained from the pile. See Additional Rules for Dark Ages and Preparation. Follow the rules on Knights in order from top to bottom; Sir Michael causes players to discard before it trashes cards."
},
"Raze": {
"extra": "If you trash a card costing 0 Coins with this, you do not get any cards. If you trash a card costing 1 Coin or more, you look at a number of cards from the top of your deck equal to the cost in Coins of the trashed card, take one into your hand, and discard the rest. For example if you trash an Estate, you look at the top two cards of your deck, put one into your hand, and discard the other one. You can trash the Raze itself; normally it costs 2 Coins, so you would look at two cards. Costs may be affected by cards like Bridge Troll. Raze is unaffected by the -1 Card token; if it is on top of your deck, replace it after resolving Raze.",
"name": "Raze",
"description": "+1 Action\nTrash this or a card from your hand. Look at the number of cards from the top of your deck equal to the cost in Coins of the trashed card. Put one into your hand and discard the rest."
},
"Castles": {
"extra": "Humble Castle and King's Castle count themselves. Small Castle gains you the top Castle, whichever one that is. Haunted Castle works whether you buy it or gain it some other way, provided that it is your turn. You can pick either option on Sprawling Castle regardless of how many Duchies and Estates are left in the piles. Grand Castle counts both Victory cards in play - such as an Opulent Castle - and Victory cards in your hand.",
"name": "Castles",
"description": "Sort the Castle pile by cost, putting the more expensive Castles on the bottom. For a 2-player game, use only one of each Castle. Only the top card of the pile can be gained or bought."
},
"Lurker": {
"extra": "The card trashed or gained has to be an Action card, but can have other types too. For example Lurker can trash Nobles from the Supply and can gain Nobles from the trash.<br></br><br></br>When gaining a card with Lurker, put the gained card into your discard pile.<br></br><br></br>When you trash a card from the supply that has a special effect when trashed, the on-trash effect activates. However, trashing from the supply does not allow you to react with Market Square.",
"name": "Lurker",
"description": "+1 Action\n\nChoose one: Trash an Action card from the Supply; or gain an Action card from the trash."
},
"Spice Merchant": {
"extra": "You may trash a Treasure card from your hand. This is optional. If you did trash a Treasure card, you choose either to get +2 Cards and +1 Action, or +2 coins and +1 Buy.",
"name": "Spice Merchant",
"description": "You may trash a Treasure from your hand. If you do, choose one:\n+2 Cards and +1 Action;\nor +2 Coins and +1 Buy."
},
"Hovel": {
"extra": "This is a Shelter; see Preparation. It is never in the Supply. When you buy a Victory card, if Hovel is in your hand, you may trash the Hovel. A card with multiple types, one of which is Victory, is a Victory card. You do not get anything for trashing Hovel; you just get to get rid of it.",
"name": "Hovel",
"description": "When you buy a Victory card, you may trash this from your hand."
},
"Baths": {
"extra": "Any way you gain a card will stop you from getting <VP> from this that turn.",
"name": "Baths",
"description": "When you end your turn without having gained a card, take 2<VP> from here.\n______________________\nSetup: Put 6<VP> here per player."
},
"Market": {
"extra": "Draw a card. You may play another Action card during your Actions phase. During your Buy phase, you may buy an additional card from the supply, and add one coin to the total value of the Treasure cards played.",
"name": "Market",
"description": "+1 Card, +1 Action, +1 Buy, +1 Coin."
},
"City": {
"extra": "You draw a card and can play two more Actions no matter what. If there is just one empty pile in the Supply, you also draw another card. If there are two or more empty piles, you both draw another card, and get 1 coin to spend and an extra Buy to use in the Buy phase. There are no further bonuses if three or more piles are empty. This only checks how many piles are empty when you play it; if piles become empty later in the turn, you do not go back and get the bonuses. If a pile stops being empty due to cards being returned to it, such as with the Seaside card Ambassador, Cities played after that will not count that pile as empty. An empty trash pile does not count for this.",
"name": "City",
"description": "+1 Card\n+2 Actions\nIf there are one or more empty Supply piles, +1 Card. If there are two or more, +1 Coin and +1 Buy."
},
"Lighthouse": {
"extra": "You get an action and a coin this turn, but only a coin next turn. Attack cards played by other players don't affect you, even if you want them to. You could reveal Secret Chamber in order to draw 2 cards and put 2 cards from your hand back on top of your deck when an Attack card is played, and you will still not suffer from the Attack card. You do still gain the benefits (like +Cards) of Attack cards you play on your turn. Lighthouse is discarded during the Cleanup phase of your next turn.",
"name": "Lighthouse",
"description": "+1 Action, Now and at the start of your next turn: +1 Coin. - While this is in play, when another player plays an Attack card, it doesn't affect you."
},
"Tactician": {
"extra": "You wait until the start of your next turn to draw the 5 extra cards; you don't draw them at the end of the turn you played Tactician. Tactician stays out in front of you until the Clean-up phase of your next turn. Because you must discard at least one card in order to gain the bonuses from tactician, it is not possible to Throne Room a Tactician to get +10 cards, +2 Buys, and +2 Actions. You will have to discard all of your cards with the first Tactician and you will not have cards left in your hand to trigger the card drawing or the extra Buy or the extra Action when you play Tactician for the second time.",
"name": "Tactician",
"description": "Discard your hand. If you discarded any cards this way, then at the start of your next turn, +5 Cards, +1 Buy, and +1 Action."
},
"Rabble": {
"extra": "The other players shuffle if necessary to get 3 cards to reveal, and just reveal what they can if they still have fewer than 3 cards. They discard revealed Treasures and Actions and put the rest back on top in whatever order they want. Cards with more than one type match all of their types; for example if a player reveals Nobles from Intrigue, it is an Action - Victory card, which means it is an Action, so he discards it.",
"name": "Rabble",
"description": "+3 Cards\nEach other player reveals the top 3 cards of his deck, discards the revealed Actions and Treasures, and puts the rest back on top in any order he chooses."
},
"Capital": {
"extra": "When you discard this from play (normally, in the Clean-up phase of the turn you played it), you get 6 Debt, and then get an extra opportunity to pay off Debt with Coins, right then. You do not get the Debt if you did not discard it from play - for example, if you trash it due to Counterfeit (from Dominion: Dark Ages). You only get Debt per copy of Capital discarded; for example if you use Crown to play Capital twice, you still only get 6 Debt when you discard it from play.",
"name": "Capital",
"description": "6 Coins\n +1 Buy\n______________________\nWhen you discard this from play, take 6 Debt, and then you may pay off Debt."
},
"Nobles": {
"extra": "This is both an Action card and a Victory card. When you play it, you choose either to draw 3 cards or to get 2 more Actions to use; you cannot mix and match. At the end of the game, this is worth 2 VP. During set-up, place 12 Nobles in the Supply for a 3- or 4- [or 5- or 6-] player game and 8 in the Supply for a 2-player game.",
"name": "Nobles",
"description": "2 <VP>\nChoose one: +3 Cards, or +2 Actions."
},
"Gear": {
"extra": "You may set aside zero, one, or two cards from your hand. Put them face down under the Gear; you may look at them. They do not have to be cards you drew with Gear. If you set aside zero cards, Gear will be discarded the same turn you played it; if you set aside one or two cards, you put them into your hand at the start of your next turn, and Gear is discarded at the end of that turn.",
"name": "Gear",
"description": "+2 Cards\nSet aside up to 2 cards from your hand face down. At the start of your next turn, put them into your hand."
},
"Hireling": {
"extra": "After playing this, you draw an extra card at the start of each of your turns for the rest of the game. Hireling stays in play for the rest of the game to track this. If you use Disciple (or a similar card, like Throne Room) to play Hireling twice, you will draw two extra cards each turn, and Disciple will also stay in play for the rest of the game.",
"name": "Hireling",
"description": "At the start of each of your turns for the rest of the game:\n+1 Card\n(This stays in play.)"
},
"Salvager": {
"extra": "If you have at least one card in your hand, then you must trash one. If you don't have a card in hand left to trash, you get no coins, but still get the +1 Buy.",
"name": "Salvager",
"description": "+1 Buy, Trash a card from your hand. +Coins equal to its cost."
},
"Bureaucrat": {
"extra": "If you have no cards left in your Deck when you play this card, the Silver you gain will become the only card in your Deck. Similarly, if another players has no cards in his Deck, the Victory card he puts on top will become the only card in his Deck.",
"name": "Bureaucrat",
"description": "Gain a silver card; put it on top of your deck. Each other player reveals a Victory card from his hand and puts it on his deck (or reveals a hand with no Victory cards)."
},
"Charm": {
"extra": "These are cumulative, and each Charm does not have to gain a different card, just a different card from the one bought. For example if you play two Charms and buy a Forum, you could gain two Duchies. The card gained from Charm is gained before gaining the card you bought, which may matter when cards do things when gained. For example if you buy Villa and gain Rocks via Charm, you will first gain a Silver to your deck due to Rocks, then get +1 Action and return to your Action phase due to Villa. The costs have to be identical; for example if you play Charm and buy Overlord, you can gain City Quarter, which also costs 8 Debt, but not Fortune, which costs 8 Coin 8 Debt.",
"name": "Charm",
"description": "When you play this, choose one: +1 Buy and +2 Coin; or the next time you buy a card this turn, you may also gain a differently named card with the same cost."
},
"Silver": {
"extra": "40 cards per game.",
"name": "Silver",
"description": "Worth 2 Coins."
},
"Chapel": {
"extra": "You can't trash the Chapel itself since it isn't in your hand when you resolve it. You could trash a different Chapel card if that card were in your hand.",
"name": "Chapel",
"description": "Trash up to 4 cards from your hand."
},
"Pirate Ship": {
"extra": "When you first take this card, take a Pirate Ship player mat. If you use the Pirate Ship to trash treasures, a player with just one card left reveals that last card and then shuffles to get the other card to reveal (without including the revealed card); a player with no cards left shuffles to get both of them. A player who still doesn't have two cards to reveal after shuffling just reveals what he can. Each player trashes one Treasure card at most, of the attacker's choice from the two revealed cards. As long as you trashed at least one Treasure card in this way, place a Coin token on your Pirate Ship player mat. You can't get more than one Coin token each time you play Pirate Ship, no matter how many treasures it trashes. If you choose not to try to trash treasures from the other players, the Pirate Ship is worth one coin for each Coin token on your Pirate Ship player mat. The Coin tokens are cumulative, so after you have used your Pirate Ships to trash coins 3 times (and you trash at least one Treasure card each time), any Pirate Ship you play could be worth 3 coins. Pirate Ship is an Action- Attack and players can reveal Secret Chamber even if you choose to use Pirate Ship for the coin value. [You make your choice on how to use Pirate Ship after other players are done revealing Reactions.]",
"name": "Pirate Ship",
"description": "Choose one: Each other player reveals the top 2 cards of his deck, trashes a revealed Treasure that you choose, discards the rest, and if anyone trashed a Treasure you take a Coin token; or, +1 Coin per Coin token you've taken with Pirate Ships this game."
},
"Stash": {
"extra": "Stash is a Treasure that produces 2 coins when played, like Silver. Whenever you shuffle your deck, you can choose where in your deck each copy of Stash that you have goes. You can't look at the fronts of the other cards in your deck to see where to put it; Stash itself has a different card back, so that's how you'll know where it is. If you have multiple copies of Stash, you can clump them together or spread them out or whatever you want. Since Stash has a different card back, you will also know if it's in a player's hand, or set aside for someone's Haven (from Seaside), and so on.",
"name": "Stash",
"description": "Worth 2 Coins. When you shuffle, you may put this anywhere in your deck."
},
"Crossroads": {
"extra": "First reveal your hand, and draw a card for each Victory card you revealed, if any. The revealed cards all stay in your hand. Cards with two types, one of which is Victory, are Victory cards. Then, if this is the first time you played a Crossroads this turn, you get +3 Actions. Subsequent Crossroads this turn will give you cards but not Actions. Using a card that lets you play a card several times (like Throne Room from Dominion) on Crossroads, you will play Crossroads multiple times, getting +3 Actions the first time but not the others.",
"name": "Crossroads",
"description": "Reveal your hand.\n+1 Card per Victory card revealed. If this is the first time you played a Crossroads this turn, +3 Actions."
},
"Mercenary": {
"extra": "This card is not in the Supply; it can only be obtained via Urchin. When you play it, you may trash 2 cards from your hand. If you do, you draw two cards, get +2 Coins, and each other player discards down to 3 cards in hand. Players who already have 3 or fewer cards in hand do nothing. Players responding to this Attack with cards like Beggar must choose to do so before you decide whether or not to trash 2 cards from your hand. If you play this with only one card in hand, you may choose to trash that card, but then will fail the \"if you do\" and will not draw cards and so on. If the cards you trash do things when trashed, first trash them both, then choose what order to resolve the things they do when trashed.",
"name": "Mercenary",
"description": "You may trash 2 cards from your hand.\nIf you do, +2 Cards, + 2 Coins,\nand each other player discards down to 3 cards in hand.\n(This is not in the Supply.)"
},
"Mining Village": {
"extra": "You must decide whether or not to trash Mining Village or not before moving on to other actions or other phases. You get a card and +2 Actions, whether you choose to trash it or not. If you trash it you also get +2 Coins. If you Throne Room a Mining Village, you cannot trash Mining Village twice. You will get +1 Card, +2 Actions, and +2 Coins the first time you play it and trash it and when you play it the second time with the Throne Room you get +1 Card and +2 Actions but cannot trash it again.",
"name": "Mining Village",
"description": "+1 Card, +2 Actions. You may trash this card immediately. If you do, +2 Coins."
},
"Band of Misfits": {
"extra": "When you play this, you pick an Action card from the Supply that costs less than it, and treat this card as if it were the card you chose. Normally this will just mean that you follow the instructions on the card you picked. So, if you play Band of Misfits and Fortress is in the Supply, you could pick that and then you would draw a card and get +2 Actions, since that is what Fortress does when you play it. Band of Misfits also gets the chosen card's cost, name, and types. If you use Band of Misfits as a card that trashes itself, such as Death Cart, you will trash the Band of Misfits (at which point it will just be a Band of Misfits card in the trash). If you use Band of Misfits as a duration card (from Seaside), Band of Misfits will stay in play until next turn, just like the duration card would. If you use Band of Misfits as a Throne Room (from Dominion), King's Court (from Prosperity), or Procession, and use that effect to play a duration card, Band of Misfits will similarly stay in play. If you use Throne Room, King's Court, or Procession to play a Band of Misfits card multiple times, you only pick what to play it as the first time; the other times it is still copying the same card. For example, if you use Procession to play Band of Misfits twice and choose Fortress the first time, you will automatically replay it as Fortress, then trash the Band of Misfits, return it to your hand (it is a Fortress when it's trashed, and Fortress has a when-trashed ability that returns it to your hand), and gain an Action card costing exactly 6 Coins(1 Coin more than Band of Misfits, which has left play and so is no longer copying Fortress). If you use Band of Misfits as a card that does something during Clean-up, such as Hermit, it will do that thing during Clean-up. When you play Horn of Plenty (from Cornucopia), it counts Band of Misfits as whatever Band of Misfits was played as; for example if you play a Band of Misfits as a Fortress, and then play another Band of Misfits as a Scavenger, and then play Horn of Plenty, you will gain a card costing up to 3 Coins. Band of Misfits can only be played as a card that is visible in the Supply; it cannot be played as a card after its pile runs out, and cannot be played as a non-Supply card like Mercenary; it can be played as the top card of the Ruins pile, but no other Ruins, and can only be played as Sir Martin when that is the top card of the Knights pile",
"name": "Band of Misfits",
"description": "Play this as if it were an Action card in the Supply costing less than it that you choose.\nThis is that card until it leaves play."
},
"Alms": {
"extra": "You can only buy this once per turn. When you do, if you have no Treasures in play, you gain a card costing up to 4 Coins. The gained card comes from the Supply and is put into your discard pile.",
"name": "Alms",
"description": "Once per turn: If you have no Treasures in play, gain a card costing up to 4 Coin."
},
"Rats": {
"extra": "Follow the instructions in order. First draw a card; then gain a Rats from the Supply, putting it into your discard pile; then trash a card from your hand that is not a Rats card. If there are no Rats cards left, you do not gain one. If you have no cards in your hand other than Rats, reveal your hand and you do not trash a card. If Rats is trashed, you draw a card. This happens whether it is your turn or another player's, and regardless of which player has the card that trashed Rats. There are 20 copies of Rats, rather than the usual 10; the pile starts with all 20, regardless of the number of players.",
"name": "Rats",
"description": "+1 Card, +1 Action\nGain a Rats. Trash a card from your hand other than a Rats (or reveal a hand of all Rats).\n______________________\nWhen you trash this, +1 Card."
},
"Lost Arts": {
"extra": "When you buy this, you move your +1 Action token to any Action Supply pile. This token gives you +1 Action whenever you play a card from that pile; see the Tokens section.",
"name": "Lost Arts",
"description": "Move your +1 Action token to an Action Supply pile (when you play a card from that pile, you first get +1 Action)."
},
"Minion": {
"extra": "You get +1 Action whichever option you choose. The options are +2 coins, or everything after that - discarding, drawing 4 cards, and other players discarding and drawing. A player who Moats this neither discards nor draws. Other players are only affected by this if they have 5 or more cards in hand. Other players can use Secret Chamber when you play Minion even if they do not have 5 or more cards in hand. [You make your choice on how to use Minion after other players are done revealing Reactions.]",
"name": "Minion",
"description": "+1 Action, Choose one: +2 Coins; or discard your hand, +4 Cards, and each other player with at least 5 cards in hand discards his hand and draws 4 cards."
},
"Mine": {
"extra": "Generally, you can trash a Copper card and gain a Silver, or trash a Silver card and gain a Gold. However, you could also trash a Treasure to gain the same Treasure or a cheaper one. The gained card goes in your hand; thus, you can spend it the same turn. If you don't have a Treasure card in your hand to trash, you can't gain anything.",
"name": "Mine",
"description": "Trash a Treasure card from your hand. Gain a Treasure card costing up to 3 Coins more; put it into your hand."
},
"Council Room": {
"extra": "The other players must draw a card whether they want to or not. All players should shuffle as necessary.",
"name": "Council Room",
"description": "+4 Cards, +1 Buy, Each other player draws a card."
},
"King's Court": {
"extra": "This is similar to Throne Room (from Dominion), but plays the Action three times rather than twice. You pick another Action card in your hand, play it, play it again, and play it a third time. This does not use up any extra Actions you were allowed to play due to cards like Worker's Village - King's Court itself uses up one Action and that is it. You cannot play any other cards in between resolving the King's Court-ed Action card multiple times, unless that Action card specifically tells you to (such as King's Court itself does). If you King's Court a King's Court, you will play three different Actions after that, playing each one of them three times - you do not play one Action nine times. If you King's Court a card that gives you +1 Action, such as Grand Market, you will end up with 3 Actions left afterwards.",
"name": "King's Court",
"description": "You may choose an Action card in your hand. Play it three times."
},
"Mint": {
"extra": "When you buy this, you trash all of your Treasure cards in play. You do not trash Treasure cards in your hand or elsewhere; just the ones in play, if any. If you buy multiple cards in a turn, trash your Treasures right when you buy Mint; you still have any leftover coins they produced for spending on something else. Remember you do not have to play all of the Treasures from your hand each turn (just all the ones you want producing money for you). You do not get additional chances to play Treasure cards between buys in the Buy phase; first you play Treasures, then you buy cards. When you play Mint, you reveal a Treasure card from your hand and gain a copy of it from the Supply. The gained card goes into your discard pile. The revealed card stays in your hand. The Treasure card can also have other types, like Harem (from Intrigue). If you buy a Mint and use Watchtower to put it on top of your deck or trash it, you still trash all of your Treasures from play. However, if you buy a Mint with Royal Seal in play, the Royal Seal will be gone before you can use it to put Mint on your deck.",
"name": "Mint",
"description": "You may reveal a Treasure card from your hand. Gain a copy of it.\n______________________\nWhen you buy this, trash all Treasures you have in play."
},
"Port": {
"extra": "When you buy a Port, you gain another Port. If you gain a Port some other way, you do not get an extra Port. There are 12 Ports in the pile; use all 12.",
"name": "Port",
"description": "+1 Card\n+2 Actions\n______________________\nWhen you buy this, gain another Port."
},
"Storyteller": {
"extra": "This lets you play Treasures in your Action phase. They go into play and produce Coins, just like Treasures played in the Buy phase. Then Storyteller turns all of your Coins into +Cards; for each Coin you have you lose the Coin and get +1 Card. For example if you had 4 Coins, you lose the 4 Coins and draw 4 cards. This makes you lose all Coins you have so far that turn, including the Coins you get from playing the Treasures, the + 1 Coin Storyteller gives you directly, and any you made earlier in the turn. You can track that the Treasures have been \"spent\" by putting them under the Storyteller. Potions, produced by Potions from Alchemy, is not Coin and so is not lost and does not get you any cards.",
"name": "Storyteller",
"description": "+1 Action\n+1 Coin\nPlay up to 3 Treasures from your hand. Pay all of your Coins. +1 Card per Coin paid."
},
"Royal Carriage": {
"extra": "When you play this, you get +1 Action and put it on your Tavern mat. It stays on your mat until you call it, directly after resolving a played Action card that is still in play. Royal Carriage cannot respond to Actions that are no longer in play, such as a Reserve card that was put on the Tavern mat, or a card that trashed itself (like a Raze used to trash itself). When called, Royal Carriage causes you to replay the card you just played. You can call multiple Royal Carriages to replay the same Action multiple times (provided the Action is still in play). You completely resolve the Action before deciding whether or not to use Royal Carriage on it. If you use Royal Carriage to replay a Duration card, Royal Carriage will stay in play until the Duration card is discarded from play, to track the fact that the Duration card has been played twice.",
"name": "Royal Carriage",
"description": "+1 Action\nPut this on your Tavern mat.\n______________________\nDirectly after resolving an Action, if it's still in play, you may call this, to replay that Action."
},
"Pilgrimage": {
"extra": "At the start of the game, place your Journey token (the one with the boot) face up. You can only buy this once per turn. When you do, turn your Journey token over. Then if it is face down, nothing more happens. If it is face up, choose up to 3 cards you have in play with different names and gain a copy of each. The copies you gain come from the Supply and are put into your discard pile. So, every other time you buy this, you will gain up to 3 cards. It does not matter what turned over the Journey token; you could turn it face down with Ranger, then face up with Pilgrimage.",
"name": "Pilgrimage",
"description": "Once per turn: Turn your Journey token over (it starts face up); then if it's face up, choose up to 3 differently named cards you have in play and gain a copy of each."
},
"Tower": {
"extra": "A Supply pile is only empty if it has no cards in it; a split pile with half of the cards gone is not empty.\nVictory cards do not count, but Curses do.",
"name": "Tower",
"description": "When scoring, 1<VP> per non-Victory card you have from an empty Supply pile."
},
"Encampment": {
"extra": "Revealing a Plunder or Gold is optional. When you return Encampment to the Supply, it goes on top of its pile, potentially covering up a Plunder.",
"name": "Encampment",
"description": "+2 Cards\n +2 Actions\nYou may reveal a Gold or Plunder from your hand. If you do not, set this aside, and return it to the Supply at the start of Clean-up."
},
"Harem": {
"extra": "This is both a Treasure card and a Victory card. You can play it for 2 coins, just like a Silver card. At the end of the game, it's worth 2 VP. During set-up, place 12 Harems in the Supply for a 3- or 4- [or 5- or 6-] player game and 8 in the Supply for a 2-player game.",
"name": "Harem",
"description": "Worth 2 Coins, 2 <VP>"
},
"Potion": {
"extra": "This is a basic Treasure card. It costs 4 Coins and produces Potion. It is not a Kingdom card. After you choose 10 Kingdom cards for the Supply, if any of them have Potion in the cost, add the Potion pile to the Supply. Also add the Potion pile if you are using the promotional card Black Market, and the Black Market deck includes at least one card with Potion in the cost. If you don't have any cards with Potion in the cost in the Supply or the Black Market deck, do not use the Potion pile in this game. When you have a Potion pile, put all 16 Potions in it, no matter how many players there are. In games using this pile, if the pile becomes empty, that will count towards the game ending condition.",
"name": "Potion",
"description": "Worth 1 Potion."
},
"Farming Village": {
"extra": "Reveal cards from the top of your deck until you reveal a Treasure or Action card. If you run out of cards before finding one, shuffle your discard pile (but not the revealed cards), and keep revealing cards. If you still cannot find one, just discard all of the revealed cards. If you do find a Treasure or Action card, put it into your hand, and discard the rest of the revealed cards. A card with multiple types, one of which is Treasure or Action (for example Diadem, a Treasure - Prize), is a Treasure or Action and so will be drawn by this. You do not choose Treasure or Action - you stop on the first card matching either type.",
"name": "Farming Village",
"description": "+2 Actions\nReveal cards from the top of your deck until you reveal an Action or Treasure card. Put that card into your hand and discard the other cards."
},
"Duchy": {
"extra": "Put 8 in the Supply in a game with two players. Put 12 in the Supply in a game with three or more players.",
"name": "Duchy",
"description": "3 <VP>"
},
"Secret Chamber": {
"extra": "When you play this as an Action on your turn, you first discard any number of cards from your hand, then get 1 coin per card you discarded. You may choose to discard zero cards, but then you will get zero additional coins. The other ability does nothing at that time as it is only used as a Reaction. When someone else plays an Attack card, you may reveal Secret Chamber from your hand. If you do, first you draw 2 cards, then you put at 2 cards from your hand on top of your deck (in any order). The cards you put back do not have to be the ones you drew. You can put Secret Chamber itself on top of your deck; it's still on your hand when you reveal it. Revealing Secret Chamber happens prior to resolving what an Attack does to you. For example, if another player plays Thief, you can reveal Secret Chamber, draw 2 cards, put 2 back, and then you resolve getting hit by the Thief. You can reveal Secret Chamber whenever another player plays an Attack card, even if that Attack would not affect you. Also, you can reveal more than one Reaction card in response to an Attack. For example, after revealing the Secret Chamber in response to an Attack and resolving the effect of the Secret Chamber, you can still reveal a Moat to avoid the Attack completely.",
"name": "Secret Chamber",
"description": "Discard any number of cards. +1 Coin per card discarded. - When another player plays an Attack card, you may reveal this from your hand. If you do, +2 cards, then put 2 cards from your hand on top of your deck."
},
"Royal Seal": {
"extra": "This is a Treasure worth 2 coins, like Silver. If you gain multiple cards with this in play, this applies to each of them - you could put any or all of them on top of your deck. If you use this ability and there are no cards left in your deck, you do not shuffle; the card you gained becomes the only card in your deck. Royal Seal applies to all cards you gain while it is in play, whether bought or gained other ways. If you play the Alchemy card Possession, and during the extra turn you have the possessed played play Royal Seal, he cannot put the card on his deck - he is not gaining the card, you are.",
"name": "Royal Seal",
"description": "Worth 2 Coins.\n______________________\nWhile this is in play, when you gain a card, you may put that card on top of your deck."
},
"Harvest": {
"extra": "Reveal the top 4 cards of your deck. If there are not enough cards, reveal what you can, shuffle your discard pile, and reveal the rest. If there still are not 4 cards total to reveal, just reveal what you can. You discard the revealed cards, and get +1 coin per differently named card revealed. For example if you revealed Copper, Silver, Copper, Estate, that would be +3 coins .",
"name": "Harvest",
"description": "Reveal the top 4 cards of your deck, then discard them. +1 Coin per differently named card revealed."
},
"Banquet": {
"extra": "You can do this even if the Copper pile is empty.",
"name": "Banquet",
"description": "Gain 2 Coppers and a non-Victory card costing up to 5 Coins."
},
"Market Square": {
"extra": "When you play this, you draw a card and get +1 Action and +1 Buy. When one of your cards is trashed, you may discard Market Square from your hand. If you do, you gain a Gold. The Gold comes from the Supply and is put into your discard pile. If there is no Gold left in the Supply, you do not gain one. You may discard multiple Market Squares when a single card of yours is trashed.",
"name": "Market Square",
"description": "+1 Card\n+1 Action\n+1 Buy\n______________________\nWhen one of your cards is trashed,\nyou may discard this from your\nhand. If you do, gain a Gold."
},
"Groundskeeper": {
"extra": "This can trigger multiple times in a turn, for cards gained different ways. For example you could play Groundskeeper, then play Engineer gaining an Estate and taking 1<VP>, then in your Buy phase buy a Duchy taking another +1<VP>. Multiple Groundskeepers are cumulative. If you Crown a Groundskeeper, there is still just one Groundskeeper in play, so you only get +1<VP> per Victory card gained.",
"name": "Groundskeeper",
"description": "+1 Card\n +1 Action\n______________________\nWhile this is in play, when you gain a Victory card, +1<VP>"
},
"Wandering Minstrel": {
"extra": "First draw a card, then reveal the top 3 cards of your deck, shuffling your discard pile if there are not enough cards in your deck. If there still are not enough after shuffling, just reveal what you can. Put the revealed Action cards on top of your deck in any order, and discard the other cards. A card with multiple types, one of which is Action, is an Action card. If you didn't reveal any Action cards, no cards will be put on top.",
"name": "Wandering Minstrel",
"description": "+1 Card\n+2 Actions\nReveal the top 3 cards of your deck.\nPut the Actions back on top in any order and discard the rest."
},
"Island": {
"extra": "When you first take this card, take an Island player mat. Island is both an Action card and a Victory card. Use 8 Islands in a 2 player game, 12 Islands in a 3+ player game. Island and the card set aside with it are set aside face up on the Island player mat provided. They should not be shuffled back into your deck when you shuffle your discard pile. They are returned to your deck at the end of the game in order to calculate total victory points. Island is worth 2 VP. If you have no other cards in hand when you play Island, just set Island aside by itself. If you Throne Room an Island, set aside the Island and a card from your hand, then set aside another card from your hand. You may look through the cards on your Island playing mat and other players may ask to see them as well.",
"name": "Island",
"description": "Set aside this and another card from your hand. Return them to your deck at the end of the game. 2 VP"
},
"Harbinger": {
"extra": "First draw a card and get +1 Action; then look through your discard pile, and you may put a card from it on top of your deck.\nPutting a card on top is optional.",
"name": "Harbinger",
"description": "+1 Card\n+1 Action\nLook through your discard pile. You may put a card from it onto your deck."
},
"Young Witch": {
"extra": "This card causes there to be an extra pile in the Supply, called the Bane pile; see Preparation. The extra pile is just like other Kingdom card piles - it can be bought, it can be gained via cards like Horn of Plenty, it counts for the end game condition. When you play Young Witch, after you draw 2 cards and discard 2 cards, each other player may reveal a Bane card from his hand; if he does not, he gains a Curse. This attack hits other players in turn order, which matters when the Curse pile is low. Players may still respond to a Young Witch with Reaction cards like Horse Traders or Moat (from Dominion); those happen before Bane cards are revealed. If Secret Chamber (from Dominion: Intrigue) is the Bane card, first you can reveal it for its Reaction ability, and then, if it's still in your hand, you can reveal it to avoid getting a Curse.",
"name": "Young Witch",
"description": "+2 Cards\nDiscard 2 cards. Each other player may reveal a Bane card from his hand.\nIf he doesn\u2019t, he gains a Curse.\nSetup: Add an extra Kingdom card pile costing 2 or 3 to the Supply. Cards from that pile are Bane cards."
},
"Caravan Guard": {
"extra": "This gives you +1 Card and +1 Action when you play it, and then + 1 Coin at the start of your next turn after that. This card has a Reaction ability that lets you play it when another player plays an Attack card. Playing this during another player's turn is similar to playing it during your own turn - you put Caravan Guard into play, get +1 Card and +1 Action, and will get + 1 Coin at the start of your next turn - the very next turn you take. However getting +1 Action during someone else's turn does not do anything for you; it does not let you play other Action cards during that player\u2019s turn. Similarly if a token gives you + 1 Coin or +1 Buy during another player's turn, that still does not let you buy cards during that player\u2019s turn (although + 1 Coin can cancel the - token given out by Bridge Troll). The +1 Action (or potential other +'s) does not carry over to your next turn either. After reacting with a Caravan Guard, you can use another one, even one you just drew, and also can use other Reactions, even ones you just drew; you keep going until you have no more Reactions you wish to respond to the Attack with.",
"name": "Caravan Guard",
"description": "+1 Card\n+1 Action\nAt the start of your next turn, +1 Coin\n______________________\nWhen another player plays an Attack card, you may play this from your hand. (+1 Action has no effect if it's not your turn.)"
},
"Trade Route": {
"extra": "You get an additional Buy to use in your Buy phase. You get +1 coin per token on the Trade Route mat. Then you trash a card from your hand. If you have no cards left in hand, you do not trash one. The amount you get from Trade Route is the same as +1 coin per Victory card pile that a card has been gained from this game. If Victory cards have been gained from outside the Supply piles, for example using the promotional card Black Market, then this does not count those. Put a coin token on each Victory card pile at the start of the game. When a card is gained from a Victory card pile, move its token onto the Trade Route mat. So for example if this game includes the Intrigue card Harem, and so far Harem and Duchy have been bought, but no one has bought (or otherwise gained) Estate or Province or Colony, then Trade Route makes 2 coins. It does not matter who gained the cards or how they gained them. You do not get any extra money if a pile has had multiple cards gained from it or is empty; all that matters is if at least one card has been gained from it. It does not matter if cards have been returned to a pile, such as with Ambassador from Seaside; Trade Route only cares if a card was ever gained from the pile this game. If you are using Black Market and Trade Route is in the Black Market deck, put tokens on Victory card piles at the start of the game.",
"name": "Trade Route",
"description": "+1 Buy\n+1 Coin per token on the Trade Route mat.\nTrash a card from your hand.\n______________________\nSetup: Put a token on each Victory card Supply pile. When a card is gained from that pile, move the token to the Trade Route mat."
},
"Wharf": {
"extra": "You draw 2 cards and get an extra Buy this turn, and then draw 2 more cards and get another extra Buy at the start of your next turn. You don't draw your extra 2 cards for the next turn until that turn actually starts. Leave this in front of you until the Clean-up phase of your next turn.",
"name": "Wharf",
"description": "Now and at the start of your next turn: +2 Cards, +1 Buy."
},
"Ironmonger": {
"extra": "First you draw a card, then you reveal the top card of your deck, then you either discard that card or put it back on top of your deck. Then you get bonuses based on the types of the card you revealed. A card with 2 types gives you both bonuses; for example, if you revealed Harem (from Intrigue), you would both draw a card and get +1 Coins.",
"name": "Ironmonger",
"description": "+1 Card, +1 Action\nReveal the top card of your deck; you may discard it. Either way, if it is an\u2026\nAction card, +1 Action\nTreasure card, +1 Coin\nVictory card, +1 Card"
},
"Colony": {
"extra": "This is not a Kingdom card. You do not use it every game. It is a Victory card worth 10 VP. If only Kingdom cards from Prosperity are being used this game, then the Platinum and Colony piles are added to the Basic cards in the Supply for the game. If a mix of Kingdom cards from Prosperity and other sets are being used, then the inclusion of Platinum and Colony in the Supply should be determined randomly, based on the proportion of Prosperity and non-Prosperity cards in use. For example, choose a random Kingdom card being used - such as the first card dealt out from the Randomizer deck [this is equivalent to rolling a d10 or choosing a card at random after all 10 have been selected] - and if it is from Prosperity, add Platinum and Colony to the Supply. Platinum and Colony are not Kingdom cards; when those are included, there are 10 Kingdom cards, plus Copper, Silver, Gold, Platinum, Estate, Duchy, Province, Colony, and Curse, in the Supply. Use 8 Colonies for a 2-player game, or 12 Colonies for a game with 3 or more players. [Use all 12 Platinum regardless of the number of players. Platinum and Colony are meant to be used together and both or neither should be used, not one or the other.]",
"name": "Colony",
"description": "10 <VP>"
},
"Bank": {
"extra": "This is a Treasure worth a variable amount. When you play Bank, it is worth 1 coin per Treasure you have in play, counting itself. Remember, you choose what order to play Treasure cards. If you play Bank with no other Treasures in play, it is worth 1 coin. If you play two copies of Bank in a row, the one you play second will be worth 1 coin more than the first one. Bank produces money right when you play it; things that happen later in the turn will not change how much money you got from it.",
"name": "Bank",
"description": "Worth ? Coins.\nWhen you play this, it`s worth 1 Coin per Treasure card you have in play (counting this)."
},
"Remodel": {
"extra": "You cannot trash the Remodel as it isn't in your hand when you resolve it (you can trash a different Remodel card from your hand). If you do not have a card to trash, you cannot gain a card from the Remodel. The gained card goes in your Discard pile. You can only gain cards from the Supply. The gained card need not cost exactly 2 Coins more than the trashed card; it can cost that much or any amount less. You cannot use coins from Treasures or previous Actions (like the Market) to increase the cost of the card you gain. You can trash a card to gain a copy of the same card.",
"name": "Remodel",
"description": "Trash a card from your hand. Gain a card costing up to 2 Coins more than the trashed card."
},
"Followers": {
"extra": "Do the things in the order listed. You draw 2 cards; then you gain an Estate from the Supply, putting it into your discard pile; then each other player gains a Curse from the Supply, putting it into his discard pile; then each other player discards down to 3 cards in hand. A player with 3 or fewer cards in hand does not discard any cards. If there are no Estates left, you do not gain one. If there are not enough Curses left, deal out the remaining Curses in turn order. This is a Prize; see the Additional Rules.",
"name": "Followers",
"description": "+2 Cards\nGain an Estate. Each other player gains a Curse and discards down to 3 cards in hand.\n(This is not in the Supply.)"
},
"Tribute": {
"extra": "If the player after you has fewer than 2 cards left in his deck, he reveals all the cards in his deck, shuffles his discard pile (which does not include currently revealed cards), and then reveals the remainder needed. The player then discards the revealed cards. If the player after you does not have enough cards to reveal 2, he reveals what he can. You get bonuses for the types of cards revealed, counting only the different cards. A card with 2 types gives you both bonuses. So if the player to your left reveals Copper and Harem, you get +4 Coins and +2 cards; if he reveals 2 Silvers, you just get +2 coins. Curse produces no bonus.",
"name": "Tribute",
"description": "The player to your left reveals then discards the top 2 cards of his deck. For each differently named card revealed, if it is an... Action Card, +2 Actions; Treasure Card, +2 Coins; Victory Card, +2 Cards."
},
"Travelling Fair": {
"extra": "When you buy this, you get +2 Buys (letting you buy more Events or cards afterwards). Then for the rest of the turn, whenever you gain a card, you may put it on your deck. This works on cards you buy, as well as cards gained other ways, such as gaining cards with Ball. It does not work on Travelers exchanged for other cards; exchanging is not gaining. Putting the card on your deck is optional each time you gain a card that turn; you could put some on top and let the others go to your discard pile.",
"name": "Travelling Fair",
"description": "+2 Buys\nWhen you gain a card this turn, you may put it on top of your deck."
},
"Possession": {
"extra": "You are not taking a turn with the deck of the player to your left; that player is taking a turn, with you making the decisions and gaining the cards. This is a crucial difference to keep in mind when considering card interactions - the \"you\" in all cards still refers to the player being Possessed, not the player doing the Possessing. Possession has several pieces to it: -You can see the Possessed player's cards for the entire turn, which means you will see his next hand during Clean-up. You will also see any cards he is entitled to see due to card rules; for example, you can look at cards he has set aside with Native Village (from Seaside). You can count any cards he can count. -Any cards the Possessed player would have gained in any way, you gain instead; this includes cards bought, as well as cards gained due to Actions. The cards you gain this way go to your discard pile, even if they would have gone to that player's hand or the top of his deck or somewhere else. You only gain cards he would have; you do not gain tokens he would have (for example from the Seaside card Pirate Ship). [Continued on blank tab]",
"name": "Possession",
"description": "The player to your left takes an extra turn after this one, in which you can see all cards he can and make all decisions for him. Any cards he would gain on that turn, you gain instead; any cards of his that are trashed are set aside and returned to his discard pile at end of turn."
},
"Warrior": {
"extra": "Each player, in turn order, discards the appropriate number of cards from the top of his deck, trashing the ones costing 3 or 4 Coins. If Warrior is your only Traveler in play, each other player will only discard and potentially trash one card. If you, for example, have a Peasant, a Fugitive, and the Warrior in play, each other player would discard and potentially trash three cards. Cards are only trashed if they cost exactly 3 Coins or exactly 4 Coins. Cards with Potion in the cost (from Alchemy) do not cost exactly 3 Coins or 4 Coins. Cards with an asterisk in the cost (such as Warrior) or + in the cost (such as Masterpiece from Guilds) may be trashed by Warrior (if costing 3 Coin or 4 Coin). Champion and Teacher are not Travelers.",
"name": "Warrior",
"description": "+2 Cards\nFor each Traveller you have in play (including this), each other player discards the top card of his deck and trashes it if it costs 3 Coins or 4 Coins.\n______________________\nWhen you discard this from play, you may exchange it for a Hero.\n(This is not in the Supply.)"
},
"Donate": {
"extra": "Effects that happen due to trashing cards (such as Rocks) will happen before you shuffle.\nThis happens between turns, and so Possession (from Dominion: Alchemy) will no longer be doing anything.",
"name": "Donate",
"description": "After this turn, put all cards from your deck and discard pile into your hand, trash any number, shuffle your hand into your deck, then draw 5 cards."
},
"Border Village": {
"extra": "When you play this, you draw a card and can play two more Actions this turn. When you gain this, you also gain a card from the Supply that costs less than Border Village. Normally that will be a card costing up to 5 coins, but if Border Village costs less than normal, such as due to Highway, then the card you gain will have a lower maximum cost. You only gain a card when you gain Border Village, not when you play it. You gain a card whether you gained Border Village due to buying it, or gained it some other way.",
"name": "Border Village",
"description": "+1 Card\n+2 Actions\n______________________\nWhen you gain this, gain a card costing less than this."
},
"Quarry": {
"extra": "This is a Treasure worth 1 coin, like Copper. While it is in play, Action cards cost 2 coins less, to a minimum of 0 coins. It is cumulative; if you play two Quarries during your Buy phase, then King's Court will only cost 3 coins, rather than the usual 7 coins. It affects the costs of cards that are Actions plus another type, such as Nobles (an Action - Victory card in Intrigue). It is also cumulative with other effects that modify costs; if you play Worker's Village in your Action phase, then two Quarries in your Buy phase, Peddler will cost 2 coins. It affects the costs of cards everywhere, such as cards in players' hands.",
"name": "Quarry",
"description": "Worth 1 Coin.\n______________________\nWhile this is in play, Action cards cost 2 Coins less, but not less than 0 Coins."
},
"Familiar": {
"extra": "If there aren't enough Curses left to go around when you play Familiar, you deal them out in turn order, starting with the player to your left. If you play Familiar with no Curses remaining, you will still get +1 Card and +1 Action. A player gaining a Curse puts it face-up into his Discard pile.",
"name": "Familiar",
"description": "+1 Card\n+1 Action\nEach other player gains a curse."
},
"Sacrifice": {
"extra": "If you trash a card with multiple types, you get all relevant bonuses; for example if you trash Crown, you get +2 Cards, +2 Actions, and +2 Coin. If you trash a card with no relevant types (such as Curse), you get nothing.",
"name": "Sacrifice",
"description": "Trash a card from your hand. If it's an...\nAction card, +2 Cards, +2 Actions\nTreasure card, +2 Coin\nVictory card, +2<VP>"
},
"Amulet": {
"extra": "You choose something when you play it, and again at the start of your next turn; the choices may be the same or different.",
"name": "Amulet",
"description": "Now and at the start of your next turn, choose one: +1 Coin; or trash a card from your hand; or gain a Silver."
},
"Orchard": {
"extra": "Having 6 or more copies of a card confers no additional bonus.",
"name": "Orchard",
"description": "When scoring, 4<VP> per differently named Action card you have 3 or more copies of."
},
"Baker": {
"extra": "When you play this, you draw a card, get +1 Action, and take a Coin token. In games using this card, each player starts the game with a Coin token. This includes games using the promo card Black Market in which Baker is in the Black Market deck.",
"name": "Baker",
"description": "+1 Card\n+1 Action\nTake a Coin token.\n______________________\nSetup: Each player takes a Coin token."
},
"Forager": {
"extra": "Trash a card from your hand if you can. Whether or not you can, you still get +1 Coin er differently named Treasure in the trash, plus +1 Action and +1 Buy. Multiple copies of the same Treasure card do not increase how much you get. For example, if the trash has four Coppers, a Counterfeit, and six Estates, you get +2 Coins. Cards with multiple types, one of which is Treasure (such as Harem from Intrigue), are Treasures.",
"name": "Forager",
"description": "+1 Action\n+1 Buy\nTrash a card from your hand.\n+1 Coin per differently named Treasure\nin the trash."
},
"Militia": {
"extra": "The attacked players discard cards until they have only 3 cards in hand. Players who had 3 or fewer cards in hand when Militia was played do not discard any cards.",
"name": "Militia",
"description": "+2 Coins, Each other player discards down to 3 cards in his hand."
},
"Steward": {
"extra": "If you choose to trash 2 cards and have 2 or more cards in your hand after playing the Steward, then you must trash exactly 2 cards. You may choose to trash 2 cards, even if you only have 1 card left in your hand after playing the Steward; just trash the remaining card in your hand. You cannot mix and match - you either draw 2 cards, get 2 coins, or trash 2 cards.",
"name": "Steward",
"description": "Choose one: +2 Cards; or +2 Coins; or trash 2 cards from your hand."
},
"Colonnade": {
"extra": "For example with Settlers in play, buying another Settlers gets you 2<VP> from here.\nCards from the same pile are not necessarily copies of each other; for example Bustling Village is not a copy of Settlers.",
"name": "Colonnade",
"description": "When you buy an Action card, if you have a copy of it in play, take 2<VP> from here.\n______________________\nSetup: Put 6<VP> here per player."
},
"Bandit Fort": {
"extra": "For example with 3 Silvers and 1 Gold, you would get -8<VP>.\nScores can go negative.",
"name": "Bandit Fort",
"description": "When scoring, -2<VP> for each Silver and each Gold you have."
},
"Caravan": {
"extra": "Draw a card at the start of your next turn (not before); Caravan itself is discarded during the Cleanup phase of that subsequent turn.",
"name": "Caravan",
"description": "+1 Card, +1 Action\nAt the start of your next turn, +1 Card."
},
"Trade": {
"extra": "You may trash zero, one, or two cards from your hand. For each card you actually trashed, you gain a Silver, putting it into your discard pile.",
"name": "Trade",
"description": "Trash up to 2 cards from your hand.\nGain a Silver per card you trashed."
},
"Coppersmith": {
"extra": "This just changes how much money you get when playing Copper. The effect is cumulative; if you use Throne Room on Coppersmith, each Copper that you play that turn will produce 3 coins.",
"name": "Coppersmith",
"description": "Copper produces an extra 1 Coin this turn."
},
"Herbalist": {
"extra": "You get an extra coin to spend this turn, and may buy an additional card in your Buy phase. When you discard this from play (usually during Clean-up), you may choose a Treasure card you have in play, and put that card on your deck. If you have no cards in your deck, that Treasure will become the only card in your deck. You choose what order to discard cards during Clean-up; so, for example, if you have Herbalist, Potion, and Alchemist in play, you could choose to discard Alchemist first, putting it on top of your deck, then discard Herbalist, and put Potion on top of your deck. If you have multiple Herbalists in play, each one will let you put another Treasure from play onto your deck.",
"name": "Herbalist",
"description": "+1 Buy\n+1 Coin\nWhen you discard this from play, you may put one of your Treasures from play on top of your deck."
},
"Baron": {
"extra": "You are never obligated to discard an Estate, even if you have one in your hand. However, if you do not discard an Estate, you must gain an Estate (if there are any left); you cannot choose to just get +1 Buy from this Card.",
"name": "Baron",
"description": "+1 Buy, You may discard an Estate card. If you do, +4 Coins. Otherwise, gain an Estate card."
},
"Aqueduct": {
"extra": "If you gain a card that is both a Treasure and a Victory card, such as Humble Castle, you can resolve the abilities in either order.",
"name": "Aqueduct",
"description": "When you gain a Treasure, move 1<VP> from its pile to this. When you gain a Victory card, take the <VP> from this\n______________________\nSetup: Put 8<VP> on the Silver and Gold piles."
},
"Duplicate": {
"extra": "When you play this, you put it on your Tavern mat. It stays on your mat until you call it. You can call it when gaining a card costing up to 6 Coins , and gain another copy of that card. The gained card comes from the Supply and is put into your discard pile; Duplicate cannot gain non-supply cards such as Teacher. Duplicate can be called during other players' turns when you gain cards; for example, another player might buy Messenger and choose to have each player gain an Estate, and you could Duplicate that Estate. You can call multiple Duplicates to gain multiple copies of the same card. Duplicate is discarded during the Clean-up of the turn you call it, whether or not it is your turn.",
"name": "Duplicate",
"description": "Put this on your Tavern mat.\n______________________\nWhen you gain a card costing up to 6 Coins, you may call this, to gain a copy of that card."
},
"Poor House": {
"extra": "First you get +4 Coins. Then you reveal your hand, and lose 1 Coin per Treasure card in it. You can lose more than 4 Coins this way, but the amount of coins you have available to spend can never go below 0 Coins. Cards with two types, one of which is Treasure (such as Harem from Intrigue) are Treasure cards.",
"name": "Poor House",
"description": "+4 Coins\nReveal your hand. -1 Coin per Treasure card in your hand, to a minimum of 0 Coins."
},
"Ball": {
"extra": "When you buy this, you take your - 1 Coin token, which will cause you to get 1 Coin less the next time you get Coins. Then you gain 2 cards, each costing up 4 Coins. They can be 2 copies of the same card or 2 different cards.",
"name": "Ball",
"description": "Take your - 1 Coin token. Gain 2 cards each costing up to 4 Coin."
},
"Obelisk": {
"extra": "All cards from the chosen pile count, even if they have different names (such as when it is a split pile).\nRuins (from Dominion: Dark Ages), when used, can be the pile.",
"name": "Obelisk",
"description": "When scoring, 2<VP> per card you have from the chosen pile.\n______________________\nSetup: Choose a random Action Supply pile."
},
"Pathfinding": {
"extra": "When you buy this, you move your +1 Card token to any Action Supply pile. This token gives you +1 Card whenever you play a card from that pile; see the Tokens section.",
"name": "Pathfinding",
"description": "Move your +1 Card token to an Action Supply pile (when you play a card from that pile, you first get +1 Card)."
},
"Avanto": {
"extra": "Avanto is a promotional Action card. It's a terminal draw card that can potentially become non-terminal if you have a Sauna in your hand to play. It is a split pile card, with five copies of Avanto sitting under five copies of Sauna.",
"name": "Avanto",
"description": "+3 Cards\nYou may play a Sauna from your hand."
},
"Scout": {
"extra": "If there are fewer than 4 cards left in your deck, reveal all the cards in your deck, shuffle your discard pile (which does not include currently revealed cards), and then reveal the remainder needed. Action - Victory cards are Victory cards. Curse cards are not Victory cards. Take all revealed Victory cards into your hand; you cannot choose to leave some on top. You do not have to reveal the order that you put the cards back in.",
"name": "Scout",
"description": "+1 Action. Reveal the top 4 cards of your deck. Put the revealed Victory cards into your hand. Put the other cards on top of your deck in any order."
},
"Plan": {
"extra": "When you buy this, you move your Trashing token (the one depicting a tombstone) to any Action Supply pile. This token will let you trash a card from your hand when buying a card from that pile; see the Tokens section.",
"name": "Plan",
"description": "Move your Trashing token to an Action Supply pile (when you buy a card from that pile, you may trash a card from your hand.)"
},
"Conspirator": {
"extra": "You evaluate whether or not Conspirator gives you +1 Card and +1 Action when you play it. Action cards played later in the turn do not change this evaluation. For the purposes of counting actions, if you Throne Room an Action, that's one Action of the Throne Room, one for the selected Action played the first time, and one for the selected Action played the second time. For example, if you play Throne Room on Conspirator, the first conspirator will be your second Action, and won't give you +1 Card or +1 Action, but the second Conspirator will be your third Action, and you will get +1 Card and +1 Action for that second Conspirator. Action - Victory cards are Actions.",
"name": "Conspirator",
"description": "+2 Coins. If you've played 3 or more Actions this turn (counting this): +1 Card, +1 Action."
},
"Hero": {
"extra": "The Treasure comes from the Supply and is put into your discard pile. It can be any Treasure being used that game.",
"name": "Hero",
"description": "+2 Coins\nGain a Treasure.\n______________________\nWhen you discard this from play, you may exchange it for a Champion.\n(This is not in the Supply.)"
},
"Peasant": {
"extra": "See the section on Travelers. When you play Peasant, you get +1 Buy and + 1 Coin. When you discard it from play, you may return it to its pile and take a Soldier, putting it into your discard pile.",
"name": "Peasant",
"description": "+1 Buy\n+1 Coin\n______________________\nWhen you discard this from play, you may exchange it for a Soldier."
},
"Guide": {
"extra": "When you play this, you get +1 Card and +1 Action, and put it on your Tavern mat. It stays on your mat until you call it at the start of one of your turns. If multiple things can happen at the start of your turn, you can do them in any order. When you call Guide, it moves from the mat into play, and you discard your hand, then draw 5 cards. You discard it that turn with your other cards in play.",
"name": "Guide",
"description": "+1 Card\n+1 Action\nPut this on your Tavern mat.\n______________________\nAt the start of your turn, you may call this, to discard your hand and draw 5 cards."
},
"Estate": {
"extra": "Put 8 in the Supply in a game with two players. Put 12 in the Supply in a game with three or more players.",
"name": "Estate",
"description": "1 <VP>"
},
"Gold": {
"extra": "30 cards per game.",
"name": "Gold",
"description": "Worth 3 Coins."
},
"Wall": {
"extra": "For example, if you had 27 cards in your deck, you would score -12<VP> for Wall.\nScores can go negative.",
"name": "Wall",
"description": "When scoring, -1<VP> per card you have after the first 15."
},
"Loan": {
"extra": "This is a Treasure worth 1 coin, like Copper. When you play it, you reveal cards from the top of your deck until revealing a Treasure card, and then you decide whether to trash that card or discard it. Then you discard all of the other revealed cards. If you run out of cards before revealing a Treasure, shuffle your discard pile (but not the revealed cards) to get more; if you still do not find a Treasure, just discard all of the revealed cards. Remember that you can play Treasures in any order in the Buy phase and can choose not to play some of your Treasures if you want.",
"name": "Loan",
"description": "Worth 1 Coin.\nWhen you play this, reveal cards from your deck until you reveal a Treasure. Discard it or trash it. Discard the other cards."
},
"Messenger": {
"extra": "When you play this, you get +1 Buy, + 2 Coin , and may optionally put your deck into your discard pile. This is not discarding cards and does not trigger Tunnel (from Hinterlands). When you buy Messenger, if it is the first thing you bought that turn (card or Event), you gain a card costing up to 4 Coins from the Supply, putting it into your discard pile, and then each other player in turn order also gains a copy of that card. If the Supply runs out of copies of the card, further players do not get anything.",
"name": "Messenger",
"description": "+1 Buy\n+2 Coins\nYou may put your deck into your discard pile.\n______________________\nWhen this is your first buy in a turn, gain a card costing up to 4 Coins, and each other player gains a copy of it."
},
"Feodum": {
"extra": "This is a Victory card. Play with 8 for games with 2 players, or 12 cards for games with 3 or more players. At the end of the game, each Feodum is worth 1 Victory for every 3 Silvers in your deck, rounded down. For example, if you have 11 Silvers, your Feodums are worth 3 Victory each. If a Feodum is trashed, you gain 3 Silvers. The Silvers come from the Supply and are put into your discard pile. If there are not enough Silvers left, gain as many as you can.",
"name": "Feodum",
"description": "Worth 1 <VP> for every 3 Silvers in your deck (round down).\n______________________\nWhen you trash this, gain 3 Silvers."
},
"Develop": {
"extra": "First trash a card from your hand, if you have any cards in hand. Develop itself is no longer in your hand and so cannot trash itself (though it can trash other copies of Develop). If you trashed a card, gain two cards, one costing exactly 1 coin more than the trashed card, and one costing exactly 1 coin less than the trashed card. The gained cards come from the Supply; gain them in either order. If there is no card in the Supply at one of the costs, you still gain the other card if you can. Put the gained cards on top of your deck rather than into your discard pile. If you trash a Copper with Develop, which costs 0 coins, you will try and fail to gain a card costing -1 coins (and also try to gain a card costing 1 coin).",
"name": "Develop",
"description": "Trash a card from your hand. Gain a card costing exactly 1 coin more than it and a card costing exactly 1 less than it, in either order, putting them on top of your deck."
},
"Merchant Guild": {
"extra": "When you play this, you get +1 Buy and +1 Coin. While this is in play, any time you buy a card you also take a Coin token. Remember that you may only spend Coin tokens prior to buying cards, so you will not be able to immediately spend that Coin token. This ability is cumulative; if you have two Merchant Guilds in play, each card you buy will get you two Coin tokens. However if you play a Merchant Guild multiple times but only have one in play, such as with Throne Room (from Dominion) or King's Court (from Dominion: Prosperity), you will only get one Coin token when you buy a card.",
"name": "Merchant Guild",
"description": "+1 Buy\n+1 Coin\n______________________\nWhile this is in play, when you buy a card, take a Coin token."
},
"Vagrant": {
"extra": "You draw a card before revealing your top card. If the top card of your deck is a Curse, Ruins, Shelter, or Victory card, it goes into your hand; otherwise it goes back on top. A card with multiple types goes into your hand if at least one of the types is Curse, Ruins, Shelter, or Victory.",
"name": "Vagrant",
"description": "+1 Card, +1 Action\nReveal the top card of your deck. If it's a Curse, Ruins, Shelter, or Victory card, put it into your hand."
},
"Mission": {
"extra": "You can only buy this once per turn. When you do, if the previous turn was not yours - if it was another player's turn before this turn - you take another turn after this turn ends. The extra turn is completely normal except that you cannot buy cards during it. You can still buy Events, and play cards, and gain cards in ways other than buying them (such as gaining a Silver from Amulet), and exchange Travelers. Buying Mission during a turn granted by Mission will not give you another turn, because the previous turn was yours.",
"name": "Mission",
"description": "Once per turn: If the previous turn wasn't yours, take another turn after this one, in which you can't buy cards."
},
"Coin of the Realm": {
"extra": "This is a Treasure worth 1 Coin. You play it in your Buy phase, like other Treasures. When you play it, it goes on your Tavern mat. It produces 1 Coin that turn but is no longer in play. It stays on the mat until you call it. You can call it after resolving playing an Action card, for +2 Actions (which will let you play further Action cards). Move the Coin of the Realm into play when you call it, but it does not give you 1 Coin that turn, it just gives +2 Actions. It is discarded that turn with your other cards in play.",
"name": "Coin of the Realm",
"description": "1 Coin\nWhen you play this, put it on your Tavern mat.\n______________________\nDirectly after resolving an Action, you may call this for +2 Actions."
},
"Highway": {
"extra": "This makes all cards cheaper (to a minimum of 0 coins) as long as it is in play. When it leaves play, it stops making cards cheaper This applies to cards everywhere - cards in the Supply, cards in hand, cards in Decks. For example if you played Highway, then Develop, trashing a Copper, you could gain an Estate, as Estate would cost 4 coins while Copper would still cost 0 coins. Using a card that lets you play a card several times (like Throne Room from Dominion) on Highway will not make cards cost less, as there is still only one copy of Highway in play. The bonus is cumulative; if you have three Highways in play, all cards cost 1 coins less (to a minimum of 0 coins).",
"name": "Highway",
"description": "+1 Card\n+1 Action\n______________________\nWhile this is in play, cards cost 1 Coin less, but not less than 0 Coins."
},
"Native Village": {
"extra": "When you first gain one of these, take a Native Village player mat to put cards from this on. When you play Native Village, either take all of the set aside cards from your Native Village player mat and put them into your hand, or set aside the top card of your deck face down (shuffling first if needed) on the Native Village player mat. You may choose either option even if you have no cards on your mat or no cards in your deck. You may look at the cards on your Native Village player mat at any time. At the end of the game, any cards still on your mat return to your deck for scoring. Native Village itself does not get set aside; it goes to your discard pile during the Clean-up phase.",
"name": "Native Village",
"description": "+2 Actions, Choose one: Set aside the top card of your deck face down on your Native Village mat; or put all the cards from your mat into your hand. You may look at the cards on your mat at any time; return them to your deck at the end of the game."
},
"Haunted Woods": {
"extra": "you will draw 3 cards at the start of your next turn; and until then, other players will put the rest of their hand on their deck whenever they buy a card. A player may not have any cards left in hand when buying a card; typically cards left in hand will include Victory cards, Curses, and unplayed Actions. A player may intentionally avoid playing Treasures and Actions in order to take advantage of having to put his hand on his deck. Players who do not buy any cards can discard their hand normally. Buying Events is not buying cards and so does not trigger this. If you play Haunted Woods and then take an extra turn immediately, such as with Mission or Outpost (from Seaside), you will draw the 3 cards at the start of that turn and discard Haunted Woods that turn, and other players will never be affected by it. If you want to use a Reaction card like Moat against Haunted Woods, you have to use it right when Haunted Woods is played.",
"name": "Haunted Woods",
"description": "Until your next turn, when any other player buys a card, he puts his hand on top of his deck in any order.\nAt the start of your next turn:\n+3 Cards"
},
"Annex": {
"extra": "You can do this even if the Duchy pile is empty.\nThe chosen cards stay in your discard pile when the other cards are shuffled into your deck.",
"name": "Annex",
"description": "Look through your discard pile. Shuffle all but up to 5 cards from it into your deck. Gain a Duchy."
},
"Pillage": {
"extra": "First trash Pillage. Then each other player with 5 or more cards in hand reveals his hand and discards a card of your choice. This happens in turn order, starting with the player to your left. Then you gain two Spoils cards. The two Spoils cards come from the Spoils pile, which is not part of the Supply, and are put into your discard pile. If there are no Spoils cards left, you do not get one; if there is only one, you just get one.",
"name": "Pillage",
"description": "Trash this. Each other player with 5 or more cards in hand reveals his hand and discards a card that you choose.\nGain 2 Spoils from the Spoils pile."
},
"Spoils": {
"extra": "This is never in the Supply; it can only be obtained via Bandit Camp, Marauder, and Pillage. When you play Spoils, you get +3 Coins to spend this turn, and return that copy of Spoils to its pile. You are not forced to play Treasures in your hand.",
"name": "Spoils",
"description": "Worth 3 Coins\nWhen you play this, return it to the Spoils pile.\n(This is not in the Supply.)"
},
"Seaway": {
"extra": "When you buy this, first you gain an Action card costing up to 4 Coins. The Action card comes from the Supply and is put into your discard pile. Then move your +1 Buy token to the pile the Action card came from. The token gives you +1 Buy when playing a card from that pile; see the Tokens section. It only matters how much the card costs that you gain; the cost is not checked later. For example you can play Bridge Troll, then use Seaway to gain a Bridge Troll (currently costing 4 Coins due to its own effect), and the token will stay there even when Bridge Troll costs 5 Coins later. You can use Seaway to gain Sir Martin (from Dark Ages) when he's on top of the Knights pile; then your +1 Buy token will be on the Knights pile, even though any remaining Knights will cost 5 Coins. You cannot use Seaway on an empty pile just to move the +1 Buy token; you have to pick a card you can gain.",
"name": "Seaway",
"description": "Gain an Action card costing up to 4 Coin. Move your +1 Buy token to its pile (when you play a card from that pile, you first get +1 Buy)."
},
"Advisor": {
"extra": "If there are not three cards in your deck, reveal what you can, then shuffle your discard pile into your deck to get the other cards. If there still are not enough, just reveal what you can. No matter how many you revealed, the player to your left chooses one for you to discard, and the remaining cards go into your hand.",
"name": "Advisor",
"description": "+1 Action\nReveal the top 3 cards of your deck. The player to your left chooses one of them. Discard that card. Put the other cards into your hand."
},
"Delve": {
"extra": "Each purchase of Delve gives you back the Buy you used on it.\nFor example, if you have 7 Coins, you can Delve, then Delve, then buy a card for 3 Coins.",
"name": "Delve",
"description": "+1 Buy\nGain a Silver."
},
"Noble Brigand": {
"extra": "When you play this, you get +1 coin. When you play this and also when you buy it, each other player reveals the top two cards of his deck, trashes a Silver or Gold he revealed that you choose, and discards the rest. Each of these players that did not reveal a Treasure at all gains a Copper from the Supply, putting it into his discard pile. Finally, you gain all of the Silvers and Golds trashed this way. This cannot trash any Treasures except Silver or Gold. Gaining a Noble Brigand without buying it does not cause this ability to happen. Noble Brigand is an Attack card, and when you play it, players can use cards like Moat from Dominion or Secret Chamber from Intrigue in response. However, buying a Noble Brigand is not \"playing an Attack card,\" and so cards like Moat cannot respond to that.",
"name": "Noble Brigand",
"description": "+1 Coin\nWhen you buy this or play it, each other player reveals the top 2 cards of his deck, trashes a revealed Silver or Gold you choose, and discards the rest. If he didn't reveal a Treasure, he gains a Copper. You gain the trashed cards."
},
"Miser": {
"extra": "You may choose to put a Copper from your hand on your mat even if you have no Coppers in hand; nothing will happen. You may also choose to get + 1 Coin per Copper on your mat if there are no Coppers on your mat; nothing will happen. Putting a Copper from your hand on your mat is not trashing it; Coppers on your mat are not in play, but count as part of your deck when scoring at the end.",
"name": "Miser",
"description": "Choose one: Put a Copper from your hand onto your Tavern mat; or +1 Coin per Copper on your Tavern mat."
},
"Advance": {
"extra": "If you do not trash an Action, nothing else happens.",
"name": "Advance",
"description": "You may trash an Action card from your hand. If you do, gain an Action card costing up to 6 Coins."
},
"Trading Post": {
"extra": "If you have 2 or more cards, you must trash exactly 2 cards and gain a Silver card. The gained Silver card goes into your hand and can be spent the same turn. If the Silver pile is empty, you do not gain a Silver card (but still trash cards if possible). If you only have one card left in your hand and you play Trading Post, you trash the one remaining card but you do not gain a Silver. If you have no cards left when you play this, nothing happens.",
"name": "Trading Post",
"description": "Trash 2 cards from your hand. If you do, gain a silver card; put it into your hand."
},
"Sentry": {
"extra": "First you draw a card and get +1 Action.\n Then you look at the top 2 cards of your deck.\n You can trash both, or discard both, or put both back in either order; or you can trash one and discard one, or trash one and put one back, or discard one and put one back.",
"name": "Sentry",
"description": "+1 Card\n+1 Action\nLook at the top 2 cards of your deck. Trash and/or discard any number of them. Put the rest back on top in any order."
},
"Envoy": {
"extra": "If you do not have 5 cards in your deck, reveal as many as you can and shuffle your discard pile to reveal the rest. The player to your left then chooses one of the revealed cards for you to discard and then you draw the rest. If you do not have enough cards left to reveal 5 cards, even after shuffling, reveal as many as you can. The opponent to your left still discards one card before you draw the rest.",
"name": "Envoy",
"description": "Reveal the top 5 cards of your deck. The player to your left chooses one for you to discard. Draw the rest."
},
"Summon": {
"extra": "When you buy this, you gain an Action card costing up to 4 coins from the Supply and set it aside face up.\nIf you did set it aside, then at the start of your next turn, play that Action card. This doesn't use up your default Action for the turn.\nIn order to remember to play the card on your next turn, you may want to turn it sideways or diagonally, turning it right side up when you play it.\nIf you move the Action card after you gain it but before you set it aside (e.g. by putting it on top of your deck with Watchtower, from Dominion: Prosperity), then Summon will ''lose track'' of it and be unable to set it aside; in that case you will not play it at the start of your next turn.\nIf you use Summon to gain a Nomad Camp (from Dominion: Hinterlands), Summon will know to find the Nomad Camp on your deck, so you will set it aside in that case (unless you have moved it elsewhere via another ability).",
"name": "Summon",
"description": "Gain an Action card costing up to 4 coins. Set it aside. If you do, then at the start of your next turn, play it."
},
"Triumphal Arch": {
"extra": "For example, if you had 7 copies of Villa and 4 copies of Wild Hunt, you would score 12<VP>.",
"name": "Triumphal Arch",
"description": "When scoring, 3<VP> per copy you have of the 2nd most common Action card among your cards (if it\u2019s a tie, count either)."
},
"Monument": {
"extra": "[When a player takes VP tokens, he takes a player mat to put them on. VP tokens are not private and anyone can count them. VP tokens come in 1 VP and 5 VP denominations and players can make change as needed. Tokens are unlimited and if they run out, use something else to track any further tokens. At the end of the game, players add the total value of their VP tokens to their score.]",
"name": "Monument",
"description": "+2 Coins; +1 <VP>"
},
"Page": {
"extra": "See the section on Travelers. When you play Page, you get +1 Card and +1 Action. When you discard it from play, you may return it to its pile and take a Treasure Hunter, putting it into your discard pile.",
"name": "Page",
"description": "+1 Card\n+1 Action\n______________________\nWhen you discard this from play, you may exchange it for a Treasure Hunter."
},
"Beggar": {
"extra": "When you play this, you gain three Coppers from the Supply, putting them into your hand. If there are not three Coppers left, just gain as many as you can. When another player plays an Attack card, you may discard this from your hand. If you do, you gain two Silvers from the Supply, putting one on your deck and the other into your discard pile. If there is only one Silver left, put it on your deck; if there are no Silvers left, you do not gain any.",
"name": "Beggar",
"description": "Gain 3 Coppers, putting them into your hand.\n______________________\nWhen another player plays an Attack card, you may discard this.\nIf you do, gain two Silvers, putting one on top of your deck."
},
"Procession": {
"extra": "Playing an Action card from your hand is optional. If you do play one, you then play it a second time, then trash it, then gain an Action card costing exactly 1 Coin more than it (even if somehow you failed to trash it). Gaining a card is not optional once you choose to play an Action card, but will fail to happen if no card in the Supply costs the exact amount needed. If something happens due to trashing the card - for example drawing 3 cards due to trashing a Cultist - that will resolve before you gain a card. The gained card comes from the Supply and is put into your discard pile. This does not use up any extra Actions you were allowed to play due to cards like Fortress - Procession itself uses up one Action and that is it. You cannot play any other cards in between resolving the Procession-ed Action card multiple times, unless that Action card specifically tells you to (such as Procession itself does). If you Procession a Procession, you will play one Action twice, trash it, gain an Action card costing 1 Coin more, then play another Action twice, trash it, gain an Action card costing 1 Coin more, then trash the Procession and gain an Action costing 1 Coin more than it. If you Procession a card that gives you +1 Action, such as Vagrant, you will end up with 2 Actions to use afterwards, rather than the one you would have left if you just played two Vagrants. If you use Procession on a Duration card (from Seaside), Procession will stay out until your next turn and the Duration card will have its effect twice on your next turn, even though the Duration card is trashed.",
"name": "Procession",
"description": "You may play an Action card from your hand twice. Trash it. Gain an Action card costing exactly 1 Coin more than it."
},
"Village": {
"extra": "If you're playing multiple Villages, keep a careful count of your Actions. Say how many you have left out loud; this trick works every time.",
"name": "Village",
"description": "+1 Card, +2 Actions."
}
}
{
"adventures": {
"set_name": "Adventures",
"text_icon": "Ad"
},
"alchemy": {
"set_name": "Alchemy",
"text_icon": "A"
},
"base": {
"set_name": "Base",
"text_icon": "B"
},
"cornucopia": {
"set_name": "Cornucopia",
"text_icon": "C"
},
"dark ages": {
"set_name": "Dark Ages",
"text_icon": "D"
},
"dominion1stEdition": {
"set_name": "Dominion 1st Edition",
"text_icon": "D1"
},
"dominion2ndEdition": {
"set_name": "Dominion 2nd Edition",
"text_icon": "D2"
},
"dominion2ndEditionUpgrade": {
"set_name": "Dominion 2nd Edition Upgrade",
"text_icon": "D2"
},
"empires": {
"set_name": "Empires",
"text_icon": "E"
},
"guilds": {
"set_name": "Guilds",
"text_icon": "G"
},
"hinterlands": {
"set_name": "Hinterlands",
"text_icon": "H"
},
"intrigue1stEdition": {
"set_name": "Intrigue 1st Edition",
"text_icon": "I1"
},
"intrigue2ndEdition": {
"set_name": "Intrigue 2nd Edition",
"text_icon": "I2"
},
"intrigue2ndEditionUpgrade": {
"set_name": "Intrigue 2nd Edition Upgrade",
"text_icon": "I2"
},
"promo": {
"set_name": "Promo",
"text_icon": "P"
},
"prosperity": {
"set_name": "Prosperity",
"text_icon": "P"
},
"seaside": {
"set_name": "Seaside",
"text_icon": "S"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment