mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
fixed a test failure
This commit is contained in:
parent
8d6ce30626
commit
77d792bbaf
3 changed files with 4 additions and 4 deletions
|
@ -131,7 +131,7 @@ public class JaceTest extends CardTestPlayerBase {
|
||||||
addCard(Zone.GRAVEYARD, playerA, ancestralVision);
|
addCard(Zone.GRAVEYARD, playerA, ancestralVision);
|
||||||
addCard(Zone.HAND, playerA, "Swamp", 1);
|
addCard(Zone.HAND, playerA, "Swamp", 1);
|
||||||
|
|
||||||
activateAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}: Draw a card, then discard a card. If there are five or more cards in your graveyard");
|
activateAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}:");
|
||||||
setChoice(playerA, "Swamp");
|
setChoice(playerA, "Swamp");
|
||||||
activateAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "-3:");
|
activateAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "-3:");
|
||||||
addTarget(playerA, ancestralVision);
|
addTarget(playerA, ancestralVision);
|
||||||
|
|
|
@ -341,7 +341,7 @@ public class ZoneChangeReplacementTest extends CardTestPlayerBase {
|
||||||
activateAbility(2, PhaseStep.PRECOMBAT_MAIN, playerB, "{2}{B}{B}, {T}: Return target creature", "Jace, Vryn's Prodigy");
|
activateAbility(2, PhaseStep.PRECOMBAT_MAIN, playerB, "{2}{B}{B}, {T}: Return target creature", "Jace, Vryn's Prodigy");
|
||||||
|
|
||||||
// {T}: Draw a card, then discard a card. If there are five or more cards in your graveyard, exile Jace, Vryn's Prodigy, then return him to the battefield transformed under his owner's control.
|
// {T}: Draw a card, then discard a card. If there are five or more cards in your graveyard, exile Jace, Vryn's Prodigy, then return him to the battefield transformed under his owner's control.
|
||||||
activateAbility(2, PhaseStep.BEGIN_COMBAT, playerB, "{T}: Draw a card, then discard a card. If there are five or more cards in your graveyard");
|
activateAbility(2, PhaseStep.BEGIN_COMBAT, playerB, "{T}:");
|
||||||
|
|
||||||
activateAbility(2, PhaseStep.POSTCOMBAT_MAIN, playerB, "+1: Up to one target creature gets -2/-0 until your next turn");
|
activateAbility(2, PhaseStep.POSTCOMBAT_MAIN, playerB, "+1: Up to one target creature gets -2/-0 until your next turn");
|
||||||
setStopAt(3, PhaseStep.UNTAP);
|
setStopAt(3, PhaseStep.UNTAP);
|
||||||
|
|
|
@ -37,9 +37,9 @@ public class CardsInControllerGraveyardCondition implements Condition {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return CardUtil.numberToText(value, "one") + " or more "
|
return "there are " + CardUtil.numberToText(value, "one") + " or more "
|
||||||
+ (filter == null ? "cards" : filter.getMessage())
|
+ (filter == null ? "cards" : filter.getMessage())
|
||||||
+ " are in your graveyard";
|
+ " in your graveyard";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue