mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
* Cylian Elf - Fixed missing creature card type attribute.
This commit is contained in:
parent
3a8b7cc281
commit
3ee6df9a3e
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue