mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Fix Extraplanar Lens, solve issue #8050
This commit is contained in:
parent
c21b64fcbf
commit
65211b62fe
2 changed files with 70 additions and 0 deletions
|
@ -127,6 +127,7 @@ class ExtraplanarLensTriggeredAbility extends TriggeredManaAbility {
|
|||
ManaEvent mEvent = (ManaEvent) event;
|
||||
for (Effect effect : getEffects()) {
|
||||
effect.setValue("mana", mEvent.getMana());
|
||||
effect.setValue("tappedPermanent", landTappedForMana);
|
||||
}
|
||||
getEffects().get(0).setTargetPointer(new FixedTarget(landTappedForMana.getId()));
|
||||
return true;
|
||||
|
|
|
@ -0,0 +1,69 @@
|
|||
package org.mage.test.cards.mana;
|
||||
|
||||
import mage.constants.PhaseStep;
|
||||
import mage.constants.Zone;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
public class ExtraplanarLensTest extends CardTestPlayerBase {
|
||||
|
||||
// Imprint - When Extraplanar Lens enters the battlefield, you may exile target land you control.
|
||||
// Whenever a land with the same name as the exiled card is tapped for mana, its controller adds one mana of any type that land produced.
|
||||
private final String lens = "Extraplanar Lens";
|
||||
//
|
||||
private final String snow_covered_forest = "Snow-Covered Forest";
|
||||
private final String forest = "Forest";
|
||||
|
||||
|
||||
// issue 8050
|
||||
// Extraplanar Lens is not working when I exiled a snow-covered land
|
||||
|
||||
@Test
|
||||
public void add_snow_mana() {
|
||||
addCard(Zone.HAND, playerA, lens);
|
||||
addCard(Zone.BATTLEFIELD, playerA, snow_covered_forest, 10);
|
||||
|
||||
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, lens);
|
||||
setChoice(playerA, "Yes");
|
||||
addTarget(playerA, snow_covered_forest);
|
||||
|
||||
waitStackResolved(1, PhaseStep.PRECOMBAT_MAIN);
|
||||
|
||||
activateManaAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}: Add {G}");
|
||||
checkManaPool("mana", 1, PhaseStep.PRECOMBAT_MAIN, playerA, "G", 2);
|
||||
|
||||
setStopAt(1, PhaseStep.POSTCOMBAT_MAIN);
|
||||
setStrictChooseMode(true);
|
||||
execute();
|
||||
assertAllCommandsUsed();
|
||||
|
||||
assertPermanentCount(playerA, lens, 1);
|
||||
assertExileCount(snow_covered_forest, 1);
|
||||
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void add_regular_mana() {
|
||||
addCard(Zone.HAND, playerA, lens);
|
||||
addCard(Zone.BATTLEFIELD, playerA, forest, 10);
|
||||
|
||||
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, lens);
|
||||
setChoice(playerA, "Yes");
|
||||
addTarget(playerA, forest);
|
||||
|
||||
waitStackResolved(1, PhaseStep.PRECOMBAT_MAIN);
|
||||
|
||||
activateManaAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "{T}: Add {G}");
|
||||
checkManaPool("mana", 1, PhaseStep.PRECOMBAT_MAIN, playerA, "G", 2);
|
||||
|
||||
setStopAt(1, PhaseStep.POSTCOMBAT_MAIN);
|
||||
setStrictChooseMode(true);
|
||||
execute();
|
||||
assertAllCommandsUsed();
|
||||
assertPermanentCount(playerA, lens, 1);
|
||||
assertExileCount(forest, 1);
|
||||
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue