mirror of
https://github.com/correl/mage.git
synced 2024-11-14 11:09:31 +00:00
[UGL] remove "Elves" subtype from Elvish Impersonators
This commit is contained in:
parent
ae94db9644
commit
1be43ef6ff
3 changed files with 3 additions and 2 deletions
|
@ -22,7 +22,7 @@ public final 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.ELVES);
|
this.subtype.add(SubType.ELF);
|
||||||
this.power = new MageInt(0);
|
this.power = new MageInt(0);
|
||||||
this.toughness = new MageInt(0);
|
this.toughness = new MageInt(0);
|
||||||
|
|
||||||
|
|
|
@ -131,6 +131,8 @@ public class VerifyCardDataTest {
|
||||||
// subtype
|
// subtype
|
||||||
skipListCreate(SKIP_LIST_SUBTYPE);
|
skipListCreate(SKIP_LIST_SUBTYPE);
|
||||||
skipListAddName(SKIP_LIST_SUBTYPE, "UGL", "Miss Demeanor"); // uses multiple types as a joke card: Lady, of, Proper, Etiquette
|
skipListAddName(SKIP_LIST_SUBTYPE, "UGL", "Miss Demeanor"); // uses multiple types as a joke card: Lady, of, Proper, Etiquette
|
||||||
|
skipListAddName(SKIP_LIST_SUBTYPE, "UGL", "Elvish Impersonators"); // subtype is "Elves" pun
|
||||||
|
skipListAddName(SKIP_LIST_SUBTYPE, "UND", "Elvish Impersonators");
|
||||||
|
|
||||||
// number
|
// number
|
||||||
skipListCreate(SKIP_LIST_NUMBER);
|
skipListCreate(SKIP_LIST_NUMBER);
|
||||||
|
|
|
@ -153,7 +153,6 @@ 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, true), // Un-sets
|
|
||||||
ELK("Elk", SubTypeSet.CreatureType),
|
ELK("Elk", SubTypeSet.CreatureType),
|
||||||
EMPLOYEE("Employee", SubTypeSet.CreatureType),
|
EMPLOYEE("Employee", SubTypeSet.CreatureType),
|
||||||
EYE("Eye", SubTypeSet.CreatureType),
|
EYE("Eye", SubTypeSet.CreatureType),
|
||||||
|
|
Loading…
Reference in a new issue