mirror of
https://github.com/correl/mage.git
synced 2024-11-16 11:09:29 +00:00
Merge pull request #4709 from delftswa2018/hotfix/elvish-impersonator-type
Fixed test errors caused by Elvish Impersonator
This commit is contained in:
commit
721bc3f061
2 changed files with 2 additions and 1 deletions
|
@ -51,7 +51,7 @@ public class ElvishImpersonators extends CardImpl {
|
||||||
|
|
||||||
public ElvishImpersonators(UUID ownerId, CardSetInfo setInfo) {
|
public ElvishImpersonators(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{G}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{G}");
|
||||||
this.subtype.add(SubType.ELF);
|
this.subtype.add(SubType.ELVES);
|
||||||
this.power = new MageInt(0);
|
this.power = new MageInt(0);
|
||||||
this.toughness = new MageInt(0);
|
this.toughness = new MageInt(0);
|
||||||
|
|
||||||
|
|
|
@ -123,6 +123,7 @@ public enum SubType {
|
||||||
ELEMENTAL("Elemental", SubTypeSet.CreatureType),
|
ELEMENTAL("Elemental", SubTypeSet.CreatureType),
|
||||||
ELEPHANT("Elephant", SubTypeSet.CreatureType),
|
ELEPHANT("Elephant", SubTypeSet.CreatureType),
|
||||||
ELF("Elf", SubTypeSet.CreatureType),
|
ELF("Elf", SubTypeSet.CreatureType),
|
||||||
|
ELVES("Elves", SubTypeSet.CreatureType),
|
||||||
ELK("Elk", SubTypeSet.CreatureType),
|
ELK("Elk", SubTypeSet.CreatureType),
|
||||||
EYE("Eye", SubTypeSet.CreatureType),
|
EYE("Eye", SubTypeSet.CreatureType),
|
||||||
EWOK("Ewok", SubTypeSet.CreatureType, true), // Star Wars
|
EWOK("Ewok", SubTypeSet.CreatureType, true), // Star Wars
|
||||||
|
|
Loading…
Reference in a new issue