1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-02 03:18:09 -09:00

[MH2] Implemented Arcbound Mouser

This commit is contained in:
Evan Kranzler 2021-05-26 20:01:40 -04:00
parent b9c2609a55
commit 8237189ab3
2 changed files with 41 additions and 0 deletions
Mage.Sets/src/mage

View file

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

View file

@ -28,6 +28,7 @@ public final class ModernHorizons2 extends ExpansionSet {
this.maxCardNumberInBooster = 303;
cards.add(new SetCardInfo("Abundant Harvest", 147, Rarity.COMMON, mage.cards.a.AbundantHarvest.class));
cards.add(new SetCardInfo("Arcbound Mouser", 3, Rarity.COMMON, mage.cards.a.ArcboundMouser.class));
cards.add(new SetCardInfo("Arcbound Shikari", 184, Rarity.UNCOMMON, mage.cards.a.ArcboundShikari.class));
cards.add(new SetCardInfo("Arid Mesa", 244, Rarity.RARE, mage.cards.a.AridMesa.class));
cards.add(new SetCardInfo("Bottle Golems", 222, Rarity.COMMON, mage.cards.b.BottleGolems.class));