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
52 lines
1.3 KiB
Java
52 lines
1.3 KiB
Java
|
|
|
|
package mage.game.permanent.token;
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class LeafdrakeRoostDrakeToken extends TokenImpl {
|
|
|
|
static final private List<String> tokenImageSets = new ArrayList<>();
|
|
|
|
static {
|
|
tokenImageSets.addAll(Arrays.asList("CMA"));
|
|
}
|
|
|
|
public LeafdrakeRoostDrakeToken() {
|
|
this(null, 0);
|
|
}
|
|
|
|
public LeafdrakeRoostDrakeToken(String setCode) {
|
|
this(setCode, 0);
|
|
}
|
|
|
|
public LeafdrakeRoostDrakeToken(String setCode, int tokenType) {
|
|
super("Drake Token", "2/2 green and blue Drake creature token with flying");
|
|
availableImageSetCodes = tokenImageSets;
|
|
setOriginalExpansionSetCode(setCode);
|
|
cardType.add(CardType.CREATURE);
|
|
color.setGreen(true);
|
|
color.setBlue(true);
|
|
subtype.add(SubType.DRAKE);
|
|
power = new MageInt(2);
|
|
toughness = new MageInt(2);
|
|
this.addAbility(FlyingAbility.getInstance());
|
|
}
|
|
|
|
public LeafdrakeRoostDrakeToken(final LeafdrakeRoostDrakeToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public LeafdrakeRoostDrakeToken copy() {
|
|
return new LeafdrakeRoostDrakeToken(this);
|
|
}
|
|
}
|