diff --git a/Mage.Sets/src/mage/cards/a/AviationPioneer.java b/Mage.Sets/src/mage/cards/a/AviationPioneer.java new file mode 100644 index 0000000000..7153d0c614 --- /dev/null +++ b/Mage.Sets/src/mage/cards/a/AviationPioneer.java @@ -0,0 +1,41 @@ +package mage.cards.a; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.common.EntersBattlefieldTriggeredAbility; +import mage.abilities.effects.common.CreateTokenEffect; +import mage.constants.SubType; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.game.permanent.token.ThopterColorlessToken; + +/** + * + * @author TheElk801 + */ +public final class AviationPioneer extends CardImpl { + + public AviationPioneer(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{U}"); + + this.subtype.add(SubType.HUMAN); + this.subtype.add(SubType.ARTIFICER); + this.power = new MageInt(1); + this.toughness = new MageInt(2); + + // When Aviation Pioneer enters the battlefield, create a 1/1 colorless Thopter creature token. + this.addAbility(new EntersBattlefieldTriggeredAbility( + new CreateTokenEffect(new ThopterColorlessToken()) + )); + } + + public AviationPioneer(final AviationPioneer card) { + super(card); + } + + @Override + public AviationPioneer copy() { + return new AviationPioneer(this); + } +} diff --git a/Mage.Sets/src/mage/sets/CoreSet2019.java b/Mage.Sets/src/mage/sets/CoreSet2019.java index eef074e2b4..0a8e4a3279 100644 --- a/Mage.Sets/src/mage/sets/CoreSet2019.java +++ b/Mage.Sets/src/mage/sets/CoreSet2019.java @@ -44,6 +44,7 @@ public final class CoreSet2019 extends ExpansionSet { cards.add(new SetCardInfo("Apex of Power", 129, Rarity.MYTHIC, mage.cards.a.ApexOfPower.class)); cards.add(new SetCardInfo("Arisen Gorgon", 292, Rarity.UNCOMMON, mage.cards.a.ArisenGorgon.class)); cards.add(new SetCardInfo("Aven Wind Mage", 45, Rarity.COMMON, mage.cards.a.AvenWindMage.class)); + cards.add(new SetCardInfo("Aviation Pioneer", 46, Rarity.COMMON, mage.cards.a.AviationPioneer.class)); cards.add(new SetCardInfo("Befuddle", 309, Rarity.COMMON, mage.cards.b.Befuddle.class)); cards.add(new SetCardInfo("Blood Divination", 86, Rarity.UNCOMMON, mage.cards.b.BloodDivination.class)); cards.add(new SetCardInfo("Bogstomper", 87, Rarity.COMMON, mage.cards.b.Bogstomper.class));