mirror of
https://github.com/neogeek23/Dominion-Strategy-Simulator.git
synced 2026-02-04 11:08:18 +00:00
9 lines
215 B
Python
9 lines
215 B
Python
|
|
from player.bot import Bot
|
||
|
|
|
||
|
|
|
||
|
|
class Smithy_Big_Money(Bot):
|
||
|
|
target_card = "Smithy"
|
||
|
|
target_card_threshold = 5
|
||
|
|
|
||
|
|
def __str__(self):
|
||
|
|
return "Player " + str(self.get_player_index()) + " (smithy big money bot)"
|