mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
Implemented Everdream
This commit is contained in:
parent
c7c61e2bb5
commit
7a76c678b5
2 changed files with 35 additions and 0 deletions
34
Mage.Sets/src/mage/cards/e/Everdream.java
Normal file
34
Mage.Sets/src/mage/cards/e/Everdream.java
Normal file
|
@ -0,0 +1,34 @@
|
|||
package mage.cards.e;
|
||||
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.abilities.keyword.SpliceOntoInstantOrSorceryAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class Everdream extends CardImpl {
|
||||
|
||||
public Everdream(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{U}");
|
||||
|
||||
// Draw a card.
|
||||
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1));
|
||||
|
||||
// Splice onto instant or sorcery {2}{U}
|
||||
this.addAbility(new SpliceOntoInstantOrSorceryAbility("{2}{U}"));
|
||||
}
|
||||
|
||||
private Everdream(final Everdream card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Everdream copy() {
|
||||
return new Everdream(this);
|
||||
}
|
||||
}
|
|
@ -60,6 +60,7 @@ public final class ModernHorizons extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Endling", 89, Rarity.RARE, mage.cards.e.Endling.class));
|
||||
cards.add(new SetCardInfo("Enduring Sliver", 6, Rarity.COMMON, mage.cards.e.EnduringSliver.class));
|
||||
cards.add(new SetCardInfo("Etchings of the Chosen", 198, Rarity.UNCOMMON, mage.cards.e.EtchingsOfTheChosen.class));
|
||||
cards.add(new SetCardInfo("Everdream", 47, Rarity.UNCOMMON, mage.cards.e.Everdream.class));
|
||||
cards.add(new SetCardInfo("Exclude", 48, Rarity.UNCOMMON, mage.cards.e.Exclude.class));
|
||||
cards.add(new SetCardInfo("Fact or Fiction", 50, Rarity.UNCOMMON, mage.cards.f.FactOrFiction.class));
|
||||
cards.add(new SetCardInfo("Faerie Seer", 51, Rarity.COMMON, mage.cards.f.FaerieSeer.class));
|
||||
|
|
Loading…
Reference in a new issue