more verify fixes

This commit is contained in:
theelk801 2026-01-16 09:28:25 -05:00
parent 993fc56360
commit c4069ba243
2 changed files with 3 additions and 1 deletions

View file

@ -36,7 +36,7 @@ public final class BrigidClachansHeart extends TransformingDoubleFacedCard {
super(
ownerId, setInfo,
new SuperType[]{SuperType.LEGENDARY}, new CardType[]{CardType.CREATURE}, new SubType[]{SubType.KITHKIN, SubType.WARRIOR}, "{2}{W}",
"Brigid, Clachan's Heart",
"Brigid, Doun's Mind",
new SuperType[]{SuperType.LEGENDARY}, new CardType[]{CardType.CREATURE}, new SubType[]{SubType.KITHKIN, SubType.SOLDIER}, "G"
);
this.getLeftHalfCard().setPT(3, 2);

View file

@ -7,6 +7,7 @@ import mage.abilities.keyword.BlightAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.target.common.TargetCreaturePermanent;
import java.util.UUID;
@ -27,6 +28,7 @@ public final class CinderStrike extends CardImpl {
BlightedCondition.instance, "{this} deals 2 damage to target creature. " +
"It deals 4 damage to that creature instead if this spell's additional cost was paid"
));
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
}
private CinderStrike(final CinderStrike card) {