Brad Stein 92bd340d3a
Add files via upload
Added Remodel.  Made Remodel and Mine inherit from the same subclass as they are very similar.
2017-12-30 11:56:31 -06:00

9 lines
237 B
Python

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