Package mage

Examples of mage.MageInt


  public SoldierToken() {
    super("Soldier", "1/1 white Soldier creature token");
    cardType.add(CardType.CREATURE);
    color = ObjectColor.GREEN;
    subtype.add("Soldier");
    power = new MageInt(1);
    toughness = new MageInt(1);
  }
View Full Code Here


  public WolfToken() {
    super("Wolf", "2/2 green Wolf creature token");
    cardType.add(CardType.CREATURE);
    color = ObjectColor.GREEN;
    subtype.add("Wolf");
    power = new MageInt(2);
    toughness = new MageInt(2);
  }
View Full Code Here

  public ElephantToken() {
    super("Elephant", "3/3 green Elephant creature token");
    cardType.add(CardType.CREATURE);
    color = ObjectColor.GREEN;
    subtype.add("Elephant");
    power = new MageInt(3);
    toughness = new MageInt(3);
  }
View Full Code Here

  public EldraziSpawnToken() {
    super("Eldrazi Spawn", "0/1 colorless Eldrazi Spawn creature with \"Sacrifice this creature: Add {1} to your mana pool.\"");
    cardType.add(CardType.CREATURE);
    subtype.add("Eldrazi");
    subtype.add("Spawn");
    power = new MageInt(0);
    toughness = new MageInt(1);
    addAbility(new SimpleManaAbility(Zone.BATTLEFIELD, new ManaEffect(Mana.ColorlessMana), new SacrificeSourceCost()));
  }
View Full Code Here

  public ZombieToken() {
    super("Zombie", "2/2 black Zombie creature token");
    cardType.add(CardType.CREATURE);
    color = ObjectColor.BLACK;
    subtype.add("Zombie");
    power = new MageInt(2);
    toughness = new MageInt(2);
  }
View Full Code Here

  public DragonToken() {
    super("Dragon", "4/4 red Dragon creature token with flying");
    cardType.add(CardType.CREATURE);
    color = ObjectColor.RED;
    subtype.add("Dragon");
    power = new MageInt(4);
    toughness = new MageInt(4);
    addAbility(FlyingAbility.getInstance());
  }
View Full Code Here

  public BeastToken() {
    super("Beast", "3/3 green Beast creature token");
    cardType.add(CardType.CREATURE);
    color = ObjectColor.GREEN;
    subtype.add("Beast");
    power = new MageInt(3);
    toughness = new MageInt(3);
  }
View Full Code Here

  public SnakeToken() {
    super("Snake", "1/1 green Snake creature token");
    cardType.add(CardType.CREATURE);
    color = ObjectColor.GREEN;
    subtype.add("Snake");
    power = new MageInt(1);
    toughness = new MageInt(1);
  }
View Full Code Here

  public SaprolingToken() {
    super("Saproling", "1/1 green Saproling creature token");
    cardType.add(CardType.CREATURE);
    color = ObjectColor.GREEN;
    subtype.add("Saproling");
    power = new MageInt(1);
    toughness = new MageInt(1);
  }
View Full Code Here

  public InsectToken() {
    super("Insect", "1/1 green Insect creature token");
    cardType.add(CardType.CREATURE);
    color = ObjectColor.GREEN;
    subtype.add("Insect");
    power = new MageInt(1);
    toughness = new MageInt(1);
  }
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.