mirror of
https://github.com/neogeek23/Dominion-Strategy-Simulator.git
synced 2026-02-04 19:18:18 +00:00
9 lines
237 B
Python
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]
|