Package mage.abilities.keyword

Examples of mage.abilities.keyword.ConvokeAbility


        this.expansionSetCode = "RAV";

        this.color.setGreen(true);

        // Convoke
        this.addAbility(new ConvokeAbility());
        // Target creature gets +2/+2 until end of turn.
        this.getSpellAbility().addEffect(new BoostTargetEffect(2, 2, Duration.EndOfTurn));
        this.getSpellAbility().addTarget(new TargetCreaturePermanent());
    }
View Full Code Here


        this.expansionSetCode = "RAV";

        this.color.setGreen(true);

        // Convoke
        this.addAbility(new ConvokeAbility());
        // Put three 1/1 green Saproling creature tokens onto the battlefield.
        this.getSpellAbility().addEffect(new CreateTokenEffect(new SaprolingToken(), 3));
    }
View Full Code Here

        this.color.setGreen(true);
        this.power = new MageInt(5);
        this.toughness = new MageInt(5);

        // Convoke
        this.addAbility(new ConvokeAbility());
        // Trample
        this.addAbility(TrampleAbility.getInstance());
    }
View Full Code Here

        this.color.setWhite(true);
        this.power = new MageInt(9);
        this.toughness = new MageInt(14);

        // Convoke (Each creature you tap while casting this spell reduces its cost by {1} or by one mana of that creature's color.)
        this.addAbility(new ConvokeAbility());

        // Trample
        this.addAbility(TrampleAbility.getInstance());
    }
View Full Code Here

        // Kicker {4} (You may pay an additional {4} as you cast this spell.)
        this.addAbility(new KickerAbility("{4}"));

        // Convoke (Each creature you tap while casting this spell reduces its cost by {1} or by one mana of that creature's color.)
        this.addAbility(new ConvokeAbility());


        // If Kavu Primarch was kicked, it enters the battlefield with four +1/+1 counters on it.
        this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance(4)),KickedCondition.getInstance(), true,
                "If Kavu Primarch was kicked, it enters the battlefield with four +1/+1 counters on it.", ""));
View Full Code Here

        this.expansionSetCode = "RAV";

        this.color.setGreen(true);

        // Convoke
        this.addAbility(new ConvokeAbility());

        // Search your library for a creature card with converted mana cost X or less and put it onto the battlefield. Then shuffle your library.
        this.getSpellAbility().addEffect(new ChordofCallingSearchEffect());
    }
View Full Code Here

        this.expansionSetCode = "RAV";

        this.color.setWhite(true);

        // Convoke
        this.addAbility(new ConvokeAbility());
        // Exile target attacking or blocking creature.
        this.getSpellAbility().addEffect(new ExileTargetEffect());
        this.getSpellAbility().addTarget(new TargetAttackingOrBlockingCreature());
    }
View Full Code Here

        this.color.setWhite(true);
        this.power = new MageInt(4);
        this.toughness = new MageInt(7);

        // Convoke
        this.addAbility(new ConvokeAbility());
        // Vigilance
        this.addAbility(VigilanceAbility.getInstance());
    }
View Full Code Here

        this.expansionSetCode = "RAV";

        this.color.setGreen(true);

        // Convoke
        this.addAbility(new ConvokeAbility());
        // Destroy target artifact or enchantment.
        this.getSpellAbility().addTarget(new TargetPermanent(filter));
        this.getSpellAbility().addEffect(new DestroyTargetEffect());
    }
View Full Code Here

      this.expansionSetCode = "RAV";

      this.color.setGreen(true);
     
      // Convoke (Each creature you tap while casting this spell reduces its cost by {1} or by one mana of that creature's color.)
      this.addAbility(new ConvokeAbility());

      // Creatures you control get +3/+3 until end of turn.
      this.getSpellAbility().addEffect(new BoostControlledEffect(3, 3, Duration.EndOfTurn));
    }
View Full Code Here

TOP

Related Classes of mage.abilities.keyword.ConvokeAbility

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.