[BRO] Implement Mass Production

This commit is contained in:
Evan Kranzler 2022-11-02 08:36:59 -04:00
parent ded0308f1a
commit ceae3462d9
2 changed files with 32 additions and 0 deletions

View file

@ -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);
}
}

View file

@ -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));