mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
* Mortal's Resolve - Fixed missing target definition.
This commit is contained in:
parent
94dd8b2886
commit
2cb046c048
1 changed files with 2 additions and 0 deletions
|
@ -36,6 +36,7 @@ import mage.cards.CardImpl;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Rarity;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -56,6 +57,7 @@ public class MortalsResolve extends CardImpl<MortalsResolve> {
|
|||
effect = new GainAbilityTargetEffect(IndestructibleAbility.getInstance(), Duration.EndOfTurn);
|
||||
effect.setText("and gains indestructible until end of turn");
|
||||
this.getSpellAbility().addEffect(effect);
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent(true));
|
||||
}
|
||||
|
||||
public MortalsResolve(final MortalsResolve card) {
|
||||
|
|
Loading…
Reference in a new issue