mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Fixed Essence of the Wild's handling of Enters The Battlefield replacement effect.
This commit is contained in:
parent
c34377526f
commit
27c96d7ea9
2 changed files with 2 additions and 2 deletions
|
@ -78,7 +78,7 @@ public class EssenceOfTheWild extends CardImpl<EssenceOfTheWild> {
|
||||||
class EssenceOfTheWildEffect extends ReplacementEffectImpl<EssenceOfTheWildEffect> {
|
class EssenceOfTheWildEffect extends ReplacementEffectImpl<EssenceOfTheWildEffect> {
|
||||||
|
|
||||||
public EssenceOfTheWildEffect() {
|
public EssenceOfTheWildEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Outcome.Copy);
|
super(Duration.WhileOnBattlefield, Outcome.Copy, false);
|
||||||
staticText = "Creatures you control enter the battlefield as a copy of {this}";
|
staticText = "Creatures you control enter the battlefield as a copy of {this}";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -67,7 +67,7 @@ public class TorporOrb extends CardImpl<TorporOrb> {
|
||||||
|
|
||||||
class TorporOrbEffect extends ReplacementEffectImpl<TorporOrbEffect> {
|
class TorporOrbEffect extends ReplacementEffectImpl<TorporOrbEffect> {
|
||||||
TorporOrbEffect() {
|
TorporOrbEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Outcome.Detriment);
|
super(Duration.WhileOnBattlefield, Outcome.Detriment, false);
|
||||||
staticText = "Creatures entering the battlefield don't cause abilities to trigger";
|
staticText = "Creatures entering the battlefield don't cause abilities to trigger";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue