This commit is contained in:
Paul Gross
2020-04-21 18:01:24 +02:00
parent 2098793895
commit 1e5828f763
16 changed files with 38 additions and 76 deletions

View File

@@ -21,13 +21,13 @@ public class Georges extends Unique{
public void utiliser() {
Joueur joueur = this.getJoueur();
if(this.isCapaciteUsed() && joueur.getRevele()) {
if(!this.isCapaciteUsed() && joueur.getRevele()) {
Plateau p = joueur.getPlateau();
int roll = p.roll4();
Joueur joueur2 = joueur.choisirTous();
joueur2.addToStat(Joueur.PLAYER_HP, -roll);
super.attaquer(joueur2, roll);
}
}