fixed Lead the Stampede text

This commit is contained in:
Evan Kranzler 2020-04-20 21:26:37 -04:00
parent c5675140e6
commit 3a28647716

View file

@ -1,32 +1,37 @@
package mage.cards.l; package mage.cards.l;
import java.util.UUID;
import mage.abilities.effects.common.LookLibraryAndPickControllerEffect; import mage.abilities.effects.common.LookLibraryAndPickControllerEffect;
import mage.cards.CardImpl; import mage.cards.CardImpl;
import mage.cards.CardSetInfo; import mage.cards.CardSetInfo;
import mage.constants.CardType; import mage.constants.CardType;
import mage.filter.FilterCard; import mage.filter.FilterCard;
import java.util.UUID;
/** /**
*
* @author North * @author North
*/ */
public final class LeadTheStampede extends CardImpl { public final class LeadTheStampede extends CardImpl {
private static final FilterCard filter = new FilterCard("any number of creature cards"); private static final FilterCard filter = new FilterCard("any number of creature cards");
static { static {
filter.add(CardType.CREATURE.getPredicate()); filter.add(CardType.CREATURE.getPredicate());
} }
public LeadTheStampede(UUID ownerId, CardSetInfo setInfo) { public LeadTheStampede(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{2}{G}"); super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{G}");
// Look at the top five cards of your library. You may reveal any number of creature cards from among them and put the revealed cards into your hand. Put the rest on the bottom of your library in any order. // Look at the top five cards of your library. You may reveal any number of creature cards from among them and put the revealed cards into your hand. Put the rest on the bottom of your library in any order.
this.getSpellAbility().addEffect(new LookLibraryAndPickControllerEffect(5, 5, filter, true)); this.getSpellAbility().addEffect(new LookLibraryAndPickControllerEffect(
5, 5, filter, true
).setText("Look at the top five cards of your library. " +
"You may reveal any number of creature cards from among them " +
"and put the revealed cards into your hand. " +
"Put the rest on the bottom of your library in any order."));
} }
public LeadTheStampede(final LeadTheStampede card) { private LeadTheStampede(final LeadTheStampede card) {
super(card); super(card);
} }