mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
Fix Karn Living Legacy Emblem. Closes #9585
This commit is contained in:
parent
728bb83cd5
commit
c89e5077af
1 changed files with 2 additions and 1 deletions
|
@ -4,6 +4,7 @@ import mage.abilities.Ability;
|
|||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.common.TapTargetCost;
|
||||
import mage.abilities.effects.common.DamageTargetEffect;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.common.FilterControlledArtifactPermanent;
|
||||
import mage.filter.common.FilterControlledPermanent;
|
||||
import mage.filter.predicate.permanent.TappedPredicate;
|
||||
|
@ -27,7 +28,7 @@ public final class KarnLivingLegacyEmblem extends Emblem {
|
|||
this.setName("Emblem Karn");
|
||||
this.setExpansionSetCodeForImage("DMU");
|
||||
Ability ability = new SimpleActivatedAbility(
|
||||
new DamageTargetEffect(1, "this emblem"),
|
||||
Zone.COMMAND, new DamageTargetEffect(1, "this emblem"),
|
||||
new TapTargetCost(new TargetControlledPermanent(filter))
|
||||
);
|
||||
ability.addTarget(new TargetAnyTarget());
|
||||
|
|
Loading…
Reference in a new issue