mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08:00
fixed some test failures
This commit is contained in:
parent
271b8d06f4
commit
16f7e401f7
2 changed files with 4 additions and 4 deletions
|
|
@ -33,7 +33,7 @@ public final class TomeAnima extends CardImpl {
|
||||||
this.addAbility(new SimpleStaticAbility(new ConditionalContinuousEffect(
|
this.addAbility(new SimpleStaticAbility(new ConditionalContinuousEffect(
|
||||||
new GainAbilitySourceEffect(new CantBeBlockedSourceAbility(), Duration.WhileOnBattlefield),
|
new GainAbilitySourceEffect(new CantBeBlockedSourceAbility(), Duration.WhileOnBattlefield),
|
||||||
TomeAnimaCondition.instance,
|
TomeAnimaCondition.instance,
|
||||||
"{this} can’t be blocked as long as you’ve drawn two or more cards this turn"
|
"{this} can't be blocked as long as you've drawn two or more cards this turn"
|
||||||
)), new CardsDrawnThisTurnWatcher());
|
)), new CardsDrawnThisTurnWatcher());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,5 @@
|
||||||
package mage.cards.t;
|
package mage.cards.t;
|
||||||
|
|
||||||
import java.util.UUID;
|
|
||||||
|
|
||||||
import mage.MageObject;
|
import mage.MageObject;
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
import mage.abilities.effects.OneShotEffect;
|
import mage.abilities.effects.OneShotEffect;
|
||||||
|
|
@ -15,6 +13,8 @@ import mage.constants.Outcome;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.players.Player;
|
import mage.players.Player;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author arcox
|
* @author arcox
|
||||||
*/
|
*/
|
||||||
|
|
@ -42,7 +42,7 @@ class TrackDownEffect extends OneShotEffect {
|
||||||
|
|
||||||
public TrackDownEffect() {
|
public TrackDownEffect() {
|
||||||
super(Outcome.DrawCard);
|
super(Outcome.DrawCard);
|
||||||
this.staticText = "then reveal the top card of your library. If it’s a creature or land card, draw a card";
|
this.staticText = "then reveal the top card of your library. If it's a creature or land card, draw a card";
|
||||||
}
|
}
|
||||||
|
|
||||||
public TrackDownEffect(final TrackDownEffect effect) {
|
public TrackDownEffect(final TrackDownEffect effect) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue