jcbantuelle/dominion-meteor

View on GitHub
app/cards/prosperity/quarry.js

Summary

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

  types() {
    return ['treasure']
  }

  coin_cost() {
    return 4
  }

  play(game, player_cards) {
    let coin_gainer = new CoinGainer(game, player_cards)
    coin_gainer.gain(1, false)
  }

}