forked from External/mage
* [M21] added tokens; * [M21] added tokens download support; * Fixed wrong images for some tokens (Angel, Beast, Bird, Cat, etc);
32 lines
724 B
Java
32 lines
724 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
* @author spjspj
|
|
*/
|
|
public final class GreenCatToken extends TokenImpl {
|
|
|
|
public GreenCatToken() {
|
|
super("Cat", "1/1 green Cat creature token");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setGreen(true);
|
|
subtype.add(SubType.CAT);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
|
|
availableImageSetCodes.addAll(Arrays.asList("6ED", "M21"));
|
|
}
|
|
|
|
public GreenCatToken(final GreenCatToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public GreenCatToken copy() {
|
|
return new GreenCatToken(this);
|
|
}
|
|
}
|