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