mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
spjspj - Evolutionary Escalation fix (C16)
This commit is contained in:
parent
557019e8a6
commit
ce8befffdd
1 changed files with 5 additions and 0 deletions
|
@ -39,6 +39,7 @@ import mage.constants.TargetController;
|
|||
import mage.counters.Counter;
|
||||
import mage.counters.CounterType;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.filter.predicate.permanent.ControllerPredicate;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.target.Target;
|
||||
|
@ -52,6 +53,10 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
public class EvolutionaryEscalation extends CardImpl {
|
||||
private static final FilterCreaturePermanent filterOpponentCreature = new FilterCreaturePermanent("creature an opponent controls");
|
||||
|
||||
static {
|
||||
filterOpponentCreature.add(new ControllerPredicate(TargetController.OPPONENT));
|
||||
}
|
||||
|
||||
public EvolutionaryEscalation(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{1}{G}");
|
||||
|
||||
|
|
Loading…
Reference in a new issue