mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
Additional Inkmoth pump tests
This commit is contained in:
parent
1c535e6677
commit
b648e08429
1 changed files with 40 additions and 1 deletions
|
|
@ -128,7 +128,7 @@ public class InfectTest extends CardTestPlayerBase {
|
|||
}
|
||||
|
||||
@Test
|
||||
public void testInkmothPumpedByBecomeImmense() {
|
||||
public void testInkmothPumpedByBecomeImmense1() {
|
||||
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Forest", 7);
|
||||
// {1}: Inkmoth Nexus becomes a 1/1 Blinkmoth artifact creature with flying and infect until end of turn. It's still a land.
|
||||
|
|
@ -152,6 +152,45 @@ public class InfectTest extends CardTestPlayerBase {
|
|||
assertGraveyardCount(playerA, "Become Immense", 1);
|
||||
assertCounterCount(playerB, CounterType.POISON, 7);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testInkmothPumpedByBecomeImmense2() {
|
||||
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Forest", 7);
|
||||
// {1}: Inkmoth Nexus becomes a 1/1 Blinkmoth artifact creature with flying and infect until end of turn. It's still a land.
|
||||
// (It deals damage to creatures in the form of -1/-1 counters and to players in the form of poison counters.)
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Inkmoth Nexus");
|
||||
|
||||
// Become Immense - {5}{G} - Instant
|
||||
// Delve (Each card you exile from your graveyard while casting this spell pays for 1.)
|
||||
// Target creature gets +6/+6 until end of turn.
|
||||
addCard(Zone.HAND, playerA, "Become Immense", 1);
|
||||
addCard(Zone.HAND, playerA, "Mutagenic Growth", 1); // {G} instant +2+2
|
||||
addCard(Zone.HAND, playerA, "Might of Old Krosa", 1); // {G} instant +2+2
|
||||
|
||||
activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{1}: {this} becomes");
|
||||
attack(1, playerA, "Inkmoth Nexus");
|
||||
castSpell(1, PhaseStep.DECLARE_ATTACKERS, playerA, "Mutagenic Growth");
|
||||
addTarget(playerA, "Inkmoth Nexus");
|
||||
castSpell(1, PhaseStep.DECLARE_ATTACKERS, playerA, "Might of Old Krosa");
|
||||
addTarget(playerA, "Inkmoth Nexus");
|
||||
// +5 poison
|
||||
|
||||
activateAbility(3, PhaseStep.PRECOMBAT_MAIN, playerA, "{1}: {this} becomes");
|
||||
attack(3, playerA, "Inkmoth Nexus");
|
||||
castSpell(3, PhaseStep.DECLARE_ATTACKERS, playerA, "Become Immense");
|
||||
addTarget(playerA, "Inkmoth Nexus");
|
||||
// +7 poison
|
||||
|
||||
setStopAt(3, PhaseStep.END_COMBAT);
|
||||
execute();
|
||||
|
||||
assertTapped("Inkmoth Nexus", true);
|
||||
assertGraveyardCount(playerA, "Become Immense", 1);
|
||||
assertGraveyardCount(playerA, "Mutagenic Growth", 1);
|
||||
assertGraveyardCount(playerA, "Might of Old Krosa", 1);
|
||||
assertCounterCount(playerB, CounterType.POISON, 12);
|
||||
}
|
||||
|
||||
/**
|
||||
* Phyrexian Obliterator is enchanted with Corrupted Conscience and Enslave
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue