diff --git a/Mage.Sets/src/mage/cards/m/MishrasJuggernaut.java b/Mage.Sets/src/mage/cards/m/MishrasJuggernaut.java new file mode 100644 index 00000000000..e55fd2241d8 --- /dev/null +++ b/Mage.Sets/src/mage/cards/m/MishrasJuggernaut.java @@ -0,0 +1,45 @@ +package mage.cards.m; + +import mage.MageInt; +import mage.abilities.common.AttacksEachCombatStaticAbility; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.keyword.TrampleAbility; +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 MishrasJuggernaut extends CardImpl { + + public MishrasJuggernaut(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{5}"); + + this.subtype.add(SubType.JUGGERNAUT); + this.power = new MageInt(5); + this.toughness = new MageInt(3); + + // Trample + this.addAbility(TrampleAbility.getInstance()); + + // Mishra's Juggernaut attacks each combat if able. + this.addAbility(new AttacksEachCombatStaticAbility()); + + // Unearth {5}{R} + this.addAbility(new UnearthAbility(new ManaCostsImpl<>("{5}{R}"))); + } + + private MishrasJuggernaut(final MishrasJuggernaut card) { + super(card); + } + + @Override + public MishrasJuggernaut copy() { + return new MishrasJuggernaut(this); + } +} diff --git a/Mage.Sets/src/mage/sets/TheBrothersWar.java b/Mage.Sets/src/mage/sets/TheBrothersWar.java index 0c3d5f48f19..3ff692520fd 100644 --- a/Mage.Sets/src/mage/sets/TheBrothersWar.java +++ b/Mage.Sets/src/mage/sets/TheBrothersWar.java @@ -37,6 +37,7 @@ public final class TheBrothersWar extends ExpansionSet { cards.add(new SetCardInfo("Island", 280, Rarity.LAND, mage.cards.basiclands.Island.class, FULL_ART_BFZ_VARIOUS)); cards.add(new SetCardInfo("Llanowar Wastes", 264, Rarity.RARE, mage.cards.l.LlanowarWastes.class)); cards.add(new SetCardInfo("Mishra's Foundry", 265, Rarity.RARE, mage.cards.m.MishrasFoundry.class)); + cards.add(new SetCardInfo("Mishra's Juggernaut", 161, Rarity.COMMON, mage.cards.m.MishrasJuggernaut.class)); cards.add(new SetCardInfo("Mishra, Claimed by Gix", 216, Rarity.MYTHIC, mage.cards.m.MishraClaimedByGix.class)); cards.add(new SetCardInfo("Mishra, Excavation Prodigy", 140, Rarity.UNCOMMON, mage.cards.m.MishraExcavationProdigy.class)); cards.add(new SetCardInfo("Mishra, Lost to Phyrexia", "163b", Rarity.MYTHIC, mage.cards.m.MishraLostToPhyrexia.class));