diff --git a/Mage.Sets/src/mage/cards/f/FullyGrown.java b/Mage.Sets/src/mage/cards/f/FullyGrown.java index 5b6311779c..6e45f4f429 100644 --- a/Mage.Sets/src/mage/cards/f/FullyGrown.java +++ b/Mage.Sets/src/mage/cards/f/FullyGrown.java @@ -21,7 +21,7 @@ public final class FullyGrown extends CardImpl { // Target creature gets +3/+3 until end of turn. Put a trample counter on it. this.getSpellAbility().addEffect(new BoostTargetEffect(3, 3)); this.getSpellAbility().addEffect(new AddCountersTargetEffect(CounterType.TRAMPLE.createInstance()) - .setText("Put a +1/+1 counter on it")); + .setText("Put a trample counter on it")); this.getSpellAbility().addTarget(new TargetCreaturePermanent()); } diff --git a/Mage.Sets/src/mage/cards/s/SpontaneousFlight.java b/Mage.Sets/src/mage/cards/s/SpontaneousFlight.java new file mode 100644 index 0000000000..7f792371a0 --- /dev/null +++ b/Mage.Sets/src/mage/cards/s/SpontaneousFlight.java @@ -0,0 +1,36 @@ +package mage.cards.s; + +import mage.abilities.effects.common.continuous.BoostTargetEffect; +import mage.abilities.effects.common.counter.AddCountersTargetEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.counters.CounterType; +import mage.target.common.TargetCreaturePermanent; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class SpontaneousFlight extends CardImpl { + + public SpontaneousFlight(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{W}"); + + // Target creature gets +2/+2 until end of turn. Put a flying counter on it. + this.getSpellAbility().addEffect(new BoostTargetEffect(2, 2)); + this.getSpellAbility().addEffect(new AddCountersTargetEffect(CounterType.FLYING.createInstance()) + .setText("Put a flying counter on it")); + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); + } + + private SpontaneousFlight(final SpontaneousFlight card) { + super(card); + } + + @Override + public SpontaneousFlight copy() { + return new SpontaneousFlight(this); + } +} diff --git a/Mage.Sets/src/mage/sets/IkoriaLairOfBehemoths.java b/Mage.Sets/src/mage/sets/IkoriaLairOfBehemoths.java index e6b0a4555c..964783a089 100644 --- a/Mage.Sets/src/mage/sets/IkoriaLairOfBehemoths.java +++ b/Mage.Sets/src/mage/sets/IkoriaLairOfBehemoths.java @@ -132,6 +132,7 @@ public final class IkoriaLairOfBehemoths extends ExpansionSet { cards.add(new SetCardInfo("Skull Prophet", 206, Rarity.UNCOMMON, mage.cards.s.SkullProphet.class)); cards.add(new SetCardInfo("Snapdax, Apex of the Hunt", 209, Rarity.MYTHIC, mage.cards.s.SnapdaxApexOfTheHunt.class)); cards.add(new SetCardInfo("Splendor Mare", 32, Rarity.UNCOMMON, mage.cards.s.SplendorMare.class)); + cards.add(new SetCardInfo("Spontaneous Flight", 33, Rarity.COMMON, mage.cards.s.SpontaneousFlight.class)); cards.add(new SetCardInfo("Sprite Dragon", 211, Rarity.UNCOMMON, mage.cards.s.SpriteDragon.class)); cards.add(new SetCardInfo("Thieving Otter", 69, Rarity.COMMON, mage.cards.t.ThievingOtter.class)); cards.add(new SetCardInfo("Thwart the Enemy", 173, Rarity.COMMON, mage.cards.t.ThwartTheEnemy.class));