mirror of
https://github.com/correl/mage.git
synced 2025-04-03 01:08:59 -09:00
[MID] Implemented Storm the Festival
This commit is contained in:
parent
a6bf28846d
commit
c58a4f2eb2
2 changed files with 51 additions and 0 deletions
Mage.Sets/src/mage
50
Mage.Sets/src/mage/cards/s/StormTheFestival.java
Normal file
50
Mage.Sets/src/mage/cards/s/StormTheFestival.java
Normal file
|
@ -0,0 +1,50 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.common.LookLibraryAndPickControllerEffect;
|
||||
import mage.abilities.keyword.FlashbackAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.ComparisonType;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.common.FilterPermanentCard;
|
||||
import mage.filter.predicate.mageobject.ManaValuePredicate;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class StormTheFestival extends CardImpl {
|
||||
|
||||
private static final FilterCard filter = new FilterPermanentCard(
|
||||
"up to two permanent cards with mana value 5 or less"
|
||||
);
|
||||
|
||||
static {
|
||||
filter.add(new ManaValuePredicate(ComparisonType.FEWER_THAN, 6));
|
||||
}
|
||||
|
||||
public StormTheFestival(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{G}{G}{G}");
|
||||
|
||||
// Look at the top five cards of your library. Put up to two permanent cards with mana value 5 or less from among them onto the battlefield. Put the rest on the bottom of your library in a random order.
|
||||
this.getSpellAbility().addEffect(new LookLibraryAndPickControllerEffect(
|
||||
5, 2, filter, false, true, Zone.BATTLEFIELD, false
|
||||
).setBackInRandomOrder(true));
|
||||
|
||||
// Flashback {7}{G}{G}{G}
|
||||
this.addAbility(new FlashbackAbility(this, new ManaCostsImpl<>("{7}{G}{G}{G}")));
|
||||
}
|
||||
|
||||
private StormTheFestival(final StormTheFestival card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public StormTheFestival copy() {
|
||||
return new StormTheFestival(this);
|
||||
}
|
||||
}
|
|
@ -245,6 +245,7 @@ public final class InnistradMidnightHunt extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Stalking Predator", 120, Rarity.COMMON, mage.cards.s.StalkingPredator.class));
|
||||
cards.add(new SetCardInfo("Startle", 78, Rarity.COMMON, mage.cards.s.Startle.class));
|
||||
cards.add(new SetCardInfo("Stolen Vitality", 161, Rarity.COMMON, mage.cards.s.StolenVitality.class));
|
||||
cards.add(new SetCardInfo("Storm the Festival", 200, Rarity.RARE, mage.cards.s.StormTheFestival.class));
|
||||
cards.add(new SetCardInfo("Storm-Charged Slasher", 157, Rarity.RARE, mage.cards.s.StormChargedSlasher.class));
|
||||
cards.add(new SetCardInfo("Stormrider Spirit", 79, Rarity.COMMON, mage.cards.s.StormriderSpirit.class));
|
||||
cards.add(new SetCardInfo("Stromkirk Bloodthief", 123, Rarity.UNCOMMON, mage.cards.s.StromkirkBloodthief.class));
|
||||
|
|
Loading…
Add table
Reference in a new issue