mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08:00
fix verify failure
This commit is contained in:
parent
fc7bcdf30c
commit
4851a07599
2 changed files with 3 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ public final class BraskasFinalAeon extends CardImpl {
|
|||
ability.addEffect(new SacrificeOpponentsEffect(2, StaticFilters.FILTER_PERMANENT_CREATURES));
|
||||
ability.withFlavorWord("Ultimate Jecht Shot");
|
||||
});
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(sagaAbility);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ import mage.MageInt;
|
|||
import mage.abilities.common.DealsCombatDamageToAPlayerTriggeredAbility;
|
||||
import mage.abilities.effects.common.ExileAndReturnSourceEffect;
|
||||
import mage.abilities.keyword.MenaceAbility;
|
||||
import mage.abilities.keyword.TransformAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
|
@ -32,6 +33,7 @@ public final class JechtReluctantGuardian extends CardImpl {
|
|||
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.
|
||||
this.addAbility(new TransformAbility());
|
||||
this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(
|
||||
new ExileAndReturnSourceEffect(PutCards.BATTLEFIELD_TRANSFORMED)
|
||||
.setText("exile it, then return it to the battlefield transformed under its owner's control"), true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue