10 lines
199 B
Python
Raw Normal View History

2018-01-10 14:10:20 -05:00
from card.basic.card_action import Action
from card.special.card_gain import CardGain
2018-01-10 14:10:20 -05:00
class Workshop(Action, CardGain):
coin_gain = 4
def effect(self):
self.gain_card(self.coin_gain)