Ejemplo n.º 1
0
 def __init__(self, color, xPos, yPos):
     Piece.__init__(self, color, xPos, yPos)
     self.piecetype = 'knight'
Ejemplo n.º 2
0
 def __init__(self, color, xPos, yPos):
     Piece.__init__(self, color, xPos, yPos)
     self.moved = False
     self.piecetype = 'rook'
Ejemplo n.º 3
0
 def __init__(self, color, xPos, yPos):
     Piece.__init__(self, color, xPos, yPos)
     self.colors = color
     self.piecetype = 'queen'
Ejemplo n.º 4
0
 def __init__(self, color, xPos, yPos):
     Piece.__init__(self, color, xPos, yPos)
     self.piecetype = 'pawn'
     self.moved = False
     self.bigMove = -10
Ejemplo n.º 5
0
 def __init__(self, color, xPos, yPos):
     Piece.__init__(self, color, xPos, yPos)
     self.piecetype = 'bishop'