jcbantuelle/dominion-meteor

View on GitHub
app/cards/menagerie/events/seize_the_day.js

Summary

Maintainability
A
0 mins
Test Coverage
SeizeTheDay = class SeizeTheDay extends Event {

  coin_cost() {
    return 4
  }

  buy(game, player_cards) {
    player_cards.seize_the_day = true
    game.turn.seize_the_day = this.to_h()
  }

}