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