예제 #1
0
 def __init__(self, playercount, game):
     BaseBoard.__init__(self, playercount, game)
     self.arcanaCards = random.sample(copy.deepcopy(ARCANACARDS),
                                      len(ARCANACARDS))
     self.fateTokens = random.sample(copy.deepcopy(FATETOKENS),
                                     len(FATETOKENS))
     self.fateTokensDiscard = []
     # Se seteara en difficultad el doom inicial
     self.state = State()
예제 #2
0
	def __init__(self, playercount, game):
		BaseBoard.__init__(self, playercount, game)