mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
fix verify failure
This commit is contained in:
parent
925a73bf34
commit
8d324692b0
2 changed files with 3 additions and 2 deletions
|
@ -15,7 +15,7 @@ import java.util.UUID;
|
||||||
public final class YotianMedic extends CardImpl {
|
public final class YotianMedic extends CardImpl {
|
||||||
|
|
||||||
public YotianMedic(UUID ownerId, CardSetInfo setInfo) {
|
public YotianMedic(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE, CardType.CREATURE}, "{2}{W}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{W}");
|
||||||
|
|
||||||
this.subtype.add(SubType.HUMAN);
|
this.subtype.add(SubType.HUMAN);
|
||||||
this.subtype.add(SubType.SOLDIER);
|
this.subtype.add(SubType.SOLDIER);
|
||||||
|
|
|
@ -95,7 +95,6 @@ public class VerifyCardDataTest {
|
||||||
|
|
||||||
// color
|
// color
|
||||||
skipListCreate(SKIP_LIST_COLOR);
|
skipListCreate(SKIP_LIST_COLOR);
|
||||||
skipListAddName(SKIP_LIST_COLOR, "BRO", "Mishra, Lost to Phyrexia"); // temporary
|
|
||||||
|
|
||||||
// cost
|
// cost
|
||||||
skipListCreate(SKIP_LIST_COST);
|
skipListCreate(SKIP_LIST_COST);
|
||||||
|
@ -108,10 +107,12 @@ public class VerifyCardDataTest {
|
||||||
skipListAddName(SKIP_LIST_TYPE, "UNH", "Old Fogey"); // uses summon word as a joke card
|
skipListAddName(SKIP_LIST_TYPE, "UNH", "Old Fogey"); // uses summon word as a joke card
|
||||||
skipListAddName(SKIP_LIST_TYPE, "UND", "Old Fogey");
|
skipListAddName(SKIP_LIST_TYPE, "UND", "Old Fogey");
|
||||||
skipListAddName(SKIP_LIST_TYPE, "UST", "capital offense"); // uses "instant" instead "Instant" as a joke card
|
skipListAddName(SKIP_LIST_TYPE, "UST", "capital offense"); // uses "instant" instead "Instant" as a joke card
|
||||||
|
skipListAddName(SKIP_LIST_TYPE, "BRO", "Yotian Medic"); // temporary
|
||||||
|
|
||||||
// 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, "BRO", "Yotian Medic"); // temporary
|
||||||
|
|
||||||
// number
|
// number
|
||||||
skipListCreate(SKIP_LIST_NUMBER);
|
skipListCreate(SKIP_LIST_NUMBER);
|
||||||
|
|
Loading…
Reference in a new issue