예제 #1
0
 static {
   filter.add(
       Predicates.or(
           new CardTypePredicate(CardType.INSTANT), new CardTypePredicate(CardType.SORCERY)));
   filterPermanent.add(Predicates.not(new TokenPredicate()));
   filterPermanent.add(new AnotherPredicate());
 }
예제 #2
0
 static {
   filter.add(new ControllerPredicate(TargetController.NOT_YOU));
 }
예제 #3
0
 static {
   filterSpell.add(new ColorlessPredicate());
 }
예제 #4
0
 static {
   filter.add(Predicates.not(new CardTypePredicate(CardType.CREATURE)));
 }
예제 #5
0
 static {
   blueFilter.add(new ColorPredicate(ObjectColor.BLUE));
   blackFilter.add(new ColorPredicate(ObjectColor.BLACK));
 }
예제 #6
0
 static {
   filter.add(new CardTypePredicate(CardType.ARTIFACT));
 }
예제 #7
0
 static {
   filter.add(Predicates.not(new SubtypePredicate("Faerie")));
 }
예제 #8
0
 static {
   filterNonCreature.add(Predicates.not(new CardTypePredicate(CardType.CREATURE)));
 }
예제 #9
0
 static {
   filterSpell.add(new CardTypePredicate(CardType.CREATURE));
   filterSpell.add(new ConvertedManaCostPredicate(Filter.ComparisonType.GreaterThan, 4));
 }
예제 #10
0
 static {
   filterGreenSpell.add(new ColorPredicate(ObjectColor.GREEN));
   filterBlueSpell.add(new ColorPredicate(ObjectColor.BLUE));
 }
예제 #11
0
 static {
   filter.add(
       Predicates.or(
           new CardTypePredicate(CardType.INSTANT), new CardTypePredicate(CardType.SORCERY)));
 }
예제 #12
0
 static {
   filter.add(new ColorPredicate(ObjectColor.RED));
   filter.add(
       Predicates.or(
           new CardTypePredicate(CardType.INSTANT), new CardTypePredicate(CardType.SORCERY)));
 }
 static {
   filter.add(new SupertypePredicate("Legendary"));
 }
예제 #14
0
 static {
   filterSpell.add(new ColorPredicate(ObjectColor.GREEN));
   filterLand.add(new SubtypePredicate("Forest"));
 }
예제 #15
0
 static {
   filter.add(new ColorPredicate(ObjectColor.BLACK));
 }
예제 #16
0
 static {
   filter.add(new ColorPredicate(ObjectColor.GREEN));
 }
예제 #17
0
 static {
   filter.add(new SubtypePredicate("Giant"));
 }
예제 #18
0
 static {
   filter.add(new SecondSpellPredicate());
 }
예제 #19
0
 static {
   filter.add(new DawnCharmPredicate());
 }
예제 #20
0
파일: Dispel.java 프로젝트: xdaft/mage
 static {
   filter.add(new CardTypePredicate(CardType.INSTANT));
 }