fix oversight for real this time

This commit is contained in:
xenohedron 2025-11-10 22:35:55 -05:00
parent 97fd15d7a6
commit 646d34a90e

View file

@ -37,8 +37,8 @@ public final class InsultInjury extends SplitCard {
// Injury // Injury
// Injury deals 2 damage to target creature and 2 damage to target player. // Injury deals 2 damage to target creature and 2 damage to target player.
getRightHalfCard().addAbility(new AftermathAbility().setRuleAtTheTop(true)); getRightHalfCard().addAbility(new AftermathAbility().setRuleAtTheTop(true));
getRightHalfCard().getSpellAbility().addTarget(new TargetCreaturePermanent()); getRightHalfCard().getSpellAbility().addTarget(new TargetCreaturePermanent().setTargetTag(1));
getRightHalfCard().getSpellAbility().addTarget(new TargetPlayerOrPlaneswalker()); getRightHalfCard().getSpellAbility().addTarget(new TargetPlayerOrPlaneswalker().setTargetTag(2));
getRightHalfCard().getSpellAbility().addEffect(new DamageTargetAndTargetEffect(2, 2)); getRightHalfCard().getSpellAbility().addEffect(new DamageTargetAndTargetEffect(2, 2));
} }