Exemplo n.º 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());
 }
Exemplo n.º 2
0
 @Override
 public boolean apply(Game game, Ability source) {
   Player controller = game.getPlayer(source.getControllerId());
   if (controller != null) {
     // Find the two permanents to meld.
     UUID sourceId = source.getSourceId();
     FilterControlledCreaturePermanent filter =
         new FilterControlledCreaturePermanent("creature named " + meldWithName);
     filter.add(new NamePredicate(meldWithName));
     TargetPermanent target = new TargetControlledCreaturePermanent(filter);
     Set<UUID> meldWithList = target.possibleTargets(sourceId, source.getControllerId(), game);
     if (meldWithList.isEmpty()) {
       return false; // possible permanent has left the battlefield meanwhile
     }
     UUID meldWithId;
     if (meldWithList.size() == 1) {
       meldWithId = meldWithList.iterator().next();
     } else {
       controller.choose(Outcome.BoostCreature, target, sourceId, game);
       meldWithId = target.getFirstTarget();
     }
     // Exile the two permanents to meld.
     Permanent sourcePermanent = game.getPermanent(sourceId);
     Permanent meldWithPermanent = game.getPermanent(meldWithId);
     if (sourcePermanent != null && meldWithPermanent != null) {
       sourcePermanent.moveToExile(null, "", sourceId, game);
       meldWithPermanent.moveToExile(null, "", sourceId, game);
       // Create the meld card and move it to the battlefield.
       Card sourceCard = game.getExile().getCard(sourceId, game);
       Card meldWithCard = game.getExile().getCard(meldWithId, game);
       if (!sourceCard.isCopy() && !meldWithCard.isCopy()) {
         meldCard.setOwnerId(controller.getId());
         meldCard.setTopHalfCard(meldWithCard, game);
         meldCard.setBottomHalfCard(sourceCard, game);
         meldCard.setMelded(true);
         game.addMeldCard(meldCard.getId(), meldCard);
         game.getState().addCard(meldCard);
         meldCard.setZone(Zone.EXILED, game);
         meldCard.moveToZone(Zone.BATTLEFIELD, sourceId, game, false);
       }
       return true;
     }
   }
   return false;
 }
Exemplo n.º 3
0
 @Override
 public boolean apply(Game game, Ability source) {
   Player player = game.getPlayer(source.getControllerId());
   if (player != null) {
     Choice typeChoice = new ChoiceImpl(true);
     typeChoice.setMessage("Choose a creature type:");
     typeChoice.setChoices(CardRepository.instance.getCreatureTypes());
     while (!player.choose(Outcome.BoostCreature, typeChoice, game)) {
       if (!player.canRespond()) {
         return false;
       }
     }
     FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent();
     filter.add(new SubtypePredicate(typeChoice.getChoice()));
     return new DrawCardSourceControllerEffect(new PermanentsOnBattlefieldCount(filter))
         .apply(game, source);
   }
   return false;
 }
Exemplo n.º 4
0
 static {
   filter.add(new SubtypePredicate("Ally"));
 }
Exemplo n.º 5
0
 static {
   filterCreatures.add(new ColorPredicate(ObjectColor.BLACK));
   filterCreature.add(new AnotherPredicate());
   filterCreature.add(new ColorPredicate(ObjectColor.BLACK));
 }
Exemplo n.º 6
0
 static {
   filter.add(new ColorPredicate(ObjectColor.BLACK));
 }
Exemplo n.º 7
0
 static {
   filter.add(new PowerPredicate(Filter.ComparisonType.LessThan, 3));
   filter2.add(new AnotherPredicate());
 }
Exemplo n.º 8
0
 static {
   filter.add(new ColorPredicate(ObjectColor.GREEN));
 }
Exemplo n.º 9
0
 static {
   filter1.add(new SubtypePredicate("Vampire"));
   filter2.add(new SubtypePredicate("Vampire"));
   filter2.add(Predicates.not(new TappedPredicate()));
 }
Exemplo n.º 10
0
 static {
   filter.add(new AnotherPredicate());
 }
Exemplo n.º 11
0
 static {
   filterGreen.add(new AnotherPredicate());
   filterGreen.add(new ColorPredicate(ObjectColor.GREEN));
   filterRed.add(new AnotherPredicate());
   filterRed.add(new ColorPredicate(ObjectColor.RED));
 }
Exemplo n.º 12
0
 static {
   filter.add(new ColorPredicate(ObjectColor.RED));
 }
Exemplo n.º 13
0
 static {
   filter.add(new ColorPredicate(ObjectColor.WHITE));
   filter.add(new AnotherPredicate());
 }
Exemplo n.º 14
0
 static {
   FILTER1.add(new SubtypePredicate("Ally"));
 }
Exemplo n.º 15
0
 static {
   filter.add(Predicates.not(new SubtypePredicate("Ogre")));
 }
Exemplo n.º 16
0
 static {
   filterPermanent.add(new AnotherPredicate());
   filterCard.add(Predicates.not(new SupertypePredicate("Legendary")));
 }
Exemplo n.º 17
0
 static {
   filter.add(new SupertypePredicate("Legendary"));
 }
Exemplo n.º 18
0
 static {
   filter.add(new AbilityPredicate(DefenderAbility.class));
 }
Exemplo n.º 19
0
 static {
   filter.add(new SubtypePredicate("Spirit"));
 }
Exemplo n.º 20
0
 static {
   filter.add(new MulticoloredPredicate());
 }
Exemplo n.º 21
0
 static {
   filterCreature.add((new SubtypePredicate("Ninja")));
 }
Exemplo n.º 22
0
 static {
   filter.add(new SubtypePredicate("Elf"));
 }
Exemplo n.º 23
0
 static {
   filter.add(Predicates.not(new TappedPredicate()));
 }
Exemplo n.º 24
0
 static {
   filter.add(new SubtypePredicate("Knight"));
 }