mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 21:42:07 -08:00
[KHM] Implemented Replicating Ring
This commit is contained in:
parent
16c3cfceb1
commit
4ea5898360
4 changed files with 113 additions and 0 deletions
|
|
@ -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),
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue