mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Added missing names of tokens (according rule 110.5c). This was the reason that no image was shown for tokens although a suitable image did exist.
This commit is contained in:
parent
22a9f25d7a
commit
7039b1991c
9 changed files with 10 additions and 10 deletions
|
@ -75,7 +75,7 @@ public class GoblinTrenches extends CardImpl<GoblinTrenches> {
|
|||
|
||||
class GoblinTrenchesToken extends Token {
|
||||
GoblinTrenchesToken() {
|
||||
super("", "1/1 red and white Goblin Soldier creature tokens");
|
||||
super("Goblin Soldier", "1/1 red and white Goblin Soldier creature tokens");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
color.setWhite(true);
|
||||
|
|
|
@ -64,7 +64,7 @@ public class PenumbraBobcat extends CardImpl<PenumbraBobcat> {
|
|||
|
||||
class PenumbraBobcatToken extends Token {
|
||||
PenumbraBobcatToken() {
|
||||
super("", "2/1 black Cat creature token");
|
||||
super("Cat", "2/1 black Cat creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
subtype.add("Cat");
|
||||
|
|
|
@ -64,7 +64,7 @@ public class PenumbraKavu extends CardImpl<PenumbraKavu> {
|
|||
|
||||
class PenumbraKavuToken extends Token {
|
||||
PenumbraKavuToken() {
|
||||
super("", "3/3 black Kavu creature token");
|
||||
super("Kavu", "3/3 black Kavu creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
subtype.add("Kavu");
|
||||
|
|
|
@ -66,7 +66,7 @@ public class PenumbraWurm extends CardImpl<PenumbraWurm> {
|
|||
|
||||
class PenumbraWurmToken extends Token {
|
||||
PenumbraWurmToken() {
|
||||
super("", "6/6 black Wurm creature token with trample");
|
||||
super("Wurm", "6/6 black Wurm creature token with trample");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
subtype.add("Wurm");
|
||||
|
|
|
@ -83,7 +83,7 @@ public class MelokuTheCloudedMirror extends CardImpl<MelokuTheCloudedMirror> {
|
|||
|
||||
class MelokuTheCloudedMirrorToken extends Token {
|
||||
MelokuTheCloudedMirrorToken() {
|
||||
super("", "a 1/1 blue Illusion creature token with flying");
|
||||
super("Illusion", "a 1/1 blue Illusion creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
subtype.add("Illusion");
|
||||
|
|
|
@ -83,7 +83,7 @@ public class WandOfTheElements extends CardImpl<WandOfTheElements> {
|
|||
|
||||
class WandOfTheElementsFirstToken extends Token {
|
||||
public WandOfTheElementsFirstToken() {
|
||||
super("", "2/2 blue Elemental creature token with flying");
|
||||
super("Elemental", "2/2 blue Elemental creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
this.subtype.add("Elemental");
|
||||
this.color.setBlue(true);
|
||||
|
@ -96,7 +96,7 @@ class WandOfTheElementsFirstToken extends Token {
|
|||
|
||||
class WandOfTheElementsSecondToken extends Token {
|
||||
public WandOfTheElementsSecondToken() {
|
||||
super("", "3/3 red Elemental creature token");
|
||||
super("Elemental", "3/3 red Elemental creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
this.subtype.add("Elemental");
|
||||
this.color.setRed(true);
|
||||
|
|
|
@ -83,7 +83,7 @@ public class CreakwoodLiege extends CardImpl<CreakwoodLiege> {
|
|||
|
||||
class CreakwoodLiegeToken extends Token {
|
||||
CreakwoodLiegeToken() {
|
||||
super("", "1/1 black and green Worm creature token");
|
||||
super("Worm", "1/1 black and green Worm creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
color.setGreen(true);
|
||||
|
|
|
@ -148,7 +148,7 @@ class KazuulTyrantOfTheCliffsEffect extends OneShotEffect<KazuulTyrantOfTheCliff
|
|||
class OgreToken extends Token {
|
||||
|
||||
OgreToken() {
|
||||
super("", "3/3 red Ogre creature");
|
||||
super("Ogre", "3/3 red Ogre creature");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
subtype.add("Ogre");
|
||||
|
|
|
@ -38,7 +38,7 @@ import mage.MageInt;
|
|||
public class ElfToken extends Token {
|
||||
|
||||
public ElfToken() {
|
||||
super("", "1/1 green Elf Warrior creature token");
|
||||
super("Elf Warrior", "1/1 green Elf Warrior creature token");
|
||||
cardType.add(Constants.CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
subtype.add("Elf");
|
||||
|
|
Loading…
Reference in a new issue