[KHM] fixed Svella, Ice Shaper token being legendary (fixes #7478)

This commit is contained in:
Evan Kranzler 2021-02-01 15:19:48 -05:00
parent 3b8e67c670
commit 3b057473bc

View file

@ -11,7 +11,6 @@ public final class IcyManalithToken extends TokenImpl {
public IcyManalithToken() { public IcyManalithToken() {
super("Icy Manalith", "colorless snow artifact token named Icy Manalith with \"{T}: Add one mana of any color.\""); 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); cardType.add(CardType.ARTIFACT);
this.addAbility(new AnyColorManaAbility()); this.addAbility(new AnyColorManaAbility());
} }