2020-04-17 14:32:07 +02:00
|
|
|
|
package personnage;
|
|
|
|
|
|
2020-04-18 19:39:59 +02:00
|
|
|
|
import condition.WinConditionShadow;
|
2020-04-17 14:32:07 +02:00
|
|
|
|
import main.Joueur;
|
|
|
|
|
|
|
|
|
|
public class LoupGarou extends CartePersonnage {
|
|
|
|
|
//constructeur
|
2020-04-21 15:27:27 +02:00
|
|
|
|
public LoupGarou(String nom, String desc ,int hp, Joueur joueur) {
|
|
|
|
|
super(nom,desc, hp, joueur);
|
2020-04-18 19:39:59 +02:00
|
|
|
|
|
|
|
|
|
this.setCondition(new WinConditionShadow());
|
2020-04-17 14:32:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-18 14:31:16 +02:00
|
|
|
|
//m<>thodes
|
2020-04-17 14:32:07 +02:00
|
|
|
|
public void contreAttaquer(Joueur j) {
|
|
|
|
|
|
|
|
|
|
}
|
2020-04-21 11:46:41 +02:00
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void utiliser() {
|
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
|
|
|
|
|
|
}
|
2020-04-21 16:37:23 +02:00
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void attaquer(Joueur j, int blessure) {
|
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
|
|
|
|
|
|
}
|
2020-04-17 14:32:07 +02:00
|
|
|
|
}
|