mirror of
https://github.com/neogeek23/Dominion-Strategy-Simulator.git
synced 2026-02-04 11:08:18 +00:00
13 lines
350 B
Python
13 lines
350 B
Python
from player.bot import Bot
|
|
|
|
|
|
class Pure_Big_Money(Bot):
|
|
target_card = "Province"
|
|
target_card_threshold = 8
|
|
|
|
def take_action(self):
|
|
print("\nAs a BIG MONEY BOT, I'm skipping this unnecessary action phase. Beep-boop, bow to me humans!")
|
|
|
|
def __str__(self):
|
|
return "Player " + str(self.get_player_index()) + " (pure big money bot)"
|