diff --git a/Mage.Sets/src/mage/cards/p/PerennialBehemoth.java b/Mage.Sets/src/mage/cards/p/PerennialBehemoth.java new file mode 100644 index 0000000000..b9eb831ffb --- /dev/null +++ b/Mage.Sets/src/mage/cards/p/PerennialBehemoth.java @@ -0,0 +1,42 @@ +package mage.cards.p; + +import mage.MageInt; +import mage.abilities.common.SimpleStaticAbility; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.effects.common.ruleModifying.PlayLandsFromGraveyardControllerEffect; +import mage.abilities.keyword.UnearthAbility; +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 PerennialBehemoth extends CardImpl { + + public PerennialBehemoth(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{5}"); + + this.subtype.add(SubType.BEAST); + this.power = new MageInt(2); + this.toughness = new MageInt(7); + + // You may play land cards from your graveyard. + this.addAbility(new SimpleStaticAbility(new PlayLandsFromGraveyardControllerEffect())); + + // Unearth {G}{G} + this.addAbility(new UnearthAbility(new ManaCostsImpl<>("{G}{G}"))); + } + + private PerennialBehemoth(final PerennialBehemoth card) { + super(card); + } + + @Override + public PerennialBehemoth copy() { + return new PerennialBehemoth(this); + } +} diff --git a/Mage.Sets/src/mage/sets/TheBrothersWar.java b/Mage.Sets/src/mage/sets/TheBrothersWar.java index d7180f0d11..143cc94dc8 100644 --- a/Mage.Sets/src/mage/sets/TheBrothersWar.java +++ b/Mage.Sets/src/mage/sets/TheBrothersWar.java @@ -98,6 +98,7 @@ public final class TheBrothersWar extends ExpansionSet { cards.add(new SetCardInfo("Obstinate Baloth", 187, Rarity.UNCOMMON, mage.cards.o.ObstinateBaloth.class)); cards.add(new SetCardInfo("Overwhelming Remorse", 110, Rarity.COMMON, mage.cards.o.OverwhelmingRemorse.class)); cards.add(new SetCardInfo("Painful Quandary", 111, Rarity.RARE, mage.cards.p.PainfulQuandary.class)); + cards.add(new SetCardInfo("Perennial Behemoth", 202, Rarity.RARE, mage.cards.p.PerennialBehemoth.class)); cards.add(new SetCardInfo("Phyrexian Dragon Engine", "163a", Rarity.RARE, mage.cards.p.PhyrexianDragonEngine.class)); cards.add(new SetCardInfo("Phyrexian Fleshgorger", 121, Rarity.MYTHIC, mage.cards.p.PhyrexianFleshgorger.class)); cards.add(new SetCardInfo("Plains", 268, Rarity.LAND, mage.cards.basiclands.Plains.class, NON_FULL_USE_VARIOUS));