mirror of
https://github.com/correl/mage.git
synced 2024-11-28 11:09:54 +00:00
fix verify failure
This commit is contained in:
parent
2e78791074
commit
0df610fbe7
2 changed files with 3 additions and 1 deletions
|
@ -28,7 +28,7 @@ public final class SarumanTheWhite extends CardImpl {
|
|||
this.toughness = new MageInt(4);
|
||||
|
||||
// Ward {2}
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}")));
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"),false));
|
||||
|
||||
// Whenever you cast your second spell each turn, amass Orcs 2.
|
||||
this.addAbility(new CastSecondSpellTriggeredAbility(new AmassEffect(2, SubType.ORC)));
|
||||
|
|
|
@ -128,10 +128,12 @@ public class VerifyCardDataTest {
|
|||
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, "UST", "capital offense"); // uses "instant" instead "Instant" as a joke card
|
||||
skipListAddName(SKIP_LIST_TYPE, "LTR", "Easterling Vanguard"); // temporary
|
||||
|
||||
// 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, "LTR", "Easterling Vanguard"); // temporary
|
||||
|
||||
// number
|
||||
skipListCreate(SKIP_LIST_NUMBER);
|
||||
|
|
Loading…
Reference in a new issue