[KHM] Implemented Svella, Ice Shaper

This commit is contained in:
Evan Kranzler 2021-01-19 09:30:04 -05:00
parent 11f8a0d3b1
commit 2efa8e4356
3 changed files with 136 additions and 0 deletions

View file

@ -0,0 +1,26 @@
package mage.game.permanent.token;
import mage.abilities.mana.AnyColorManaAbility;
import mage.constants.CardType;
import mage.constants.SuperType;
/**
* @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.LEGENDARY);
cardType.add(CardType.ARTIFACT);
this.addAbility(new AnyColorManaAbility());
}
private IcyManalithToken(final IcyManalithToken token) {
super(token);
}
public IcyManalithToken copy() {
return new IcyManalithToken(this);
}
}