|
@ -8,7 +8,7 @@ def bataille(): |
|
|
j1 = Joueur(carte_j1, nom) |
|
|
j1 = Joueur(carte_j1, nom) |
|
|
j2 = Joueur(carte_j2, "Bot") |
|
|
j2 = Joueur(carte_j2, "Bot") |
|
|
while not j1.paquet_j.est_vide() and not j2.paquet_j.est_vide(): |
|
|
while not j1.paquet_j.est_vide() and not j2.paquet_j.est_vide(): |
|
|
valeur_carte_j1 = tire_carte() |
|
|
valeur_carte_j1 = j1.tire_carte() |
|
|
valeur_carte_j2 = tire_carte() |
|
|
valeur_carte_j2 = j2.tire_carte() |
|
|
carte_j1.compare(carte_j2) |
|
|
carte_j1.compare(carte_j2) |
|
|
|
|
|
|