Package mage

Examples of mage.MageInt


  public ChandraNalaar(UUID ownerId) {
    super(ownerId, 132, "Chandra Nalaar", Rarity.MYTHIC, new CardType[]{CardType.PLANESWALKER}, "{3}{R}{R}");
    this.expansionSetCode = "M10";
    this.subtype.add("Chandra ");
    this.color.setRed(true);
    this.loyalty = new MageInt(6);

    LoyaltyAbility ability1 = new LoyaltyAbility(new DamageTargetEffect(1), 1);
    ability1.addTarget(new TargetPlayer());
    this.addAbility(ability1);
View Full Code Here


    super(ownerId, 20, "Knight Exemplar", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{1}{W}{W}");
    this.expansionSetCode = "M11";
    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());
    this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostControlledEffect(1, 1, Duration.WhileOnBattlefield, filter, true)));
    this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityControlledEffect(IndestructibleAbility.getInstance(), Duration.WhileOnBattlefield, filter)));
  }
View Full Code Here

  public AirElemental(UUID ownerId) {
    super(ownerId, 42, "Air Elemental", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{U}{U}");
    this.expansionSetCode = "M10";
    this.color.setBlue(true);
    this.subtype.add("Elemental");
    this.power = new MageInt(4);
    this.toughness = new MageInt(4);
    this.addAbility(FlyingAbility.getInstance());
  }
View Full Code Here

  public RottingLegion(UUID ownerId) {
    super(ownerId, 115, "Rotting Legion", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{4}{B}");
    this.expansionSetCode = "M11";
    this.subtype.add("Zombie");
    this.color.setBlack(true);
    this.power = new MageInt(4);
    this.toughness = new MageInt(5);

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

    super(ownerId, 198, "Sylvan Ranger", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{G}");
    this.expansionSetCode = "M11";
    this.subtype.add("Elf");
    this.subtype.add("Scout");
    this.color.setGreen(true);
    this.power = new MageInt(1);
    this.toughness = new MageInt(1);

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

    public CoralMerfolk(UUID ownerId) {
        super(ownerId, 47, "Coral Merfolk", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{U}");
        this.expansionSetCode = "M10";
        this.color.setBlue(true);
        this.subtype.add("Merfolk");
        this.power = new MageInt(2);
  this.toughness = new MageInt(1);
    }
View Full Code Here

    super(ownerId, 85, "Black Knight", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{B}{B}");
    this.expansionSetCode = "M10";
    this.subtype.add("Human");
    this.subtype.add("Knight");
    this.color.setBlack(true);
    this.power = new MageInt(2);
    this.toughness = new MageInt(2);

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

  public BogRaiders(UUID ownerId) {
    super(ownerId, 86, "Bog Raiders", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{B}");
    this.expansionSetCode = "M11";
    this.color.setBlack(true);
    this.subtype.add("Zombie");
    this.power = new MageInt(2);
    this.toughness = new MageInt(2);
    this.addAbility(SwampwalkAbility.getInstance());
  }
View Full Code Here

    super(ownerId, 63, "Maritime Guard", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{U}");
    this.expansionSetCode = "M11";
    this.color.setBlue(true);
    this.subtype.add("Merfolk");
    this.subtype.add("Soldier");
    this.power = new MageInt(1);
    this.toughness = new MageInt(3);
  }
View Full Code Here

  public GreatSableStag(UUID ownerId) {
    super(ownerId, 186, "Great Sable Stag", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{1}{G}{G}");
    this.expansionSetCode = "M10";
    this.subtype.add("Elk");
    this.color.setGreen(true);
    this.power = new MageInt(3);
    this.toughness = new MageInt(3);

    FilterCard filter1 = new FilterCard("Blue");
    filter1.setUseColor(true);
    filter1.getColor().setBlue(true);
    this.addAbility(new ProtectionAbility(filter1));
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.