mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Implemented Eutropia the Twice-Favored
This commit is contained in:
parent
e565863bd2
commit
f0a8a4f13f
3 changed files with 54 additions and 0 deletions
52
Mage.Sets/src/mage/cards/e/EutropiaTheTwiceFavored.java
Normal file
52
Mage.Sets/src/mage/cards/e/EutropiaTheTwiceFavored.java
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
package mage.cards.e;
|
||||||
|
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.abilityword.ConstellationAbility;
|
||||||
|
import mage.abilities.effects.common.continuous.GainAbilityTargetEffect;
|
||||||
|
import mage.abilities.effects.common.counter.AddCountersTargetEffect;
|
||||||
|
import mage.abilities.keyword.FlyingAbility;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.Duration;
|
||||||
|
import mage.constants.SubType;
|
||||||
|
import mage.constants.SuperType;
|
||||||
|
import mage.counters.CounterType;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author TheElk801
|
||||||
|
*/
|
||||||
|
public final class EutropiaTheTwiceFavored extends CardImpl {
|
||||||
|
|
||||||
|
public EutropiaTheTwiceFavored(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}{U}");
|
||||||
|
|
||||||
|
this.addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.HUMAN);
|
||||||
|
this.subtype.add(SubType.WIZARD);
|
||||||
|
this.power = new MageInt(2);
|
||||||
|
this.toughness = new MageInt(2);
|
||||||
|
|
||||||
|
// Constellation—Whenever an enchantment enters the battlefield under your control, put a +1/+1 counter on target creature. That creature gains flying until end of turn.
|
||||||
|
Ability ability = new ConstellationAbility(
|
||||||
|
new AddCountersTargetEffect(CounterType.P1P1.createInstance()), false, false
|
||||||
|
);
|
||||||
|
ability.addEffect(new GainAbilityTargetEffect(
|
||||||
|
FlyingAbility.getInstance(), Duration.EndOfTurn,
|
||||||
|
"That creature gains flying until end of turn"
|
||||||
|
));
|
||||||
|
this.addAbility(ability);
|
||||||
|
}
|
||||||
|
|
||||||
|
private EutropiaTheTwiceFavored(final EutropiaTheTwiceFavored card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public EutropiaTheTwiceFavored copy() {
|
||||||
|
return new EutropiaTheTwiceFavored(this);
|
||||||
|
}
|
||||||
|
}
|
|
@ -55,6 +55,7 @@ public final class TherosBeyondDeath extends ExpansionSet {
|
||||||
cards.add(new SetCardInfo("Erebos's Intervention", 94, Rarity.RARE, mage.cards.e.ErebossIntervention.class));
|
cards.add(new SetCardInfo("Erebos's Intervention", 94, Rarity.RARE, mage.cards.e.ErebossIntervention.class));
|
||||||
cards.add(new SetCardInfo("Erebos, Bleak-Hearted", 93, Rarity.MYTHIC, mage.cards.e.ErebosBleakHearted.class));
|
cards.add(new SetCardInfo("Erebos, Bleak-Hearted", 93, Rarity.MYTHIC, mage.cards.e.ErebosBleakHearted.class));
|
||||||
cards.add(new SetCardInfo("Escape Velocity", 132, Rarity.UNCOMMON, mage.cards.e.EscapeVelocity.class));
|
cards.add(new SetCardInfo("Escape Velocity", 132, Rarity.UNCOMMON, mage.cards.e.EscapeVelocity.class));
|
||||||
|
cards.add(new SetCardInfo("Eutropia the Twice-Favored", 216, Rarity.UNCOMMON, mage.cards.e.EutropiaTheTwiceFavored.class));
|
||||||
cards.add(new SetCardInfo("Field of Ruin", 242, Rarity.UNCOMMON, mage.cards.f.FieldOfRuin.class));
|
cards.add(new SetCardInfo("Field of Ruin", 242, Rarity.UNCOMMON, mage.cards.f.FieldOfRuin.class));
|
||||||
cards.add(new SetCardInfo("Final Death", 95, Rarity.COMMON, mage.cards.f.FinalDeath.class));
|
cards.add(new SetCardInfo("Final Death", 95, Rarity.COMMON, mage.cards.f.FinalDeath.class));
|
||||||
cards.add(new SetCardInfo("Forest", 254, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));
|
cards.add(new SetCardInfo("Forest", 254, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));
|
||||||
|
|
|
@ -36515,6 +36515,7 @@ Ashiok, Nightmare Muse|Theros Beyond Death|208|M|{3}{U}{B}|Legendary Planeswalke
|
||||||
Atris, Oracle of Half-Truths|Theros Beyond Death|209|R|{2}{U}{B}|Legendary Creature - Human Advisor|3|2|Menace$When Atris, Oracle of Half-Truths enters the battlefield, target opponent looks at the top three cards of your library and separates them into a face-down pile and a face-up pile. Put one pile into your hand and the other into your graveyard.|
|
Atris, Oracle of Half-Truths|Theros Beyond Death|209|R|{2}{U}{B}|Legendary Creature - Human Advisor|3|2|Menace$When Atris, Oracle of Half-Truths enters the battlefield, target opponent looks at the top three cards of your library and separates them into a face-down pile and a face-up pile. Put one pile into your hand and the other into your graveyard.|
|
||||||
Dalakos, Crafter of Wonders|Theros Beyond Death|212|R|{1}{U}{R}|Legendary Creature - Merfolk Artificer|2|4|{T}: Add {C}{C}. Spend this mana only to cast artifact spells or activate abilities of artifacts.$Equipped creatures you control have flying and haste.|
|
Dalakos, Crafter of Wonders|Theros Beyond Death|212|R|{1}{U}{R}|Legendary Creature - Merfolk Artificer|2|4|{T}: Add {C}{C}. Spend this mana only to cast artifact spells or activate abilities of artifacts.$Equipped creatures you control have flying and haste.|
|
||||||
Devourer of Memory|Theros Beyond Death|213|U|{U}{B}|Creature - Nightmare|2|1|Whenever one or more cards are put into your graveyard from your library, Devourer of Memory gets +1/+1 until end of turn and can't be blocked this turn.${1}{U}{B}: Put the top card of your library into your graveyard.|
|
Devourer of Memory|Theros Beyond Death|213|U|{U}{B}|Creature - Nightmare|2|1|Whenever one or more cards are put into your graveyard from your library, Devourer of Memory gets +1/+1 until end of turn and can't be blocked this turn.${1}{U}{B}: Put the top card of your library into your graveyard.|
|
||||||
|
Eutropia the Twice-Favored|Theros Beyond Death|216|U|{1}{G}{U}|Legendary Creature - Human Wizard|2|2|Constellation—Whenever an enchantment enters the battlefield under your control, put a +1/+1 counter on target creature. That creature gains flying until end of turn.|
|
||||||
Gallia of the Endless Dance|Theros Beyond Death|217|R|{R}{G}|Legendary Creature - Satyr|2|2|Haste$Other Satyrs you control get +1/+1 and have haste.$Whenever you attack with three or more creatures, you may discard a card at random. If you do, draw two cards.|
|
Gallia of the Endless Dance|Theros Beyond Death|217|R|{R}{G}|Legendary Creature - Satyr|2|2|Haste$Other Satyrs you control get +1/+1 and have haste.$Whenever you attack with three or more creatures, you may discard a card at random. If you do, draw two cards.|
|
||||||
Haktos the Unscarred|Theros Beyond Death|218|R|{R}{R}{W}{W}|Legendary Creature - Human Warrior|6|1|Haktos the Unscarred attacks each combat if able.$As Haktos enters the battlefield, choose 2, 3, or 4 at random.$Haktos has protection from each converted mana cost other than the chosen number.|
|
Haktos the Unscarred|Theros Beyond Death|218|R|{R}{R}{W}{W}|Legendary Creature - Human Warrior|6|1|Haktos the Unscarred attacks each combat if able.$As Haktos enters the battlefield, choose 2, 3, or 4 at random.$Haktos has protection from each converted mana cost other than the chosen number.|
|
||||||
Klothys, God of Destiny|Theros Beyond Death|220|M|{1}{R}{G}|Legendary Enchantment Creature - God|4|5|Indestructible$As long as your devotion to red and green is less than seven, Klothys isn't a creature.$At the beginning of your precombat main phase, exile target card from a graveyard. If it was a land card, add {R} or {G}. Otherwise, you gain 2 life and Klothys deals 2 damage to each opponent.|
|
Klothys, God of Destiny|Theros Beyond Death|220|M|{1}{R}{G}|Legendary Enchantment Creature - God|4|5|Indestructible$As long as your devotion to red and green is less than seven, Klothys isn't a creature.$At the beginning of your precombat main phase, exile target card from a graveyard. If it was a land card, add {R} or {G}. Otherwise, you gain 2 life and Klothys deals 2 damage to each opponent.|
|
||||||
|
|
Loading…
Reference in a new issue