def __init__(self, color, xPos, yPos): Piece.__init__(self, color, xPos, yPos) self.piecetype = 'knight'
def __init__(self, color, xPos, yPos): Piece.__init__(self, color, xPos, yPos) self.moved = False self.piecetype = 'rook'
def __init__(self, color, xPos, yPos): Piece.__init__(self, color, xPos, yPos) self.colors = color self.piecetype = 'queen'
def __init__(self, color, xPos, yPos): Piece.__init__(self, color, xPos, yPos) self.piecetype = 'pawn' self.moved = False self.bigMove = -10
def __init__(self, color, xPos, yPos): Piece.__init__(self, color, xPos, yPos) self.piecetype = 'bishop'