forked from External/mage
47 lines
1.4 KiB
Java
47 lines
1.4 KiB
Java
package mage.abilities.effects.common;
|
|
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.Mode;
|
|
import mage.abilities.effects.OneShotEffect;
|
|
import mage.constants.Outcome;
|
|
import mage.game.Game;
|
|
import mage.game.stack.StackAbility;
|
|
|
|
public class CopyTargetStackAbilityEffect extends OneShotEffect {
|
|
|
|
/**
|
|
* Copy target (activated/triggered) ability on the stack, choosing new targets for the copy
|
|
*/
|
|
public CopyTargetStackAbilityEffect() {
|
|
super(Outcome.Copy);
|
|
}
|
|
|
|
protected CopyTargetStackAbilityEffect(final CopyTargetStackAbilityEffect effect) {
|
|
super(effect);
|
|
}
|
|
|
|
@Override
|
|
public boolean apply(Game game, Ability source) {
|
|
StackAbility stackAbility = (StackAbility) game.getStack().getStackObject(getTargetPointer().getFirst(game, source));
|
|
if (stackAbility == null) {
|
|
return false;
|
|
}
|
|
stackAbility.createCopyOnStack(game, source, source.getControllerId(), true);
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public CopyTargetStackAbilityEffect copy() {
|
|
return new CopyTargetStackAbilityEffect(this);
|
|
}
|
|
|
|
@Override
|
|
public String getText(Mode mode) {
|
|
if (staticText != null && !staticText.isEmpty()) {
|
|
return staticText;
|
|
}
|
|
return "copy " + getTargetPointer().describeTargets(mode.getTargets(), "that spell")
|
|
+ ". You may choose new targets for the copy";
|
|
}
|
|
|
|
}
|