opale/opale/board.py

26 lines
546 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Wed Mar 4 22:23:56 2020
@author: AlexandreMouchel
"""
class Board():
def __init__(self):
self.chasseresse = []
self.dragonCorail = []
self.pearl = []
self.witch = []
self.dragonPetrified = []
self.golem = []
self.guardian = []
self.horser = []
self.city = []
self.underTheBoard = []
self.roundCity = 0
def isFinished(self):
return self.roundCity >= 3