У вас не классы и не экземпляры - а микс.
Надо что-то типа:
class figura():
def __init__(self, x, y, colour):
self.x = x
self.y = y
self.colour = colour
class pewka(figura):
def __init__(self, x, y, colour):
super().__init__(x, y, colour)
self.type = "pewka"
class ladja(figura):
def __init__(self, x, y, colour):
super().__init__(x, y, colour)
self.type = "ladja"
и т.п.
Создавать экземпляры - это:
fig1 = pewka('a', 1, 'red')
fig2 = ladja('a', 1, 'red')
тогда можете смело сравнивать
if any_fig.colour = 'red':
...