forked from External/mage
* Stopped OGW tokens which don't have images being used as image sources * Removed C13 as a token image source as it has no related token images * Added support for and assigned C14 token images * Added support for and assigned C15 token images * Added support for and assigned C16 token images * Added support for and assigned C17 token images * Fixed C18 token images * Fixed C19 token images
36 lines
843 B
Java
36 lines
843 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 SeedGuardianToken extends TokenImpl {
|
|
|
|
public SeedGuardianToken() {
|
|
this(1);
|
|
}
|
|
|
|
public SeedGuardianToken(int xValue) {
|
|
super("Elemental Token", "X/X green Elemental creature token");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setGreen(true);
|
|
subtype.add(SubType.ELEMENTAL);
|
|
power = new MageInt(xValue);
|
|
toughness = new MageInt(xValue);
|
|
|
|
availableImageSetCodes = Arrays.asList("CHK", "OGW");
|
|
}
|
|
|
|
public SeedGuardianToken(final SeedGuardianToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public SeedGuardianToken copy() {
|
|
return new SeedGuardianToken(this);
|
|
}
|
|
}
|