class Monstre: def __init__(self, nom, x=0, y=0, pv=100): self.__nom = nom self.__pointsDeVie = pv self.__pos_x = x self.__pos_y = y