Add win token action.
[naja.git] / naja / gameboard.py
index 8d4106cc931011dea15725842abf188a0b51f999..ae80b8c887e926ceaa27af72b76f25ab3ad6a832 100644 (file)
@@ -90,6 +90,10 @@ class GameBoard(object):
         self.health -= 1
         # TODO: Check win/lose
 
+    def acquire_win_token(self):
+        self.wins += 1
+        # TODO: Check win/lose
+
     def replace_card(self, position):
         location = LocationCard.new_location(choice(self.locations).copy())
         self.board_locations[position] = location