mirror of
https://github.com/neogeek23/Dominion-Strategy-Simulator.git
synced 2026-02-04 11:08:18 +00:00
10 lines
199 B
Python
10 lines
199 B
Python
|
|
from card.basic.card_action import Action
|
||
|
|
from card.special.card_gain import CardGain
|
||
|
|
|
||
|
|
|
||
|
|
class Workshop(Action, CardGain):
|
||
|
|
coin_gain = 4
|
||
|
|
|
||
|
|
def effect(self):
|
||
|
|
self.gain_card(self.coin_gain)
|