mirror of
https://github.com/neogeek23/Dominion-Strategy-Simulator.git
synced 2026-02-04 11:08:18 +00:00
11 lines
250 B
Python
11 lines
250 B
Python
|
|
from card.card import Card
|
||
|
|
from math import floor
|
||
|
|
|
||
|
|
|
||
|
|
class Kingdom(Card):
|
||
|
|
pile_player_rate = 10
|
||
|
|
|
||
|
|
@staticmethod
|
||
|
|
def pile_setup(player_count):
|
||
|
|
return (floor(player_count/Card.normal_full_table) + 1) * Card.pile_player_rate
|