mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* Teferi, Temporal Archmage - fixed that the untap ability could only target creatures instead of permanents (fixes #628).
This commit is contained in:
parent
f33702c6a9
commit
d066e7ebf1
1 changed files with 3 additions and 3 deletions
|
@ -48,11 +48,11 @@ import mage.constants.Rarity;
|
|||
import mage.constants.Zone;
|
||||
import mage.counters.CounterType;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.game.Game;
|
||||
import mage.game.command.Emblem;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
import mage.target.TargetPermanent;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -75,7 +75,7 @@ public class TeferiTemporalArchmage extends CardImpl {
|
|||
|
||||
// -1: Untap up to four target permanents.
|
||||
LoyaltyAbility loyaltyAbility = new LoyaltyAbility(new UntapTargetEffect(), -1);
|
||||
loyaltyAbility.addTarget(new TargetCreaturePermanent(0,4, new FilterCreaturePermanent(), false));
|
||||
loyaltyAbility.addTarget(new TargetPermanent(0,4, new FilterPermanent(), false));
|
||||
this.addAbility(loyaltyAbility);
|
||||
|
||||
// -10: You get an emblem with "You may activate loyalty abilities of planeswalkers you control on any player's turn any time you could cast an instant."
|
||||
|
|
Loading…
Reference in a new issue