mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 02:52:02 -08:00
Merge pull request #8332 from awjackson/fix_skeletal_scrying
Fix Skeletal Scrying effect
This commit is contained in:
commit
b37dd094e1
1 changed files with 2 additions and 2 deletions
|
|
@ -6,7 +6,7 @@ import mage.abilities.costs.CostAdjuster;
|
|||
import mage.abilities.costs.common.ExileFromGraveCost;
|
||||
import mage.abilities.dynamicvalue.common.ManacostVariableValue;
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.abilities.effects.common.GainLifeEffect;
|
||||
import mage.abilities.effects.common.LoseLifeSourceControllerEffect;
|
||||
import mage.abilities.effects.common.InfoEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
|
|
@ -41,7 +41,7 @@ public final class SkeletalScrying extends CardImpl {
|
|||
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(
|
||||
ManacostVariableValue.REGULAR
|
||||
).setText("you draw X cards"));
|
||||
this.getSpellAbility().addEffect(new GainLifeEffect(
|
||||
this.getSpellAbility().addEffect(new LoseLifeSourceControllerEffect(
|
||||
ManacostVariableValue.REGULAR
|
||||
).concatBy("and"));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue