[EOE] Implement Flight-Deck Coordinator

This commit is contained in:
theelk801 2025-07-18 13:25:40 -04:00
parent 402d7003b1
commit c4ff95d780
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,40 @@
package mage.cards.f;
import mage.MageInt;
import mage.abilities.condition.common.TwoTappedCreaturesCondition;
import mage.abilities.effects.common.GainLifeEffect;
import mage.abilities.triggers.BeginningOfEndStepTriggeredAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class FlightDeckCoordinator extends CardImpl {
public FlightDeckCoordinator(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{W}");
this.subtype.add(SubType.HUMAN);
this.subtype.add(SubType.SOLDIER);
this.power = new MageInt(3);
this.toughness = new MageInt(3);
// At the beginning of your end step, if you control two or more tapped creatures, you gain 2 life.
this.addAbility(new BeginningOfEndStepTriggeredAbility(new GainLifeEffect(2))
.withInterveningIf(TwoTappedCreaturesCondition.instance).addHint(TwoTappedCreaturesCondition.getHint()));
}
private FlightDeckCoordinator(final FlightDeckCoordinator card) {
super(card);
}
@Override
public FlightDeckCoordinator copy() {
return new FlightDeckCoordinator(this);
}
}

View file

@ -119,6 +119,7 @@ public final class EdgeOfEternities extends ExpansionSet {
cards.add(new SetCardInfo("Famished Worldsire", 182, Rarity.MYTHIC, mage.cards.f.FamishedWorldsire.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Famished Worldsire", 341, Rarity.MYTHIC, mage.cards.f.FamishedWorldsire.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Fell Gravship", 101, Rarity.UNCOMMON, mage.cards.f.FellGravship.class));
cards.add(new SetCardInfo("Flight-Deck Coordinator", 17, Rarity.COMMON, mage.cards.f.FlightDeckCoordinator.class));
cards.add(new SetCardInfo("Focus Fire", 18, Rarity.COMMON, mage.cards.f.FocusFire.class));
cards.add(new SetCardInfo("Forest", 266, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));
cards.add(new SetCardInfo("Forest", 275, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS));