diff --git a/Mage.Sets/src/mage/cards/m/MammothGrowth.java b/Mage.Sets/src/mage/cards/m/MammothGrowth.java new file mode 100644 index 00000000000..0d51a8a83c3 --- /dev/null +++ b/Mage.Sets/src/mage/cards/m/MammothGrowth.java @@ -0,0 +1,36 @@ +package mage.cards.m; + +import mage.abilities.effects.common.continuous.BoostTargetEffect; +import mage.abilities.keyword.ForetellAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.target.common.TargetCreaturePermanent; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class MammothGrowth extends CardImpl { + + public MammothGrowth(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{G}"); + + // Target creature gets +4/+4 until end of turn. + this.getSpellAbility().addEffect(new BoostTargetEffect(4, 4)); + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); + + // Foretell {G} + this.addAbility(new ForetellAbility(this, "{G}")); + } + + private MammothGrowth(final MammothGrowth card) { + super(card); + } + + @Override + public MammothGrowth copy() { + return new MammothGrowth(this); + } +} diff --git a/Mage.Sets/src/mage/sets/Kaldheim.java b/Mage.Sets/src/mage/sets/Kaldheim.java index 79726328e01..01e0ff29a03 100644 --- a/Mage.Sets/src/mage/sets/Kaldheim.java +++ b/Mage.Sets/src/mage/sets/Kaldheim.java @@ -122,6 +122,7 @@ public final class Kaldheim extends ExpansionSet { cards.add(new SetCardInfo("Koma, Cosmos Serpent", 221, Rarity.MYTHIC, mage.cards.k.KomaCosmosSerpent.class)); cards.add(new SetCardInfo("Littjara Kinseekers", 66, Rarity.COMMON, mage.cards.l.LittjaraKinseekers.class)); cards.add(new SetCardInfo("Magda, Brazen Outlaw", 142, Rarity.RARE, mage.cards.m.MagdaBrazenOutlaw.class)); + cards.add(new SetCardInfo("Mammoth Growth", 183, Rarity.COMMON, mage.cards.m.MammothGrowth.class)); cards.add(new SetCardInfo("Masked Vandal", 184, Rarity.COMMON, mage.cards.m.MaskedVandal.class)); cards.add(new SetCardInfo("Maskwood Nexus", 240, Rarity.RARE, mage.cards.m.MaskwoodNexus.class)); cards.add(new SetCardInfo("Niko Aris", 225, Rarity.MYTHIC, mage.cards.n.NikoAris.class));