fixed test failures

This commit is contained in:
Evan Kranzler 2022-02-05 00:58:50 -05:00
parent 6487bf37b2
commit c1cd1f7950
3 changed files with 5 additions and 5 deletions

View file

@ -28,7 +28,7 @@ public final class MoonfolkPuzzlemaker extends CardImpl {
this.addAbility(FlyingAbility.getInstance());
// Whenever Moonfolk Puzzlemaker becomes tapped, scry 1.
this.addAbility(new BecomesTappedSourceTriggeredAbility(new ScryEffect(1)));
this.addAbility(new BecomesTappedSourceTriggeredAbility(new ScryEffect(1, false)));
}
private MoonfolkPuzzlemaker(final MoonfolkPuzzlemaker card) {

View file

@ -39,7 +39,7 @@ public final class PredatorsHour extends CardImpl {
);
// and Whenever this creature deals combat damage to a player,
// exile the top card of that players library face down.
// exile the top card of that player's library face down.
// You may look at and play that card for as long as it remains exiled,
// and you may spend mana as though it were mana of any color to cast that spell.
this.getSpellAbility().addEffect(new GainAbilityControlledEffect(
@ -50,7 +50,7 @@ public final class PredatorsHour extends CardImpl {
Duration.EndOfTurn,
StaticFilters.FILTER_CONTROLLED_CREATURES
).setText("\"Whenever this creature deals combat damage to a player, " +
"exile the top card of that players library face down. " +
"exile the top card of that player's library face down. " +
"You may look at and play that card for as long as it remains exiled, " +
"and you may spend mana as though it were mana of any color to cast that spell.\"")
.concatBy("and")
@ -70,7 +70,7 @@ class PredatorsHourEffect extends OneShotEffect {
public PredatorsHourEffect() {
super(Outcome.Benefit);
this.staticText = "exile the top card of that players library face down. " +
this.staticText = "exile the top card of that player's library face down. " +
"You may look at and play that card for as long as it remains exiled, " +
"and you may spend mana as though it were mana of any color to cast that spell.";
}

View file

@ -2,7 +2,6 @@ package mage.verify;
import com.google.common.base.CharMatcher;
import mage.ObjectColor;
import mage.abilities.Ability;
import mage.abilities.common.SagaAbility;
import mage.abilities.common.WerewolfBackTriggeredAbility;
import mage.abilities.common.WerewolfFrontTriggeredAbility;
@ -91,6 +90,7 @@ public class VerifyCardDataTest {
// power-toughness
skipListCreate(SKIP_LIST_PT);
skipListAddName(SKIP_LIST_PT, "NEO", "Futurist Sentinel"); // temporary
// color
skipListCreate(SKIP_LIST_COLOR);