setStat Joueur
This commit is contained in:
parent
abee11dae3
commit
9b8fe03673
@ -13,7 +13,7 @@ public class ActionAltererStatistiquesJoueur {
|
||||
this.ajouter = ajouter;
|
||||
}
|
||||
|
||||
public affecter(Joueur j1, Joueur j2)
|
||||
public void affecter(Joueur j1, Joueur j2)
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -6,12 +6,11 @@ public abstract class Effet {
|
||||
|
||||
private Action action;
|
||||
|
||||
public Effet()
|
||||
public Effet(Action action)
|
||||
{
|
||||
|
||||
this.action = action;
|
||||
}
|
||||
|
||||
|
||||
public abstract void utiliser(Joueur joueur);
|
||||
|
||||
|
||||
|
@ -17,4 +17,6 @@ public class EffetCiblerAdjacents extends EffetTarget{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
@ -12,6 +12,10 @@ public class Joueur {
|
||||
return null;
|
||||
}
|
||||
|
||||
public int setStat(String key, int valeur) {
|
||||
return stats.put(key, valeur);
|
||||
}
|
||||
|
||||
public int getStat(String key) {
|
||||
return stats.get(key);
|
||||
}
|
||||
|
@ -19,7 +19,7 @@ public class CartePersonnage extends CarteCondition {
|
||||
this.condition=condition;
|
||||
}
|
||||
|
||||
//m<EFBFBD>thodes
|
||||
//méthodes
|
||||
|
||||
public void utiliser() {};
|
||||
|
||||
|
@ -10,13 +10,13 @@ public class Vampire extends CartePersonnage{
|
||||
//this.setEffet(
|
||||
|
||||
//new EffetSelf( new ActionAltererStatistiquesJoueur("HP",2,true));
|
||||
//);
|
||||
//);
|
||||
//
|
||||
}
|
||||
|
||||
public void utiliser(Joueur j)
|
||||
{
|
||||
//this.getEffet().affecte(this.joueur)
|
||||
//this.getEffet().utiliser()
|
||||
}
|
||||
|
||||
//m<EFBFBD>thode
|
||||
|
Loading…
x
Reference in New Issue
Block a user