diff --git a/Mage.Sets/src/mage/cards/l/LeadTheStampede.java b/Mage.Sets/src/mage/cards/l/LeadTheStampede.java index 6511e7f85f..7b5a8bd81a 100644 --- a/Mage.Sets/src/mage/cards/l/LeadTheStampede.java +++ b/Mage.Sets/src/mage/cards/l/LeadTheStampede.java @@ -1,32 +1,37 @@ - package mage.cards.l; -import java.util.UUID; import mage.abilities.effects.common.LookLibraryAndPickControllerEffect; import mage.cards.CardImpl; import mage.cards.CardSetInfo; import mage.constants.CardType; import mage.filter.FilterCard; +import java.util.UUID; + /** - * * @author North */ public final class LeadTheStampede extends CardImpl { private static final FilterCard filter = new FilterCard("any number of creature cards"); + static { filter.add(CardType.CREATURE.getPredicate()); } 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. - 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); }