@ -51,17 +51,19 @@ class Personnage:
def affiche_caracteristiques ( self ) :
# print("Votre personnage s'apelle :", self.nom ,".Il appartient a la categorie des:", self.cat ,".Il a acctuellement", self.hp ," points de vie et ", self.xp ,"d'experience.")
print ( f " votre perso : { self . nom } \n "
f " votre categorie : { self . cat } " )
print ( f " Votre nom : { self . nom } \n "
f " Votre categorie : { self . cat } \n "
f " Vos points de vie : { self . hp } \n "
f " Votre experience : { self . xp } \n " )
def affiche_inventaire ( self ) :
if self . cat == ' Guerrier ' :
print ( " Votre personnage a : " )
print ( " Votre personnage a : Épée, Potion " )
if self . cat == ' Magicien ' :
print ( " Votre personnage a : " )
print ( " Votre personnage a : Bâton, Potion " )
if self . cat == ' Voleur ' :
print ( " Votre personnage a : " )
print ( " Votre personnage a : Dague, Potion " )
if self . cat == ' Elfe ' :
print ( " Votre personnage a : " )
print ( " Votre personnage a : Arc, Potion " )