2020-04-18 13:18:21 +02:00
|
|
|
package effet;
|
|
|
|
|
2020-04-20 14:37:11 +02:00
|
|
|
import effet.action.Action;
|
2020-04-18 13:18:21 +02:00
|
|
|
import main.Joueur;
|
|
|
|
|
|
|
|
public class EffetChoisirCible extends Effet{
|
|
|
|
|
|
|
|
public EffetChoisirCible(Action action) {
|
|
|
|
super(action);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void utiliser(Joueur joueur) {
|
|
|
|
|
2020-04-21 15:27:27 +02:00
|
|
|
Joueur j2 = joueur.choisirTous();
|
2020-04-18 13:18:21 +02:00
|
|
|
Action action = this.getAction();
|
|
|
|
|
|
|
|
action.affecte(joueur, j2);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|