mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Ajani Steadfast - Fix second ability affecting planeswalkers under the opponents control
This commit is contained in:
parent
461ecc6399
commit
d2bd08618c
1 changed files with 4 additions and 1 deletions
|
@ -46,11 +46,13 @@ import mage.cards.CardImpl;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.TargetController;
|
||||
import mage.constants.Zone;
|
||||
import mage.counters.CounterType;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.common.FilterPlaneswalkerPermanent;
|
||||
import mage.filter.predicate.permanent.AnotherPredicate;
|
||||
import mage.filter.predicate.permanent.ControllerPredicate;
|
||||
import mage.game.Game;
|
||||
import mage.game.command.Emblem;
|
||||
import mage.game.events.GameEvent;
|
||||
|
@ -63,10 +65,11 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class AjaniSteadfast extends CardImpl {
|
||||
|
||||
private static final FilterPlaneswalkerPermanent filter = new FilterPlaneswalkerPermanent("tapped creature");
|
||||
private static final FilterPlaneswalkerPermanent filter = new FilterPlaneswalkerPermanent("other planeswalker you control");
|
||||
|
||||
static {
|
||||
filter.add(new AnotherPredicate());
|
||||
filter.add(new ControllerPredicate(TargetController.YOU));
|
||||
}
|
||||
|
||||
public AjaniSteadfast(UUID ownerId) {
|
||||
|
|
Loading…
Reference in a new issue