mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
fix oversight
This commit is contained in:
parent
71269f972e
commit
97fd15d7a6
1 changed files with 2 additions and 3 deletions
|
|
@ -2,7 +2,7 @@ package mage.cards.i;
|
|||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.effects.ReplacementEffectImpl;
|
||||
import mage.abilities.effects.common.DamageTargetEffect;
|
||||
import mage.abilities.effects.common.DamageTargetAndTargetEffect;
|
||||
import mage.abilities.effects.common.continuous.DamageCantBePreventedEffect;
|
||||
import mage.abilities.keyword.AftermathAbility;
|
||||
import mage.cards.CardSetInfo;
|
||||
|
|
@ -15,7 +15,6 @@ import mage.game.Game;
|
|||
import mage.game.events.GameEvent;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
import mage.target.common.TargetPlayerOrPlaneswalker;
|
||||
import mage.target.targetpointer.EachTargetPointer;
|
||||
import mage.util.CardUtil;
|
||||
|
||||
import java.util.UUID;
|
||||
|
|
@ -40,7 +39,7 @@ public final class InsultInjury extends SplitCard {
|
|||
getRightHalfCard().addAbility(new AftermathAbility().setRuleAtTheTop(true));
|
||||
getRightHalfCard().getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
getRightHalfCard().getSpellAbility().addTarget(new TargetPlayerOrPlaneswalker());
|
||||
getRightHalfCard().getSpellAbility().addEffect(new DamageTargetEffect(2).setTargetPointer(new EachTargetPointer()));
|
||||
getRightHalfCard().getSpellAbility().addEffect(new DamageTargetAndTargetEffect(2, 2));
|
||||
}
|
||||
|
||||
private InsultInjury(final InsultInjury card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue