jcbantuelle/dominion-meteor

View on GitHub
app/cards/nocturne/boons/the_forests_gift.js

Summary

Maintainability
A
1 hr
Test Coverage
TheForestsGift = class TheForestsGift extends Boon {

  receive(game, player_cards) {
    let buy_gainer = new BuyGainer(game, player_cards)
    buy_gainer.gain(1)

    let coin_gainer = new CoinGainer(game, player_cards)
    coin_gainer.gain(1)

    return true
  }

}