mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 21:42:07 -08:00
[KHM] Implemented Svella, Ice Shaper
This commit is contained in:
parent
11f8a0d3b1
commit
2efa8e4356
3 changed files with 136 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue