From 16c546d37bc98c24f417df004e4a09d0f115415a Mon Sep 17 00:00:00 2001 From: trystan deneuve <> Date: Mon, 16 Sep 2024 11:56:24 +0200 Subject: [PATCH 1/2] classe finie --- mini_projet_jeu_de_role.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/mini_projet_jeu_de_role.py b/mini_projet_jeu_de_role.py index 459d6c5..b0210f8 100644 --- a/mini_projet_jeu_de_role.py +++ b/mini_projet_jeu_de_role.py @@ -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") \ No newline at end of file From 78ac28ec985bacfacdde63ba49f306e602b3de9a Mon Sep 17 00:00:00 2001 From: trystan deneuve <> Date: Tue, 17 Sep 2024 15:45:34 +0200 Subject: [PATCH 2/2] debut de la def globale --- mini_projet_jeu_de_role.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/mini_projet_jeu_de_role.py b/mini_projet_jeu_de_role.py index b0210f8..796ae93 100644 --- a/mini_projet_jeu_de_role.py +++ b/mini_projet_jeu_de_role.py @@ -66,4 +66,14 @@ class Personnage: if self.cat == 'Elfe': print("Votre personnage a : Arc, Potion") - \ No newline at end of file + +def jeu(self, attaquant, defenseur): + + attaquant = print(input("Quel est le nom de l'attaquant ? ",)) + defenseur = print(input("Quel est le nom du defenseur ? ",)) + + + if self.jet_attaque > self.jet_defense : + defenseur + if self.jet_attaque < self.jet_defense : + attaquant \ No newline at end of file