[MH2] Implemented Arcbound Prototype

This commit is contained in:
Evan Kranzler 2021-06-02 18:04:26 -04:00
parent 23e1eb1d58
commit 4c48a29685
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,36 @@
package mage.cards.a;
import mage.MageInt;
import mage.abilities.keyword.ModularAbility;
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 ArcboundPrototype extends CardImpl {
public ArcboundPrototype(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{1}{W}");
this.subtype.add(SubType.ASSEMBLY_WORKER);
this.power = new MageInt(0);
this.toughness = new MageInt(0);
// Modular 2
this.addAbility(new ModularAbility(this, 2));
}
private ArcboundPrototype(final ArcboundPrototype card) {
super(card);
}
@Override
public ArcboundPrototype copy() {
return new ArcboundPrototype(this);
}
}

View file

@ -34,6 +34,7 @@ public final class ModernHorizons2 extends ExpansionSet {
cards.add(new SetCardInfo("Angelic Curator", 262, Rarity.UNCOMMON, mage.cards.a.AngelicCurator.class));
cards.add(new SetCardInfo("Arcbound Javelineer", 2, Rarity.UNCOMMON, mage.cards.a.ArcboundJavelineer.class));
cards.add(new SetCardInfo("Arcbound Mouser", 3, Rarity.COMMON, mage.cards.a.ArcboundMouser.class));
cards.add(new SetCardInfo("Arcbound Prototype", 4, Rarity.COMMON, mage.cards.a.ArcboundPrototype.class));
cards.add(new SetCardInfo("Arcbound Shikari", 184, Rarity.UNCOMMON, mage.cards.a.ArcboundShikari.class));
cards.add(new SetCardInfo("Arcbound Slasher", 111, Rarity.COMMON, mage.cards.a.ArcboundSlasher.class));
cards.add(new SetCardInfo("Arcbound Whelp", 113, Rarity.UNCOMMON, mage.cards.a.ArcboundWhelp.class));