diff --git a/card_db/en_us/dominion_cards.txt b/card_db/en_us/dominion_cards.txt index f5f5da6..63f54f3 100644 --- a/card_db/en_us/dominion_cards.txt +++ b/card_db/en_us/dominion_cards.txt @@ -598,7 +598,7 @@ At the end of your Buy phase, if you have at least 2 Coins unspent, you may disc +2 Actions ______________________ When you buy this, gain another Port. -25 Coin of the Realm Adventures Treasure - Reserve $2 1 Coin +25 Coin of the Realm Adventures Treasure - Reserve $2 1 Coin When you play this, put it on your Tavern mat. ______________________ Directly after resolving an Action, you may call this for +2 Actions. @@ -617,41 +617,41 @@ When you discard this from play, you may exchange it for a Treasure Hunter. +1 Coin ______________________ When you discard this from play, you may exchange it for a Soldier. -31 Treasure Hunter Adventures Action - Traveller $3 +1 Action +31 Treasure Hunter Adventures Action - Traveller $3 +1 Action +1 Coin Gain a Silver per card the player to your right gained in his last turn. ______________________ When you discard this from play, you may exchange it for a Warrior. (This is not in the Supply.) -32 Warrior Adventures Action - Attack - Traveller $4 +2 Cards +32 Warrior Adventures Action - Attack - Traveller $4 +2 Cards For 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. ______________________ When you discard this from play, you may exchange it for a Hero. (This is not in the Supply.) -33 Hero Adventures Action - Traveller $5 +2 Coins +33 Hero Adventures Action - Traveller $5 +2 Coins Gain a Treasure. ______________________ When you discard this from play, you may exchange it for a Champion. (This is not in the Supply.) -34 Champion Adventures Action - Duration $6 +1 Action +34 Champion Adventures Action - Duration $6 +1 Action For the rest of the game, when another player plays an Attack, it doesn't affect you, and when you play an Action, +1 Action. (This stays in play. This is not in the Supply.) -35 Soldier Adventures Action - Attack - Traveller $3 +2 Coins +35 Soldier Adventures Action - Attack - Traveller $3 +2 Coins +1 Coin per other Attack you have in play. Each other player with 4 or more cards in hand discards a card. ______________________ When you discard this from play, you may exchange it for a Fugitive. (This is not in the Supply.) -36 Fugitive Adventures Action - Traveller $4 +2 Cards +36 Fugitive Adventures Action - Traveller $4 +2 Cards +1 Action Discard a card. ______________________ When you discard this from play, you may exchange it for a Disciple. (This is not in the Supply.) -37 Disciple Adventures Action - Traveller $5 You may play an Action card from your hand twice. Gain a copy of it. +37 Disciple Adventures Action - Traveller $5 You may play an Action card from your hand twice. Gain a copy of it. ______________________ When you discard this from play, you may exchange it for a Teacher. (This is not in the Supply.) -38 Teacher Adventures Action - Reserve $6 Put this on your Tavern mat. +38 Teacher Adventures Action - Reserve $6 Put this on your Tavern mat. ______________________ At 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). (This is not in the Supply.) diff --git a/dominion_tabs.py b/dominion_tabs.py index b9f10e6..7ab47f1 100644 --- a/dominion_tabs.py +++ b/dominion_tabs.py @@ -107,6 +107,7 @@ class DominionTabs: CardType(('Action', 'Ruins'), 'ruins.png', 0, 1), CardType(('Action', 'Shelter'), 'shelter.png', 0, 1), CardType(('Action', 'Attack', 'Looter'), 'action.png'), + CardType(('Action', 'Attack', 'Traveller'), 'action.png'), CardType(('Action', 'Reserve'), 'action.png'), CardType(('Action', 'Reserve', 'Victory'), 'action.png'), CardType(('Action', 'Traveller'), 'action.png'), @@ -118,6 +119,7 @@ class DominionTabs: CardType(('Treasure', 'Victory'), 'treasure-victory.png'), CardType(('Treasure', 'Prize'), 'treasure.png', 3, 0), CardType(('Treasure', 'Reaction'), 'treasure-reaction.png', 0, 1), + CardType(('Treasure', 'Reserve'), 'treasure.png', 0, 1), CardType(('Victory',), 'victory.png'), CardType(('Victory', 'Reaction'), 'victory-reaction.png', 0, 1), CardType(('Victory', 'Shelter'), 'shelter.png', 0, 1), @@ -147,7 +149,8 @@ class DominionTabs: 'hinterlands': 'hinterlands_set.png', 'dark ages': 'dark_ages_set.png', 'dark ages extras': 'dark_ages_set.png', - 'guilds': 'guilds_set.png' + 'guilds': 'guilds_set.png', + 'adventures': 'adventures_set.png' } promoImages = { 'walled village': 'walled_village_set.png', diff --git a/images/adventures_set.png b/images/adventures_set.png new file mode 100644 index 0000000..516778c Binary files /dev/null and b/images/adventures_set.png differ