forked from External/mage
85 lines
2.5 KiB
Java
85 lines
2.5 KiB
Java
/*
|
|
* To change this license header, choose License Headers in Project Properties.
|
|
* To change this template file, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package mage.abilities.effects.common;
|
|
|
|
import java.util.UUID;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.Mode;
|
|
import mage.abilities.effects.OneShotEffect;
|
|
import mage.constants.Outcome;
|
|
import mage.game.Game;
|
|
import mage.game.permanent.Permanent;
|
|
import mage.target.Target;
|
|
|
|
/**
|
|
*
|
|
* @author fireshoes
|
|
*/
|
|
public class PhaseOutTargetEffect extends OneShotEffect {
|
|
|
|
protected String targetDescription;
|
|
protected boolean useOnlyTargetPointer;
|
|
|
|
public PhaseOutTargetEffect() {
|
|
super(Outcome.Detriment);
|
|
}
|
|
|
|
public PhaseOutTargetEffect(String targetDescription, boolean useOnlyTargetPointer) {
|
|
super(Outcome.Detriment);
|
|
this.targetDescription = targetDescription;
|
|
this.useOnlyTargetPointer = useOnlyTargetPointer;
|
|
}
|
|
|
|
public PhaseOutTargetEffect(final PhaseOutTargetEffect effect) {
|
|
super(effect);
|
|
this.targetDescription = effect.targetDescription;
|
|
this.useOnlyTargetPointer = effect.useOnlyTargetPointer;
|
|
}
|
|
|
|
@Override
|
|
public PhaseOutTargetEffect copy() {
|
|
return new PhaseOutTargetEffect(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean apply(Game game, Ability source) {
|
|
if (!useOnlyTargetPointer && source.getTargets().size() > 1) {
|
|
for (Target target : source.getTargets()) {
|
|
for (UUID targetId : target.getTargets()) {
|
|
Permanent permanent = game.getPermanent(targetId);
|
|
if (permanent != null) {
|
|
permanent.phaseOut(game);
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
for (UUID targetId : this.getTargetPointer().getTargets(game, source)) {
|
|
Permanent permanent = game.getPermanent(targetId);
|
|
if (permanent != null) {
|
|
permanent.phaseOut(game);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public String getText(Mode mode) {
|
|
if (staticText != null && !staticText.isEmpty()) {
|
|
return staticText + " phases out";
|
|
}
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
if (targetDescription != null && !targetDescription.isEmpty()) {
|
|
sb.append(targetDescription);
|
|
} else {
|
|
sb.append("Target ").append(mode.getTargets().get(0).getTargetName());
|
|
}
|
|
sb.append(" phases out");
|
|
return sb.toString();
|
|
}
|
|
|
|
}
|