Examples of ExaltedAbility


Examples of mage.abilities.keyword.ExaltedAbility

        // Protection from black
        this.addAbility(new ProtectionAbility(filter));
       
        // Exalted
        this.addAbility(new ExaltedAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

        this.color.setBlack(true);
        this.power = new MageInt(3);
        this.toughness = new MageInt(1);

        // Exalted
        this.addAbility(new ExaltedAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

        this.toughness = new MageInt(2);

        // Haste
        this.addAbility(HasteAbility.getInstance());
        // Exalted
        this.addAbility(new ExaltedAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

        this.color.setBlack(true);
        this.power = new MageInt(0);
        this.toughness = new MageInt(2);

        // Exalted
        this.addAbility(new ExaltedAbility());
        // {3}{B}: Regenerate Duty-Bound Dead.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new RegenerateSourceEffect(), new ManaCostsImpl("{3}{B}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

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

        // Exalted
        this.addAbility(new ExaltedAbility());

        // Whenever a creature you control attacks alone, you may search your library for an Aura card that could enchant that creature, put it onto the battlefield attached to that creature, then shuffle your library.
        this.addAbility(new CreatureControlledAttacksAloneTriggeredAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

        this.subtype.add("Human");
        this.subtype.add("Wizard");
        this.color.setBlue(true);
        this.power = new MageInt(0);
        this.toughness = new MageInt(1);
        this.addAbility(new ExaltedAbility());
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DrawDiscardControllerEffect(), new ManaCostsImpl("{U}"));
        ability.addCost(new TapSourceCost());
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

        this.power = new MageInt(2);
        this.toughness = new MageInt(2);

        // Exalted (Whenever a creature you control attacks alone, that creature gets +1/+1 until end of turn.)
        this.addAbility(new ExaltedAbility());

        // {T}: Destroy target creature that dealt damage to you this turn.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DestroyTargetEffect(), new TapSourceCost());
        ability.addTarget(new GiltspireAvengerTarget());
        this.addAbility(ability);
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

    public ArdentPlea (UUID ownerId) {
        super(ownerId, 1, "Ardent Plea", Rarity.UNCOMMON, new CardType[]{CardType.ENCHANTMENT}, "{1}{W}{U}");
        this.expansionSetCode = "ARB";
        this.color.setWhite(true);
        this.color.setBlue(true);
        this.addAbility(new ExaltedAbility());
        this.addAbility(new CascadeAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

        this.subtype.add("Knight");
        this.power = new MageInt(3);
        this.toughness = new MageInt(3);

        // Exalted (Whenever a creature you control attacks alone, that creature gets +1/+1 until end of turn.)
        this.addAbility(new ExaltedAbility());

        // Whenever a creature you control attacks alone, it gains double strike until end of turn.
        this.addAbility(new RafiqOfTheManyAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

        super(ownerId, 3, "Angelic Benediction", Rarity.UNCOMMON, new CardType[]{CardType.ENCHANTMENT}, "{3}{W}");
        this.expansionSetCode = "ALA";

        this.color.setWhite(true);

        this.addAbility(new ExaltedAbility());
        // Whenever a creature you control attacks alone, you may tap target creature.
        this.addAbility(new AngelicBenedictionTriggeredAbility());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.