Skip to content

Commit

Permalink
Implemented Festival
Browse files Browse the repository at this point in the history
  • Loading branch information
martynsmith committed Aug 1, 2010
1 parent 1e8e05a commit b8b66df
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions lib/Dominion/Cards/Festival.pm
Expand Up @@ -9,9 +9,18 @@ sub box { 'Dominion' }
sub cost_coin { 5 }
sub cost_potion { 0 }

# +2 Actions
# +1 Buy
# +2 Gold.
sub action {
my ($self, $player) = @_;

# +2 actions
$player->actions_add(2);

# +1 buy
$player->buys_add(1);

# +2 coin
$player->coin_add(2);
}

#__PACKAGE__->meta->make_immutable;
1;

0 comments on commit b8b66df

Please sign in to comment.