mirror of
https://github.com/correl/mage.git
synced 2025-01-13 03:00:10 +00:00
Implemented Mox Tantalite
This commit is contained in:
parent
bcec4a0bf1
commit
9519678218
2 changed files with 36 additions and 0 deletions
35
Mage.Sets/src/mage/cards/m/MoxTantalite.java
Normal file
35
Mage.Sets/src/mage/cards/m/MoxTantalite.java
Normal file
|
@ -0,0 +1,35 @@
|
|||
package mage.cards.m;
|
||||
|
||||
import mage.abilities.costs.mana.GenericManaCost;
|
||||
import mage.abilities.keyword.SuspendAbility;
|
||||
import mage.abilities.mana.AnyColorManaAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class MoxTantalite extends CardImpl {
|
||||
|
||||
public MoxTantalite(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "");
|
||||
|
||||
// Suspend 3—{0}
|
||||
this.addAbility(new SuspendAbility(3, new GenericManaCost(0), this));
|
||||
|
||||
// {T}: Add one mana of any color.
|
||||
this.addAbility(new AnyColorManaAbility());
|
||||
}
|
||||
|
||||
private MoxTantalite(final MoxTantalite card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public MoxTantalite copy() {
|
||||
return new MoxTantalite(this);
|
||||
}
|
||||
}
|
|
@ -68,6 +68,7 @@ public final class ModernHorizons extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Martyr's Soul", 19, Rarity.COMMON, mage.cards.m.MartyrsSoul.class));
|
||||
cards.add(new SetCardInfo("Morophon, the Boundless", 1, Rarity.MYTHIC, mage.cards.m.MorophonTheBoundless.class));
|
||||
cards.add(new SetCardInfo("Mother Bear", 171, Rarity.COMMON, mage.cards.m.MotherBear.class));
|
||||
cards.add(new SetCardInfo("Mox Tantalite", 226, Rarity.MYTHIC, mage.cards.m.MoxTantalite.class));
|
||||
cards.add(new SetCardInfo("Munitions Expert", 209, Rarity.UNCOMMON, mage.cards.m.MunitionsExpert.class));
|
||||
cards.add(new SetCardInfo("Nimble Mongoose", 174, Rarity.COMMON, mage.cards.n.NimbleMongoose.class));
|
||||
cards.add(new SetCardInfo("Nurturing Peatland", 243, Rarity.RARE, mage.cards.n.NurturingPeatland.class));
|
||||
|
|
Loading…
Reference in a new issue