jcbantuelle/dominion-meteor

View on GitHub
app/cards/alchemy/potion.js

Summary

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

  types() {
    return ['treasure']
  }

  coin_cost() {
    return 4
  }

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

}