mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
fixed test failures
This commit is contained in:
parent
5940ff7cfd
commit
03c893f61a
4 changed files with 6 additions and 4 deletions
|
@ -49,7 +49,7 @@ public final class GiftOfWrath extends CardImpl {
|
|||
));
|
||||
ability.addEffect(new ConditionalContinuousEffect(new GainAbilityAttachedEffect(
|
||||
new MenaceAbility(), AttachmentType.AURA
|
||||
), condition, "and has menace"));
|
||||
), condition, "and has menace. <i>(It can't be blocked except by two or more creatures.)</i>"));
|
||||
this.addAbility(ability);
|
||||
|
||||
// When Gift of Wrath leaves the battlefield, create a 2/2 red Spirit creature token with menace.
|
||||
|
|
|
@ -36,7 +36,8 @@ public final class KaitosPursuit extends CardImpl {
|
|||
this.getSpellAbility().addTarget(new TargetPlayer());
|
||||
this.getSpellAbility().addEffect(new GainAbilityControlledEffect(
|
||||
new MenaceAbility(false), Duration.EndOfTurn, filter
|
||||
));
|
||||
).setText("Ninjas and Rogues you control gain menace until end of turn. " +
|
||||
"<i>(They can't be blocked except by two or more creatures.)</i>"));
|
||||
}
|
||||
|
||||
private KaitosPursuit(final KaitosPursuit card) {
|
||||
|
|
|
@ -48,7 +48,8 @@ public final class KamiOfRestlessShadows extends CardImpl {
|
|||
// • Put target creature card from your graveyard on top of your library.
|
||||
Mode mode = new Mode(new PutOnLibraryTargetEffect(true));
|
||||
mode.addTarget(new TargetCardInYourGraveyard(StaticFilters.FILTER_CARD_CREATURE_YOUR_GRAVEYARD));
|
||||
this.getSpellAbility().addMode(mode);
|
||||
ability.addMode(mode);
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
private KamiOfRestlessShadows(final KamiOfRestlessShadows card) {
|
||||
|
|
|
@ -90,7 +90,7 @@ public class VerifyCardDataTest {
|
|||
|
||||
// power-toughness
|
||||
skipListCreate(SKIP_LIST_PT);
|
||||
skipListAddName(SKIP_LIST_PT, "NEO", "Futurist Sentinel"); // temporary
|
||||
// skipListAddName(SKIP_LIST_PT, "NEO", "Futurist Sentinel"); // temporary
|
||||
|
||||
// color
|
||||
skipListCreate(SKIP_LIST_COLOR);
|
||||
|
|
Loading…
Reference in a new issue