cards now use the new CountType

This commit is contained in:
ingmargoudt 2017-03-05 23:29:51 +01:00
parent dd84287305
commit 5387f06898
139 changed files with 325 additions and 184 deletions

View file

@ -28,6 +28,7 @@
package mage.abilities.condition.common;
import mage.abilities.Ability;
import mage.abilities.CountType;
import mage.abilities.condition.Condition;
import mage.filter.FilterPermanent;
import mage.filter.predicate.permanent.ControllerIdPredicate;
@ -45,8 +46,6 @@ import mage.game.Game;
*/
public class PermanentsOnTheBattlefieldCondition implements Condition {
public static enum CountType { MORE_THAN, FEWER_THAN, EQUAL_TO }
private FilterPermanent filter;
private Condition condition;
private CountType type;