forked from External/mage
30 lines
646 B
Java
30 lines
646 B
Java
|
|
package mage.game.permanent.token;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class IllusionToken extends TokenImpl {
|
|
|
|
public IllusionToken() {
|
|
super("Illusion", "2/2 blue Illusion creature token");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setBlue(true);
|
|
|
|
subtype.add(SubType.ILLUSION);
|
|
power = new MageInt(2);
|
|
toughness = new MageInt(2);
|
|
}
|
|
|
|
public IllusionToken(final IllusionToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public IllusionToken copy() {
|
|
return new IllusionToken(this);
|
|
}
|
|
}
|