* Cylian Elf - Fixed missing creature card type attribute.

This commit is contained in:
LevelX2 2015-03-10 23:53:57 +01:00
parent 3a8b7cc281
commit 3ee6df9a3e

View file

@ -41,11 +41,11 @@ import mage.cards.CardImpl;
public class CylianElf extends CardImpl { public class CylianElf extends CardImpl {
public CylianElf (UUID ownerId) { public CylianElf (UUID ownerId) {
super(ownerId, 127, "Cylian Elf", Rarity.COMMON, new CardType[]{}, "{1}{G}"); super(ownerId, 127, "Cylian Elf", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{G}");
this.expansionSetCode = "ALA"; this.expansionSetCode = "ALA";
this.subtype.add("Elf"); this.subtype.add("Elf");
this.subtype.add("Scout"); this.subtype.add("Scout");
this.color.setGreen(true);
this.power = new MageInt(2); this.power = new MageInt(2);
this.toughness = new MageInt(2); this.toughness = new MageInt(2);
} }