Brad Stein 69a8022f22
Add files via upload
had removed passive method as it is not used, where as a setup method will probably be
2017-12-30 22:44:48 -06:00

10 lines
224 B
Python

from card.card_trash import CardTrash
from card.card_gain import CardGain
class CardGainTrash(CardTrash, CardGain):
coin_gain = 0
def effect(self):
self.gain_card(self.trash_card_get_cost() + self.coin_gain)