mirror of
https://github.com/neogeek23/Dominion-Strategy-Simulator.git
synced 2026-02-04 11:08: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!
9 lines
140 B
Python
9 lines
140 B
Python
from card.card_gain import CardGain
|
|
|
|
|
|
class Workshop(CardGain):
|
|
coin_gain = 4
|
|
|
|
def effect(self):
|
|
self.gain_card(self.coin_gain)
|