Change AE to Ae

This commit is contained in:
Fenhl 2016-09-17 16:59:24 +00:00
parent d9c804602e
commit ab7e86cb27
136 changed files with 575 additions and 577 deletions

View file

@ -9,29 +9,29 @@ import org.mage.test.serverside.base.CardTestPlayerBase;
*
* @author noxx
*/
public class AEtherFigmentTest extends CardTestPlayerBase {
public class AetherFigmentTest extends CardTestPlayerBase {
/*
AEther Figment {1}{U}
Aether Figment {1}{U}
Creature - Illusion
1/1
Kicker {3} (You may pay an additional as you cast this spell.)
AEther Figment can't be blocked.
If AEther Figment was kicked, it enters the battlefield with two +1/+1 counters on it.
Aether Figment can't be blocked.
If Aether Figment was kicked, it enters the battlefield with two +1/+1 counters on it.
*/
@Test
public void testEnteringWithCounters() {
addCard(Zone.BATTLEFIELD, playerA, "Island", 5);
addCard(Zone.HAND, playerA, "AEther Figment");
addCard(Zone.HAND, playerA, "Aether Figment");
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "AEther Figment");
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Aether Figment");
setStopAt(1, PhaseStep.BEGIN_COMBAT);
execute();
assertLife(playerA, 20);
assertLife(playerB, 20);
assertPermanentCount(playerA, "AEther Figment", 1);
assertPowerToughness(playerA, "AEther Figment", 3, 3);
assertPermanentCount(playerA, "Aether Figment", 1);
assertPowerToughness(playerA, "Aether Figment", 3, 3);
}
}

View file

@ -156,7 +156,7 @@ public class CloudshiftTest extends CardTestPlayerBase {
/*
I had a Stoneforge Mystic equipped with a Umesawa's Jitte. I activated Jitte 4 times to make
Stoneforge Mystic 9/10. My opponent put into play a Flickerwisp with his AEther Vial and
Stoneforge Mystic 9/10. My opponent put into play a Flickerwisp with his Aether Vial and
targeted my Stoneforge Mystic. At the end of my turn, Stoneforge Mystic came back as a 9/10,
before going down to 1/2 normally once my turn ended.
*/

View file

@ -70,43 +70,43 @@ public class KickerTest extends CardTestPlayerBase {
*
*/
/**
* AEther Figment Creature Illusion 1/1, 1U (2) Kicker {3} (You may pay an
* additional {3} as you cast this spell.) AEther Figment can't be blocked.
* If AEther Figment was kicked, it enters the battlefield with two +1/+1
* Aether Figment Creature Illusion 1/1, 1U (2) Kicker {3} (You may pay an
* additional {3} as you cast this spell.) Aether Figment can't be blocked.
* If Aether Figment was kicked, it enters the battlefield with two +1/+1
* counters on it.
*
*/
@Test
public void testUseKicker() {
addCard(Zone.BATTLEFIELD, playerA, "Island", 5);
addCard(Zone.HAND, playerA, "AEther Figment");
addCard(Zone.HAND, playerA, "Aether Figment");
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "AEther Figment");
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Aether Figment");
setChoice(playerA, "Yes");
setStopAt(1, PhaseStep.BEGIN_COMBAT);
execute();
assertPermanentCount(playerA, "AEther Figment", 1);
assertCounterCount("AEther Figment", CounterType.P1P1, 2);
assertPowerToughness(playerA, "AEther Figment", 3, 3);
assertPermanentCount(playerA, "Aether Figment", 1);
assertCounterCount("Aether Figment", CounterType.P1P1, 2);
assertPowerToughness(playerA, "Aether Figment", 3, 3);
}
@Test
public void testDontUseKicker() {
addCard(Zone.BATTLEFIELD, playerA, "Island", 5);
addCard(Zone.HAND, playerA, "AEther Figment");
addCard(Zone.HAND, playerA, "Aether Figment");
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "AEther Figment");
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Aether Figment");
setChoice(playerA, "No");
setStopAt(1, PhaseStep.BEGIN_COMBAT);
execute();
assertPermanentCount(playerA, "AEther Figment", 1);
assertCounterCount("AEther Figment", CounterType.P1P1, 0);
assertPowerToughness(playerA, "AEther Figment", 1, 1);
assertPermanentCount(playerA, "Aether Figment", 1);
assertCounterCount("Aether Figment", CounterType.P1P1, 0);
assertPowerToughness(playerA, "Aether Figment", 1, 1);
}

View file

@ -67,8 +67,8 @@ public class CanopyCoverTest extends CardTestPlayerBase {
@Test
public void testCantBeTargetedWithAbilities() {
// {U},Sacrifice AEther Spellbomb: Return target creature to its owner's hand.
addCard(Zone.BATTLEFIELD, playerB, "AEther Spellbomb");
// {U},Sacrifice Aether Spellbomb: Return target creature to its owner's hand.
addCard(Zone.BATTLEFIELD, playerB, "Aether Spellbomb");
addCard(Zone.BATTLEFIELD, playerB, "Island", 1);
addCard(Zone.BATTLEFIELD, playerA, "Silvercoat Lion"); // 2/2 Creature - Lion
@ -87,7 +87,7 @@ public class CanopyCoverTest extends CardTestPlayerBase {
assertPermanentCount(playerA, "Canopy Cover", 1);
assertPermanentCount(playerA, "Silvercoat Lion", 1);
assertGraveyardCount(playerB, "AEther Spellbomb", 0);
assertPermanentCount(playerB, "AEther Spellbomb", 1);
assertGraveyardCount(playerB, "Aether Spellbomb", 0);
assertPermanentCount(playerB, "Aether Spellbomb", 1);
}
}