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
45 lines
1.1 KiB
Java
45 lines
1.1 KiB
Java
|
|
|
|
package mage.game.permanent.token;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class WingmateRocToken extends TokenImpl {
|
|
|
|
public WingmateRocToken() {
|
|
super("Bird Token", "3/4 white Bird creature token with flying");
|
|
cardType.add(CardType.CREATURE);
|
|
subtype.add(SubType.BIRD);
|
|
color.setWhite(true);
|
|
power = new MageInt(3);
|
|
toughness = new MageInt(4);
|
|
addAbility(FlyingAbility.getInstance());
|
|
|
|
availableImageSetCodes = Arrays.asList("KTK", "C19");
|
|
}
|
|
|
|
public WingmateRocToken(final WingmateRocToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public WingmateRocToken copy() {
|
|
return new WingmateRocToken(this);
|
|
}
|
|
|
|
@Override
|
|
public void setExpansionSetCodeForImage(String code) {
|
|
super.setExpansionSetCodeForImage(code);
|
|
|
|
if (getOriginalExpansionSetCode() != null && getOriginalExpansionSetCode().equals("C19")) {
|
|
this.setTokenType(2);
|
|
}
|
|
}
|
|
}
|