mirror of
https://github.com/neogeek23/Dominion-Strategy-Simulator.git
synced 2026-02-04 19:18:18 +00:00
9 lines
171 B
Python
9 lines
171 B
Python
|
|
from supply import Supply
|
||
|
|
|
||
|
|
|
||
|
|
class Discard(Supply):
|
||
|
|
def cycle_card(self, deck):
|
||
|
|
while self.get_remaining() > 0:
|
||
|
|
self.transfer_top_card(deck)
|
||
|
|
deck.shuffle()
|