forked from External/mage
31 lines
801 B
Java
31 lines
801 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.abilities.mana.AnyColorManaAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SuperType;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public final class IcyManalithToken extends TokenImpl {
|
|
|
|
public IcyManalithToken() {
|
|
super("Icy Manalith", "colorless snow artifact token named Icy Manalith with \"{T}: Add one mana of any color.\"");
|
|
this.addSuperType(SuperType.SNOW);
|
|
this.cardType.add(CardType.ARTIFACT);
|
|
|
|
this.addAbility(new AnyColorManaAbility());
|
|
|
|
availableImageSetCodes = Arrays.asList("KHM");
|
|
}
|
|
|
|
private IcyManalithToken(final IcyManalithToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public IcyManalithToken copy() {
|
|
return new IcyManalithToken(this);
|
|
}
|
|
}
|