|
@ -95,8 +95,27 @@ class Personnage : |
|
|
joueur_2 = Personnage (joueur_2_nom,joueur_2_cat) |
|
|
joueur_2 = Personnage (joueur_2_nom,joueur_2_cat) |
|
|
|
|
|
|
|
|
while joueur_1.pdv > 0 and joueur_2.pdv > 0 : |
|
|
while joueur_1.pdv > 0 and joueur_2.pdv > 0 : |
|
|
|
|
|
j1A = joueur_1.jet_attaque() |
|
|
perso1 = Personnage("toto", "guerrier") |
|
|
j2B = joueur_2.jet_defence() |
|
|
return affiche_inventaire |
|
|
|
|
|
|
|
|
if j1A > j2B: |
|
|
perso2 = Personnage("bob", "elfe") |
|
|
joueur_1.affiche_caracteristique() |
|
|
|
|
|
joueur_2.affiche_caracteristique() |
|
|
|
|
|
else j1A < j2B: |
|
|
|
|
|
joueur_1.affiche_caracteristique() |
|
|
|
|
|
joueur_2.affiche_caracteristique() |
|
|
|
|
|
j2A = joueur_2.jet_attaque() |
|
|
|
|
|
j1B = joueur_1.jet defence() |
|
|
|
|
|
|
|
|
|
|
|
if j2A > j1B: |
|
|
|
|
|
joueur_1.affiche_caracteristique() |
|
|
|
|
|
joueur_2.affiche_caracteristique() |
|
|
|
|
|
else j2A < j1B: |
|
|
|
|
|
joueur_1.affiche_caracteristique() |
|
|
|
|
|
joueur_2.affiche_caracteristique() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#perso1 = Personnage("toto", "guerrier") |
|
|
|
|
|
#return affiche_inventaire |
|
|
|
|
|
|
|
|
|
|
|
#perso2 = Personnage("bob", "elfe") |