9 lines
247 B
Python
Raw Normal View History

2017-12-30 12:15:51 -06:00
from card.card import Card
from card.trash_gain_card import TrashGainEffectCard
class Mine(TrashGainEffectCard):
coin_gain = 3
trashable_type_restriction = [Card.CardType.Treasure]
gainable_type_restriction = [Card.CardType.Treasure]