diff --git a/Mage.Sets/src/mage/cards/b/BrimstoneRoundup.java b/Mage.Sets/src/mage/cards/b/BrimstoneRoundup.java new file mode 100644 index 00000000000..f0a2d5e0b22 --- /dev/null +++ b/Mage.Sets/src/mage/cards/b/BrimstoneRoundup.java @@ -0,0 +1,36 @@ +package mage.cards.b; + +import mage.abilities.common.CastSecondSpellTriggeredAbility; +import mage.abilities.effects.common.CreateTokenEffect; +import mage.abilities.keyword.PlotAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.game.permanent.token.MercenaryToken; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class BrimstoneRoundup extends CardImpl { + + public BrimstoneRoundup(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{1}{R}"); + + // Whenever you cast your second spell each turn, create a 1/1 red Mercenary creature token with "{T}: Target creature you control gets +1/+0 until end of turn. Activate only as a sorcery." + this.addAbility(new CastSecondSpellTriggeredAbility(new CreateTokenEffect(new MercenaryToken()))); + + // Plot {2}{R} + this.addAbility(new PlotAbility(this, "{2}{R}")); + } + + private BrimstoneRoundup(final BrimstoneRoundup card) { + super(card); + } + + @Override + public BrimstoneRoundup copy() { + return new BrimstoneRoundup(this); + } +} diff --git a/Mage.Sets/src/mage/sets/OutlawsOfThunderJunction.java b/Mage.Sets/src/mage/sets/OutlawsOfThunderJunction.java index fa123c4581f..89a02089781 100644 --- a/Mage.Sets/src/mage/sets/OutlawsOfThunderJunction.java +++ b/Mage.Sets/src/mage/sets/OutlawsOfThunderJunction.java @@ -35,6 +35,7 @@ public final class OutlawsOfThunderJunction extends ExpansionSet { cards.add(new SetCardInfo("Blooming Marsh", 266, Rarity.RARE, mage.cards.b.BloomingMarsh.class)); cards.add(new SetCardInfo("Botanical Sanctum", 267, Rarity.RARE, mage.cards.b.BotanicalSanctum.class)); cards.add(new SetCardInfo("Bovine Intervention", 6, Rarity.UNCOMMON, mage.cards.b.BovineIntervention.class)); + cards.add(new SetCardInfo("Brimstone Roundup", 115, Rarity.UNCOMMON, mage.cards.b.BrimstoneRoundup.class)); cards.add(new SetCardInfo("Bristlepack Sentry", 156, Rarity.COMMON, mage.cards.b.BristlepackSentry.class)); cards.add(new SetCardInfo("Bristling Backwoods", 253, Rarity.COMMON, mage.cards.b.BristlingBackwoods.class)); cards.add(new SetCardInfo("Bristly Bill, Spine Sower", 157, Rarity.MYTHIC, mage.cards.b.BristlyBillSpineSower.class));