fixed test failures

This commit is contained in:
Evan Kranzler 2022-02-05 21:28:11 -05:00
parent 5940ff7cfd
commit 03c893f61a
4 changed files with 6 additions and 4 deletions

View file

@ -49,7 +49,7 @@ public final class GiftOfWrath extends CardImpl {
)); ));
ability.addEffect(new ConditionalContinuousEffect(new GainAbilityAttachedEffect( ability.addEffect(new ConditionalContinuousEffect(new GainAbilityAttachedEffect(
new MenaceAbility(), AttachmentType.AURA 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); this.addAbility(ability);
// When Gift of Wrath leaves the battlefield, create a 2/2 red Spirit creature token with menace. // When Gift of Wrath leaves the battlefield, create a 2/2 red Spirit creature token with menace.

View file

@ -36,7 +36,8 @@ public final class KaitosPursuit extends CardImpl {
this.getSpellAbility().addTarget(new TargetPlayer()); this.getSpellAbility().addTarget(new TargetPlayer());
this.getSpellAbility().addEffect(new GainAbilityControlledEffect( this.getSpellAbility().addEffect(new GainAbilityControlledEffect(
new MenaceAbility(false), Duration.EndOfTurn, filter 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) { private KaitosPursuit(final KaitosPursuit card) {

View file

@ -48,7 +48,8 @@ public final class KamiOfRestlessShadows extends CardImpl {
// Put target creature card from your graveyard on top of your library. // Put target creature card from your graveyard on top of your library.
Mode mode = new Mode(new PutOnLibraryTargetEffect(true)); Mode mode = new Mode(new PutOnLibraryTargetEffect(true));
mode.addTarget(new TargetCardInYourGraveyard(StaticFilters.FILTER_CARD_CREATURE_YOUR_GRAVEYARD)); 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) { private KamiOfRestlessShadows(final KamiOfRestlessShadows card) {

View file

@ -90,7 +90,7 @@ public class VerifyCardDataTest {
// power-toughness // power-toughness
skipListCreate(SKIP_LIST_PT); skipListCreate(SKIP_LIST_PT);
skipListAddName(SKIP_LIST_PT, "NEO", "Futurist Sentinel"); // temporary // skipListAddName(SKIP_LIST_PT, "NEO", "Futurist Sentinel"); // temporary
// color // color
skipListCreate(SKIP_LIST_COLOR); skipListCreate(SKIP_LIST_COLOR);