forked from External/mage
33 lines
835 B
Java
33 lines
835 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 ReplicatedRingToken extends TokenImpl {
|
|
|
|
public ReplicatedRingToken() {
|
|
super("Replicated Ring", "colorless snow artifact token named Replicated Ring with \"{T}: Add one mana of any color.\"");
|
|
this.addSuperType(SuperType.SNOW);
|
|
cardType.add(CardType.ARTIFACT);
|
|
|
|
this.addAbility(new AnyColorManaAbility());
|
|
|
|
availableImageSetCodes = Arrays.asList("KHM");
|
|
}
|
|
|
|
|
|
private ReplicatedRingToken(final ReplicatedRingToken token) {
|
|
super(token);
|
|
}
|
|
|
|
@Override
|
|
public ReplicatedRingToken copy() {
|
|
return new ReplicatedRingToken(this);
|
|
}
|
|
}
|