mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
fixed Lead the Stampede text
This commit is contained in:
parent
c5675140e6
commit
3a28647716
1 changed files with 11 additions and 6 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue