Examples of ExaltedAbility


Examples of mage.abilities.keyword.ExaltedAbility

    this.supertype.add("Legendary");
    this.subtype.add("Human");
    this.subtype.add("Knight");
    this.power = new MageInt(3);
    this.toughness = new MageInt(3);
    this.addAbility(new ExaltedAbility());
    this.addAbility(new RafiqOfTheManyAbility());
  }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

    super(ownerId, 126, "Finest Hour", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{2}{G}{W}{U}");
    this.expansionSetCode = "ARB";
    this.color.setWhite(true);
    this.color.setGreen(true);
    this.color.setBlue(true);
    this.addAbility(new ExaltedAbility());
    this.addAbility(new FinestHourAbility());
  }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

        this.subtype.add("Bird");
        this.subtype.add("Soldier");
        this.power = new MageInt(1);
  this.toughness = new MageInt(1);
        this.addAbility(FlyingAbility.getInstance());
        this.addAbility(new ExaltedAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

    this.color.setGreen(true);
    this.subtype.add("Human");
    this.subtype.add("Druid");
    this.power = new MageInt(0);
    this.toughness = new MageInt(1);
    this.addAbility(new ExaltedAbility());
    this.addAbility(new GreenManaAbility());
    this.addAbility(new WhiteManaAbility());
    this.addAbility(new BlueManaAbility());
  }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

        this.subtype.add("Rhino");
        this.subtype.add("Monk");
        this.subtype.add("Soldier");
        this.power = new MageInt(2);
  this.toughness = new MageInt(3);
        this.addAbility(new ExaltedAbility());
        this.addAbility(new EntersBattlefieldTriggeredAbility(new GainLifeEffect(3)));
    }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

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

Examples of mage.abilities.keyword.ExaltedAbility

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

        // Exalted
        this.addAbility(new ExaltedAbility());
        // {W}, {tap}: Dawnray Archer deals 1 damage to target attacking or blocking creature.
       Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(1), new ManaCostsImpl("{W}"));
       ability.addTarget(new TargetAttackingOrBlockingCreature());
       ability.addCost(new TapSourceCost());
       this.addAbility(ability);
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

        this.subtype.add("Rhino");
        this.subtype.add("Monk");
        this.subtype.add("Soldier");
        this.power = new MageInt(2);
        this.toughness = new MageInt(3);
        this.addAbility(new ExaltedAbility());
        this.addAbility(new EntersBattlefieldTriggeredAbility(new GainLifeEffect(3)));
    }
View Full Code Here

Examples of mage.abilities.keyword.ExaltedAbility

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

Examples of mage.abilities.keyword.ExaltedAbility

        // Cathedral of War enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
       
        // Exalted
        this.addAbility(new ExaltedAbility());
       
        // {tap}: Add {1} to your mana pool.
        this.addAbility(new ColorlessManaAbility());
    }
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.