[KHM] Implemented Replicating Ring

This commit is contained in:
Evan Kranzler 2021-01-10 08:58:39 -05:00
parent 16c3cfceb1
commit 4ea5898360
4 changed files with 113 additions and 0 deletions

View file

@ -105,6 +105,7 @@ public enum CounterType {
MUSIC("music"),
MUSTER("muster"),
NET("net"),
NIGHT("night"),
OMEN("omen"),
ORE("ore"),
P0P1(new BoostCounter(0, 1).name),

View file

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