[MOM] Implement Alabaster Host Sanctifier

This commit is contained in:
theelk801 2023-03-30 09:16:13 -04:00
parent c9cf353b2d
commit c0f318b9e6
2 changed files with 38 additions and 0 deletions

View file

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

View file

@ -20,6 +20,7 @@ public final class MarchOfTheMachine extends ExpansionSet {
this.blockName = "March of the Machine";
this.hasBoosters = false; // temporary
cards.add(new SetCardInfo("Alabaster Host Sanctifier", 4, Rarity.COMMON, mage.cards.a.AlabasterHostSanctifier.class));
cards.add(new SetCardInfo("Bloodfell Caves", 267, Rarity.COMMON, mage.cards.b.BloodfellCaves.class));
cards.add(new SetCardInfo("Blossoming Sands", 268, Rarity.COMMON, mage.cards.b.BlossomingSands.class));
cards.add(new SetCardInfo("Dismal Backwater", 269, Rarity.COMMON, mage.cards.d.DismalBackwater.class));