voir sa carte perso quand on emet une pression dessus
This commit is contained in:
@ -41,5 +41,11 @@ public class Charles extends CartePersonnage{
|
||||
}
|
||||
|
||||
public void utiliser() {
|
||||
|
||||
/*
|
||||
System.out.println("vie avant : " + this.getJoueur().getCartePersonnage().getPv());
|
||||
this.getJoueur().setStat("HP", this.getJoueur().getStat("HP") - 2);
|
||||
System.out.println("vie apres : " + this.getJoueur().getCartePersonnage().getPv());
|
||||
*/
|
||||
}
|
||||
}
|
||||
|
@ -26,11 +26,6 @@ public class Emi extends CartePersonnage{
|
||||
this.setCondition(new WinConditionHunter());
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void deplacer() {
|
||||
|
||||
@ -38,5 +33,7 @@ public class Emi extends CartePersonnage{
|
||||
|
||||
|
||||
public void utiliser() {
|
||||
|
||||
this.getJoueur().deplacer(this.getJoueur().getCarteLieu().getVoisin());
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user