Changed replacement effects of OrbOfDreams and Corpsejack Menace to selfScope = false. Extended Orb of Dreams test.

This commit is contained in:
LevelX2 2013-03-22 15:01:38 +01:00
parent b46bdef429
commit cb18bf2bd4
3 changed files with 15 additions and 7 deletions

View file

@ -30,6 +30,7 @@ package mage.sets.betrayersofkamigawa;
import java.util.UUID;
import mage.Constants;
import mage.Constants.CardType;
import mage.Constants.Duration;
import mage.Constants.Rarity;
import mage.abilities.Ability;
import mage.abilities.common.SimpleStaticAbility;
@ -65,7 +66,7 @@ public class OrbOfDreams extends CardImpl<OrbOfDreams> {
private class OrbOfDreamsEffect extends ReplacementEffectImpl<OrbOfDreamsEffect> {
OrbOfDreamsEffect() {
super(Constants.Duration.WhileOnBattlefield, Constants.Outcome.Tap);
super(Duration.WhileOnBattlefield, Constants.Outcome.Tap, false);
staticText = "Permanents enter the battlefield tapped";
}

View file

@ -28,9 +28,11 @@
package mage.sets.returntoravnica;
import java.util.UUID;
import mage.Constants;
import mage.Constants.CardType;
import mage.Constants.Duration;
import mage.Constants.Outcome;
import mage.Constants.Rarity;
import mage.Constants.Zone;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.common.SimpleStaticAbility;
@ -66,7 +68,7 @@ public class CorpsejackMenace extends CardImpl<CorpsejackMenace> {
this.toughness = new MageInt(4);
// If one or more +1/+1 counters would be placed on a creature you control, twice that many +1/+1 counters are placed on it instead.
this.addAbility(new SimpleStaticAbility(Constants.Zone.BATTLEFIELD, new CorpsejackMenaceReplacementEffect()));
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CorpsejackMenaceReplacementEffect()));
}
@ -83,7 +85,7 @@ public class CorpsejackMenace extends CardImpl<CorpsejackMenace> {
class CorpsejackMenaceReplacementEffect extends ReplacementEffectImpl<CorpsejackMenaceReplacementEffect> {
CorpsejackMenaceReplacementEffect() {
super(Constants.Duration.WhileOnBattlefield, Constants.Outcome.BoostCreature);
super(Duration.WhileOnBattlefield, Outcome.BoostCreature, false);
staticText = "If one or more +1/+1 counters would be placed on a creature you control, twice that many +1/+1 counters are placed on it instead";
}
@ -123,4 +125,4 @@ class CorpsejackMenaceReplacementEffect extends ReplacementEffectImpl<Corpsejack
public CorpsejackMenaceReplacementEffect copy() {
return new CorpsejackMenaceReplacementEffect(this);
}
}
}