mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Fix Offer Immortality (#10373)
This commit is contained in:
parent
024c3081df
commit
ce8eb44099
1 changed files with 2 additions and 0 deletions
|
@ -6,6 +6,7 @@ import mage.abilities.keyword.IndestructibleAbility;
|
|||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
@ -22,6 +23,7 @@ public final class OfferImmortality extends CardImpl {
|
|||
.setText("target creature gains deathtouch"));
|
||||
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(IndestructibleAbility.getInstance())
|
||||
.setText("and indestructible until end of turn"));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
}
|
||||
|
||||
private OfferImmortality(final OfferImmortality card) {
|
||||
|
|
Loading…
Reference in a new issue