add method to check for criticality of card

This commit is contained in:
Maximilian Keßler 2023-11-10 12:05:23 +01:00
parent c0e63fe17e
commit 40baa59bd3
Signed by: max
GPG Key ID: BCC5A619923C0BA5

View File

@ -310,6 +310,17 @@ class GameState:
def is_trash(self, card: DeckCard):
return self.stacks[card.suitIndex] >= card.rank
def is_critical(self, card: DeckCard):
if card.rank == 5:
return True
if self.is_trash(card):
return False
count = 0
for hand in self.hands:
count += hand.count(card)
count += self.deck[self.progress:].count(card)
return count == 1
def holding_players(self, card):
for (player, hand) in enumerate(self.hands):
if card in hand: