mirror of
https://github.com/neogeek23/Dominion-Strategy-Simulator.git
synced 2026-02-04 19:18:18 +00:00
Split up trash_gain_card into two classes since workshop was really a sub section of that. Added workshop. All intro cards functional!
10 lines
224 B
Python
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)
|