mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
* Kiki-Jiki, Mirror Breaker - Fixed missing legendary restriction for copy target.
This commit is contained in:
parent
76ce168436
commit
4eff5355d5
1 changed files with 2 additions and 2 deletions
|
|
@ -45,7 +45,7 @@ import mage.cards.CardImpl;
|
||||||
import mage.constants.Outcome;
|
import mage.constants.Outcome;
|
||||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||||
import mage.filter.predicate.Predicates;
|
import mage.filter.predicate.Predicates;
|
||||||
import mage.filter.predicate.mageobject.SubtypePredicate;
|
import mage.filter.predicate.mageobject.SupertypePredicate;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.game.permanent.Permanent;
|
import mage.game.permanent.Permanent;
|
||||||
import mage.game.permanent.token.EmptyToken;
|
import mage.game.permanent.token.EmptyToken;
|
||||||
|
|
@ -62,7 +62,7 @@ public class KikiJikiMirrorBreaker extends CardImpl<KikiJikiMirrorBreaker> {
|
||||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("nonlegendary creature you control");
|
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("nonlegendary creature you control");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.add(Predicates.not(new SubtypePredicate("Legendary")));
|
filter.add(Predicates.not(new SupertypePredicate("Legendary")));
|
||||||
}
|
}
|
||||||
|
|
||||||
public KikiJikiMirrorBreaker(UUID ownerId) {
|
public KikiJikiMirrorBreaker(UUID ownerId) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue