foul-magics/Mage/src/main/java/mage/game/permanent/token/ReflectionToken.java
2018-06-02 17:59:49 +02:00

31 lines
715 B
Java

package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
/**
*
* @author spjspj
*/
public final class ReflectionToken extends TokenImpl {
public ReflectionToken() {
super("Reflection", "2/2 white Reflection creature token");
this.setOriginalExpansionSetCode("TMP");
cardType.add(CardType.CREATURE);
color.setWhite(true);
subtype.add(SubType.REFLECTION);
power = new MageInt(2);
toughness = new MageInt(2);
}
public ReflectionToken(final ReflectionToken token) {
super(token);
}
public ReflectionToken copy() {
return new ReflectionToken(this);
}
}