Package mage

Examples of mage.MageInt


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


    super(ownerId, 69, "Phantom Beast", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{3}{U}");
    this.expansionSetCode = "M11";
    this.subtype.add("Illusion");
    this.subtype.add("Beast");
    this.color.setBlue(true);
    this.power = new MageInt(4);
    this.toughness = new MageInt(5);

    this.addAbility(new PhantomBeastAbility());
  }
View Full Code Here

    super(ownerId, 16, "Knight of the White Orchid", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{W}{W}");
    this.expansionSetCode = "ALA";
    this.subtype.add("Human");
    this.subtype.add("Knight");
    this.color.setWhite(true);
    this.power = new MageInt(2);
    this.toughness = new MageInt(2);

    this.addAbility(new KnightOfTheWhiteOrchidAbility());
    this.addAbility(FirstStrikeAbility.getInstance());
  }
View Full Code Here

  public HellsThunder(UUID ownerId) {
    super(ownerId, 103, "Hell's Thunder", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{1}{R}{R}");
    this.expansionSetCode = "ALA";
    this.subtype.add("Elemental");
    this.color.setRed(true);
    this.power = new MageInt(4);
    this.toughness = new MageInt(4);

    this.addAbility(FlyingAbility.getInstance());
    this.addAbility(HasteAbility.getInstance());
    this.addAbility(new OnEventTriggeredAbility(EventType.END_TURN_STEP_PRE, "beginning of the end step", new SacrificeSourceEffect()));
    this.addAbility(new UnearthAbility(new ManaCostsImpl("{4}{R}")));
View Full Code Here

    super(ownerId, 21, "Ranger of Eos", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{3}{W}");
    this.expansionSetCode = "ALA";
    this.color.setWhite(true);
    this.subtype.add("Human");
    this.subtype.add("Soldier");
    this.power = new MageInt(3);
    this.toughness = new MageInt(2);

    TargetCardInLibrary target = new TargetCardInLibrary(0, 2, filter);
    this.addAbility(new EntersBattlefieldTriggeredAbility(new SearchLibraryRevealPutInHandEffect(target), true));
  }
View Full Code Here

    this.subtype.add("Rhino");
    this.subtype.add("Monk");
    this.color.setWhite(true);
    this.color.setBlue(true);
    this.color.setGreen(true);
    this.power = new MageInt(3);
    this.toughness = new MageInt(4);

    this.addAbility(LifelinkAbility.getInstance());
  }
View Full Code Here

    public MistLeopard(UUID ownerId) {
        super(ownerId, 193, "Mist Leopard", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{3}{G}");
        this.expansionSetCode = "M10";
        this.color.setGreen(true);
        this.subtype.add("Cat");
        this.power = new MageInt(3);
  this.toughness = new MageInt(2);
        this.addAbility(ShroudAbility.getInstance());
    }
View Full Code Here

  public AlluringSiren(UUID ownerId) {
    super(ownerId, 43, "Alluring Siren", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{1}{U}");
    this.expansionSetCode = "M10";
    this.color.setBlue(true);
    this.subtype.add("Siren");
    this.power = new MageInt(1);
    this.toughness = new MageInt(1);
    Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new AlluringSirenEffect(), new TapSourceCost());
    ability.addTarget(new TargetCreaturePermanent(filter));
    this.addAbility(ability);
  }
View Full Code Here

  public MitoticSlime(UUID ownerId) {
    super(ownerId, 185, "Mitotic Slime", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{4}{G}");
    this.expansionSetCode = "M11";
    this.subtype.add("Ooze");
    this.color.setGreen(true);
    this.power = new MageInt(4);
    this.toughness = new MageInt(4);

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

  public Ooze2Token() {
    super("Ooze", "2/2 green Ooze creature tokens with \"When this creature is put into a graveyard, put two 1/1 green Ooze creature tokens onto the battlefield.\"");
    cardType.add(CardType.CREATURE);
    subtype.add("Ooze");
    color.setGreen(true);
    power = new MageInt(2);
    toughness = new MageInt(2);
    this.addAbility(new PutIntoGraveFromBattlefieldTriggeredAbility(new CreateTokenEffect(new Ooze1Token(), 2), 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.