Brad Stein 344b744c2f
Add files via upload
Split up trash_gain_card into two classes since workshop was really a sub section of that.  Added workshop.  All intro cards functional!
2017-12-30 20:26:44 -06:00

9 lines
235 B
Python

from card.card import Card
from card.card_gain_trash import CardGainTrash
class Mine(CardGainTrash):
coin_gain = 3
trashable_type_restriction = [Card.CardType.Treasure]
gainable_type_restriction = [Card.CardType.Treasure]