mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[BRO] Implement Mass Production
This commit is contained in:
parent
ded0308f1a
commit
ceae3462d9
2 changed files with 32 additions and 0 deletions
31
Mage.Sets/src/mage/cards/m/MassProduction.java
Normal file
31
Mage.Sets/src/mage/cards/m/MassProduction.java
Normal 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);
|
||||
}
|
||||
}
|
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue