fix verify failure

This commit is contained in:
theelk801 2025-05-15 20:01:22 -04:00
parent fc7bcdf30c
commit 4851a07599
2 changed files with 3 additions and 1 deletions

View file

@ -44,7 +44,7 @@ public final class BraskasFinalAeon extends CardImpl {
ability.addEffect(new SacrificeOpponentsEffect(2, StaticFilters.FILTER_PERMANENT_CREATURES)); ability.addEffect(new SacrificeOpponentsEffect(2, StaticFilters.FILTER_PERMANENT_CREATURES));
ability.withFlavorWord("Ultimate Jecht Shot"); ability.withFlavorWord("Ultimate Jecht Shot");
}); });
this.addAbility(new MenaceAbility()); this.addAbility(sagaAbility);
// Menace // Menace
this.addAbility(new MenaceAbility()); this.addAbility(new MenaceAbility());

View file

@ -4,6 +4,7 @@ import mage.MageInt;
import mage.abilities.common.DealsCombatDamageToAPlayerTriggeredAbility; import mage.abilities.common.DealsCombatDamageToAPlayerTriggeredAbility;
import mage.abilities.effects.common.ExileAndReturnSourceEffect; import mage.abilities.effects.common.ExileAndReturnSourceEffect;
import mage.abilities.keyword.MenaceAbility; import mage.abilities.keyword.MenaceAbility;
import mage.abilities.keyword.TransformAbility;
import mage.cards.CardImpl; import mage.cards.CardImpl;
import mage.cards.CardSetInfo; import mage.cards.CardSetInfo;
import mage.constants.CardType; import mage.constants.CardType;
@ -32,6 +33,7 @@ public final class JechtReluctantGuardian extends CardImpl {
this.addAbility(new MenaceAbility()); this.addAbility(new MenaceAbility());
// Whenever Jecht deals combat damage to a player, you may exile it, then return it to the battlefield transformed under its owner's control. // Whenever Jecht deals combat damage to a player, you may exile it, then return it to the battlefield transformed under its owner's control.
this.addAbility(new TransformAbility());
this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility( this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(
new ExileAndReturnSourceEffect(PutCards.BATTLEFIELD_TRANSFORMED) new ExileAndReturnSourceEffect(PutCards.BATTLEFIELD_TRANSFORMED)
.setText("exile it, then return it to the battlefield transformed under its owner's control"), true .setText("exile it, then return it to the battlefield transformed under its owner's control"), true