Examples of ExaltedAbility


Examples of mage.abilities.keyword.ExaltedAbility

        this.subtype.add("Human");
        this.subtype.add("Wizard");
        this.color.setWhite(true);
        this.power = new MageInt(1);
        this.toughness = new MageInt(1);
        this.addAbility(new ExaltedAbility());
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainAbilitySourceEffect(ShroudAbility.getInstance(), Duration.EndOfTurn), new ManaCostsImpl("{U}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

        this.subtype.add("Human");
        this.subtype.add("Soldier");
        this.color.setWhite(true);
        this.power = new MageInt(1);
        this.toughness = new MageInt(1);
        this.addAbility(new ExaltedAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

        this.subtype.add("Soldier");
        this.color.setGreen(true);
        this.power = new MageInt(3);
        this.toughness = new MageInt(3);
        this.addAbility(TrampleAbility.getInstance());
        this.addAbility(new ExaltedAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

        // Flying
        this.addAbility(FlyingAbility.getInstance());

        // 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 lifelink until end of turn.
        this.addAbility(new BattlegraceAngelAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

        this.color.setWhite(true);
        this.color.setBlue(true);
        this.power = new MageInt(2 );
        this.toughness = new MageInt(4);
        this.addAbility(FlyingAbility.getInstance());
        this.addAbility(new ExaltedAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

        this.color.setWhite(true);
        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());

        // {1}, Sacrifice Qasali Pridemage: Destroy target artifact or enchantment.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DestroyTargetEffect(), new ManaCostsImpl("{1}"));
        ability.addCost(new SacrificeSourceCost());
        Target target = new TargetPermanent(filter);
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.