jcbantuelle/dominion-meteor

View on GitHub
app/cards/intrigue/coppersmith.js

Summary

Maintainability
A
1 hr
Test Coverage
Coppersmith = class Coppersmith extends Card {

  types() {
    return ['action']
  }

  coin_cost() {
    return 4
  }

  play(game, player_cards) {
    game.turn.coppersmiths += 1
  }

}