forked from External/mage
* Fixed knight token images from the DOM set not displaying * Fixed the name reference of RNA's thopter token * Fixed misspelling regarding Tibalt, Cosmic Impostor's emblem token causing it not to show in game * Updated Faerie Dragon token to be present in game * Removed redundant code regarding KLD constructs and improved thematic consistency * Added Scryfall token download links for DTK * Added support for and assigned SNC token images
35 lines
866 B
Java
35 lines
866 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.VigilanceAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public final class DogVigilanceToken extends TokenImpl {
|
|
|
|
public DogVigilanceToken() {
|
|
super("Dog Token", "3/1 green Dog creature token with vigilance");
|
|
cardType.add(CardType.CREATURE);
|
|
subtype.add(SubType.DOG);
|
|
|
|
color.setGreen(true);
|
|
power = new MageInt(3);
|
|
toughness = new MageInt(1);
|
|
|
|
this.addAbility(VigilanceAbility.getInstance());
|
|
|
|
availableImageSetCodes = Arrays.asList("SNC");
|
|
}
|
|
|
|
private DogVigilanceToken(final DogVigilanceToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public DogVigilanceToken copy() {
|
|
return new DogVigilanceToken(this);
|
|
}
|
|
}
|