mirror of
https://github.com/neogeek23/Dominion-Strategy-Simulator.git
synced 2026-02-04 19:18:18 +00:00
had removed passive method as it is not used, where as a setup method will probably be
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)
|