mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
[MOM] Implement Alabaster Host Sanctifier
This commit is contained in:
parent
c9cf353b2d
commit
c0f318b9e6
2 changed files with 38 additions and 0 deletions
37
Mage.Sets/src/mage/cards/a/AlabasterHostSanctifier.java
Normal file
37
Mage.Sets/src/mage/cards/a/AlabasterHostSanctifier.java
Normal 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);
|
||||
}
|
||||
}
|
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue