Package mage

Examples of mage.MageInt


  public BrindleBoar(UUID ownerId) {
    super(ownerId, 166, "Brindle Boar", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{G}");
    this.expansionSetCode = "M11";
    this.color.setGreen(true);
    this.subtype.add("Boar");
    this.power = new MageInt(2);
    this.toughness = new MageInt(2);

    this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainLifeEffect(4), new SacrificeSourceCost()));
  }
View Full Code Here


    super("", "4/4 white and blue Elemental creature with flying and vigilance");
    cardType.add(CardType.CREATURE);
    subtype.add("Elemental");
    color.setBlue(true);
    color.setWhite(true);
    power = new MageInt(4);
    toughness = new MageInt(4);
    addAbility(FlyingAbility.getInstance());
    addAbility(VigilanceAbility.getInstance());
  }
View Full Code Here

  public BaneslayerAngel(UUID ownerId) {
    super(ownerId, 4, "Baneslayer Angel", Rarity.MYTHIC, new CardType[]{CardType.CREATURE}, "{3}{W}{W}");
    this.expansionSetCode = "M10";
    this.subtype.add("Angel");
    this.color.setWhite(true);
    this.power = new MageInt(5);
    this.toughness = new MageInt(5);

    this.addAbility(FlyingAbility.getInstance());
    this.addAbility(FirstStrikeAbility.getInstance());
    this.addAbility(LifelinkAbility.getInstance());
    FilterPermanent filter1 = new FilterCreaturePermanent("Demon");
View Full Code Here

    public WindDrake(UUID ownerId) {
        super(ownerId, 81, "Wind Drake", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{U}");
        this.expansionSetCode = "M10";
        this.subtype.add("Drake");
        this.color.setBlue(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(2);
        this.addAbility(FlyingAbility.getInstance());
    }
View Full Code Here

    super("", "3/4 green and white Elemental creature with reach");
    cardType.add(CardType.CREATURE);
    subtype.add("Elemental");
    color.setGreen(true);
    color.setWhite(true);
    power = new MageInt(3);
    toughness = new MageInt(4);
    addAbility(ReachAbility.getInstance());
  }
View Full Code Here

    super(ownerId, 41, "White Knight", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{W}{W}");
    this.expansionSetCode = "M10";
    this.subtype.add("Human");
    this.subtype.add("Knight");
    this.color.setWhite(true);
    this.power = new MageInt(2);
    this.toughness = new MageInt(2);

    this.addAbility(FirstStrikeAbility.getInstance());
    FilterCard filter = new FilterCard("Black");
    filter.setUseColor(true);
    filter.getColor().setBlack(true);
View Full Code Here

    super(ownerId, 135, "Fiery Hellhound", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{R}{R}");
    this.expansionSetCode = "M10";
    this.subtype.add("Elemental");
    this.subtype.add("Hound");
    this.color.setRed(true);
    this.power = new MageInt(2);
    this.toughness = new MageInt(2);

    this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(1, 0, Duration.EndOfTurn), new ManaCostsImpl("{R}")));
  }
View Full Code Here

    this.expansionSetCode = "ALA";
    this.color.setBlack(true);
    this.color.setRed(true);
    this.color.setGreen(true);
    this.subtype.add("Lizard");
    this.power = new MageInt(3);
    this.toughness = new MageInt(3);

    this.addAbility(new PutIntoGraveFromBattlefieldTriggeredAbility(new CreateTokenEffect(saprolingToken, 3), false));
  }
View Full Code Here

    super(ownerId, 106, "Nantuko Shade", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{B}{B}");
    this.expansionSetCode = "M11";
    this.subtype.add("Insect");
    this.subtype.add("Shade");
    this.color.setBlack(true);
    this.power = new MageInt(2);
    this.toughness = new MageInt(1);

    this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(1, 1, Duration.EndOfTurn), new ManaCostsImpl("{B}")));
  }
View Full Code Here

    super(ownerId, 66, "Merfolk Spy", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{U}");
    this.expansionSetCode = "M11";
    this.subtype.add("Merfolk");
    this.subtype.add("Rogue");
    this.color.setBlue(true);
    this.power = new MageInt(1);
    this.toughness = new MageInt(1);

    this.addAbility(IslandwalkAbility.getInstance());
    this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(new MerfolkSpyEffect(), false));
  }
View Full Code Here

TOP

Related Classes of mage.MageInt

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.