mirror of
https://github.com/correl/mage.git
synced 2024-11-25 19:19:55 +00:00
Token image changes for DOM
This commit is contained in:
parent
801d2c39a4
commit
8477a56c54
1 changed files with 10 additions and 0 deletions
|
@ -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());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue