Package mage.abilities.effects.common

Examples of mage.abilities.effects.common.ChooseNewTargetsTargetEffect


  public Redirect(UUID ownerId) {
    super(ownerId, 71, "Redirect", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{U}{U}");
    this.expansionSetCode = "M11";
    this.color.setBlue(true);
    this.getSpellAbility().addTarget(new TargetSpell());
    this.getSpellAbility().addEffect(new ChooseNewTargetsTargetEffect());
  }
View Full Code Here


        this.expansionSetCode = "CHK";

        this.color.setRed(true);

        // You may change any targets of target Arcane spell.
        Effect effect = new ChooseNewTargetsTargetEffect(false, false);
        effect.setText("You may change any targets of target Arcane spell");
        this.getSpellAbility().addEffect(effect);
        this.getSpellAbility().addTarget(new TargetSpell(filter));
    }
View Full Code Here

        this.color.setRed(true);
        this.color.setBlue(true);

        // Change the target of target spell with a single target.
        this.getSpellAbility().addEffect(new ChooseNewTargetsTargetEffect(true, true));
        this.getSpellAbility().addTarget(new TargetSpell(filter));
       
    }
View Full Code Here

        // the exile cost can never be paid with the card itself
        filterCardInHand.add(Predicates.not(new CardIdPredicate(this.getId())));      
        this.addAbility(new AlternativeCostSourceAbility(new ExileFromHandCost(new TargetCardInHand(filterCardInHand))));

        // Change the target of target spell with a single target.
        this.getSpellAbility().addEffect(new ChooseNewTargetsTargetEffect(true, true));
        this.getSpellAbility().addTarget(new TargetSpell(filter2));
    }
View Full Code Here

        this.expansionSetCode = "10E";

        this.color.setRed(true);

        // Change the target of target spell with a single target.
        this.getSpellAbility().addEffect(new ChooseNewTargetsTargetEffect(true, true));
        this.getSpellAbility().addTarget(new TargetSpell(filter));       
    }
View Full Code Here

        // If an opponent cast a blue spell this turn, you may pay {R} rather than pay Ricochet Trap's mana cost.
        this.getSpellAbility().addAlternativeCost(new RicochetTrapAlternativeCost());

        // Change the target of target spell with a single target.
        this.getSpellAbility().addEffect(new ChooseNewTargetsTargetEffect(true, true));
        this.getSpellAbility().addTarget(new TargetSpell(filter));

        this.addWatcher(new RicochetTrapWatcher());
    }
View Full Code Here

        this.expansionSetCode = "PLC";

        this.color.setBlack(true);

        // Change the target of target spell with a single target. You lose life equal to that spell's converted mana cost.
        this.getSpellAbility().addEffect(new ChooseNewTargetsTargetEffect(true, true));
        this.getSpellAbility().addEffect(new ImpsMischiefLoseLifeEffect());
        this.getSpellAbility().addTarget(new TargetSpell(filter));
       
    }
View Full Code Here

        this.expansionSetCode = "M11";
        this.color.setBlue(true);

        // You may choose new targets for target spell.
        this.getSpellAbility().addTarget(new TargetSpell());
        this.getSpellAbility().addEffect(new ChooseNewTargetsTargetEffect());
    }
View Full Code Here

        this.expansionSetCode = "ICE";

        this.color.setBlue(true);

        // Change the target of target spell with a single target.
        this.getSpellAbility().addEffect(new ChooseNewTargetsTargetEffect(true, true));
        this.getSpellAbility().addTarget(new TargetSpell(filter));       
    }
View Full Code Here

TOP

Related Classes of mage.abilities.effects.common.ChooseNewTargetsTargetEffect

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.