Token image changes for DOM

This commit is contained in:
Michael Simons 2018-05-10 00:30:27 -04:00
parent 801d2c39a4
commit 8477a56c54

View file

@ -27,6 +27,9 @@
*/ */
package mage.game.permanent.token; package mage.game.permanent.token;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import mage.abilities.keyword.FlyingAbility; import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType; import mage.constants.CardType;
import mage.constants.SubType; import mage.constants.SubType;
@ -38,14 +41,21 @@ import mage.constants.SuperType;
*/ */
public class KaroxBladewingDragonToken extends TokenImpl { public class KaroxBladewingDragonToken extends TokenImpl {
final static private List<String> tokenImageSets = new ArrayList<>();
static {
tokenImageSets.addAll(Arrays.asList("DOM"));
}
public KaroxBladewingDragonToken() { public KaroxBladewingDragonToken() {
super("Karox Bladewing", "legendary 4/4 red Dragon creature token with flying", 4, 4); super("Karox Bladewing", "legendary 4/4 red Dragon creature token with flying", 4, 4);
availableImageSetCodes = tokenImageSets;
this.setOriginalExpansionSetCode("DOM"); this.setOriginalExpansionSetCode("DOM");
this.addSuperType(SuperType.LEGENDARY); this.addSuperType(SuperType.LEGENDARY);
this.cardType.add(CardType.CREATURE); this.cardType.add(CardType.CREATURE);
this.subtype.add(SubType.DRAGON); this.subtype.add(SubType.DRAGON);
this.color.setRed(true);
this.addAbility(FlyingAbility.getInstance()); this.addAbility(FlyingAbility.getInstance());
} }