1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-02-18 12:54:22 +00:00

[BRO] Implement Blitz Automaton

This commit is contained in:
Evan Kranzler 2022-11-04 19:27:36 -04:00
parent 3610942ac7
commit 312c75e4fb
2 changed files with 41 additions and 0 deletions
Mage.Sets/src/mage

View file

@ -0,0 +1,40 @@
package mage.cards.b;
import mage.MageInt;
import mage.abilities.keyword.HasteAbility;
import mage.abilities.keyword.PrototypeAbility;
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 BlitzAutomaton extends CardImpl {
public BlitzAutomaton(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{7}");
this.subtype.add(SubType.CONSTRUCT);
this.power = new MageInt(6);
this.toughness = new MageInt(4);
// Prototype {2}{R} - 3/2
this.addAbility(new PrototypeAbility(this, "{2}{R}", 2, 2));
// Haste
this.addAbility(HasteAbility.getInstance());
}
private BlitzAutomaton(final BlitzAutomaton card) {
super(card);
}
@Override
public BlitzAutomaton copy() {
return new BlitzAutomaton(this);
}
}

View file

@ -47,6 +47,7 @@ public final class TheBrothersWar extends ExpansionSet {
cards.add(new SetCardInfo("Bladecoil Serpent", 229, Rarity.MYTHIC, mage.cards.b.BladecoilSerpent.class));
cards.add(new SetCardInfo("Blanchwood Armor", 171, Rarity.UNCOMMON, mage.cards.b.BlanchwoodArmor.class));
cards.add(new SetCardInfo("Blast Zone", 258, Rarity.RARE, mage.cards.b.BlastZone.class));
cards.add(new SetCardInfo("Blitz Automaton", 158, Rarity.COMMON, mage.cards.b.BlitzAutomaton.class));
cards.add(new SetCardInfo("Brotherhood's End", 128, Rarity.RARE, mage.cards.b.BrotherhoodsEnd.class));
cards.add(new SetCardInfo("Brushland", 259, Rarity.RARE, mage.cards.b.Brushland.class));
cards.add(new SetCardInfo("Bushwhack", 174, Rarity.UNCOMMON, mage.cards.b.Bushwhack.class));