diff --git a/Mage.Sets/src/mage/cards/m/MassProduction.java b/Mage.Sets/src/mage/cards/m/MassProduction.java new file mode 100644 index 00000000000..7a971eabff0 --- /dev/null +++ b/Mage.Sets/src/mage/cards/m/MassProduction.java @@ -0,0 +1,31 @@ +package mage.cards.m; + +import mage.abilities.effects.common.CreateTokenEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.game.permanent.token.SoldierArtifactToken; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class MassProduction extends CardImpl { + + public MassProduction(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{5}{W}"); + + // Create four 1/1 colorless Soldier artifact creature tokens. + this.getSpellAbility().addEffect(new CreateTokenEffect(new SoldierArtifactToken())); + } + + private MassProduction(final MassProduction card) { + super(card); + } + + @Override + public MassProduction copy() { + return new MassProduction(this); + } +} diff --git a/Mage.Sets/src/mage/sets/TheBrothersWar.java b/Mage.Sets/src/mage/sets/TheBrothersWar.java index 74578fe33b4..106078228de 100644 --- a/Mage.Sets/src/mage/sets/TheBrothersWar.java +++ b/Mage.Sets/src/mage/sets/TheBrothersWar.java @@ -70,6 +70,7 @@ public final class TheBrothersWar extends ExpansionSet { cards.add(new SetCardInfo("Lat-Nam Adept", 56, Rarity.COMMON, mage.cards.l.LatNamAdept.class)); cards.add(new SetCardInfo("Llanowar Wastes", 264, Rarity.RARE, mage.cards.l.LlanowarWastes.class)); cards.add(new SetCardInfo("Loran of the Third Path", 12, Rarity.RARE, mage.cards.l.LoranOfTheThirdPath.class)); + cards.add(new SetCardInfo("Mass Production", 15, Rarity.UNCOMMON, mage.cards.m.MassProduction.class)); cards.add(new SetCardInfo("Mishra's Command", 141, Rarity.RARE, mage.cards.m.MishrasCommand.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));