mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00: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(
|
||||
new GainAbilitySourceEffect(new CantBeBlockedSourceAbility(), Duration.WhileOnBattlefield),
|
||||
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());
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
package mage.cards.t;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.MageObject;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
|
@ -15,6 +13,8 @@ import mage.constants.Outcome;
|
|||
import mage.game.Game;
|
||||
import mage.players.Player;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author arcox
|
||||
*/
|
||||
|
@ -42,7 +42,7 @@ class TrackDownEffect extends OneShotEffect {
|
|||
|
||||
public TrackDownEffect() {
|
||||
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) {
|
||||
|
|
Loading…
Reference in a new issue