mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 04:42:07 -08:00
fixed test failures
This commit is contained in:
parent
6487bf37b2
commit
c1cd1f7950
3 changed files with 5 additions and 5 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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 player’s 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 player’s 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 player’s 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.";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue