mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
Merge pull request #13830 from ThorstenHacke/bugfix/SephirothOneWingedAngelEmblem
change lose life to gain life
This commit is contained in:
commit
4eb988de92
1 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ package mage.game.command.emblems;
|
|||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.DiesCreatureTriggeredAbility;
|
||||
import mage.abilities.effects.common.LoseLifeSourceControllerEffect;
|
||||
import mage.abilities.effects.common.GainLifeEffect;
|
||||
import mage.abilities.effects.common.LoseLifeTargetEffect;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.StaticFilters;
|
||||
|
|
@ -21,7 +21,7 @@ public final class SephirothOneWingedAngelEmblem extends Emblem {
|
|||
Zone.COMMAND, new LoseLifeTargetEffect(1), false,
|
||||
StaticFilters.FILTER_PERMANENT_A_CREATURE, false
|
||||
);
|
||||
ability.addEffect(new LoseLifeSourceControllerEffect(1).concatBy("and"));
|
||||
ability.addEffect(new GainLifeEffect(1).concatBy("and"));
|
||||
ability.addTarget(new TargetOpponent());
|
||||
this.getAbilities().add(ability);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue