mirror of
https://github.com/magefree/mage.git
synced 2026-01-23 19:59:54 -08:00
38 lines
1.2 KiB
Java
38 lines
1.2 KiB
Java
package mage.cards.w;
|
|
|
|
import mage.abilities.effects.common.ExileTargetEffect;
|
|
import mage.abilities.effects.common.counter.ProliferateEffect;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.target.common.TargetCreaturePermanent;
|
|
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public final class WanderersStrike extends CardImpl {
|
|
|
|
public WanderersStrike(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{4}{W}");
|
|
|
|
|
|
// Exile target creature, then proliferate.
|
|
this.getSpellAbility().addEffect(new ExileTargetEffect());
|
|
this.getSpellAbility().addEffect(new ProliferateEffect().setText(
|
|
"then proliferate <i>(Choose any number of permanents and/or players, " +
|
|
"then give each another counter of each kind already there.)</i>"
|
|
));
|
|
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
|
}
|
|
|
|
private WanderersStrike(final WanderersStrike card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public WanderersStrike copy() {
|
|
return new WanderersStrike(this);
|
|
}
|
|
}
|