mirror of
https://github.com/neogeek23/Dominion-Strategy-Simulator.git
synced 2026-02-04 11:08:18 +00:00
Refactored card typing to no longer be a piece of data but a feature of the object structure.
10 lines
281 B
Python
10 lines
281 B
Python
from card.basic.card_action import Action
|
|
from card.basic.card_treasure import Treasure
|
|
from card.special.card_gain_trash import CardGainTrash
|
|
|
|
|
|
class Mine(Action, CardGainTrash):
|
|
coin_gain = 3
|
|
trashable_type_restriction = Treasure
|
|
gainable_type_restriction = Treasure
|