Skip to content

Commit

Permalink
Merge pull request #114 from jbw3/seaside
Browse files Browse the repository at this point in the history
Seaside
  • Loading branch information
evanofslack authored May 6, 2024
2 parents 20d8289 + 1711ab3 commit 146afac
Show file tree
Hide file tree
Showing 53 changed files with 5,306 additions and 454 deletions.
12 changes: 12 additions & 0 deletions pyminion/bots/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,18 @@ def multi_play_decision(
else:
return None

def set_aside_decision(
self,
prompt: str,
card: "Card",
valid_cards: List["Card"],
player: "Player",
game: "Game",
min_num_set_aside: int = 0,
max_num_set_aside: int = -1,
) -> List["Card"]:
return valid_cards[:min_num_set_aside]


class Bot(Player):
"""
Expand Down
Loading

0 comments on commit 146afac

Please sign in to comment.