mirror of
https://github.com/neogeek23/Dominion-Strategy-Simulator.git
synced 2026-02-04 11:08:18 +00:00
10 lines
240 B
Python
10 lines
240 B
Python
from card.special.card_trash import CardTrash
|
|
from card.special.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)
|