Examples of BoostTargetEffect


Examples of mage.abilities.effects.common.BoostTargetEffect

* @author BetaSteward_at_googlemail.com
*/
public class ExaltedAbility extends TriggeredAbilityImpl<ExaltedAbility> {

  public ExaltedAbility() {
    super(Zone.BATTLEFIELD, new BoostTargetEffect(1, 1, Duration.EndOfTurn));
  }
View Full Code Here

Examples of mage.abilities.effects.common.BoostTargetEffect

    this.loyalty = new MageInt(4);

    this.addAbility(new LoyaltyAbility(new CreateTokenEffect(soldierToken), 1));

    Effects effects1 = new Effects();
    effects1.add(new BoostTargetEffect(3, 3, Duration.EndOfTurn));
    effects1.add(new GainAbilityTargetEffect(FlyingAbility.getInstance(), Duration.EndOfTurn));
    LoyaltyAbility ability1 = new LoyaltyAbility(effects1, 1);
    ability1.addTarget(new TargetCreaturePermanent());
    this.addAbility(ability1);
View Full Code Here

Examples of mage.abilities.effects.common.BoostTargetEffect

  public StabbingPain(UUID ownerId) {
    super(ownerId, 118, "Stabbing Pain", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{B}");
    this.expansionSetCode = "M11";
    this.color.setBlack(true);
    this.getSpellAbility().addTarget(new TargetCreaturePermanent());
    this.getSpellAbility().addEffect(new BoostTargetEffect(-1, -1, Duration.EndOfTurn));
    this.getSpellAbility().addEffect(new TapTargetEffect());
  }
View Full Code Here

Examples of mage.abilities.effects.common.BoostTargetEffect

        super(ownerId, 48, "Disorient", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{3}{U}");
        this.expansionSetCode = "M10";
        this.color.setBlue(true);

        this.getSpellAbility().addTarget(new TargetCreaturePermanent());
        this.getSpellAbility().addEffect(new BoostTargetEffect(-7, 0, Duration.EndOfTurn));
    }
View Full Code Here

Examples of mage.abilities.effects.common.BoostTargetEffect

  public ThunderStrike(UUID ownerId) {
    super(ownerId, 157, "Thunder Strike", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{1}{R}");
    this.expansionSetCode = "M11";
    this.color.setRed(true);
    this.getSpellAbility().addTarget(new TargetCreaturePermanent());
    this.getSpellAbility().addEffect(new BoostTargetEffect(2, 0, Duration.EndOfTurn));
    this.getSpellAbility().addEffect(new GainAbilityTargetEffect(FirstStrikeAbility.getInstance(), Duration.EndOfTurn));
  }
View Full Code Here

Examples of mage.abilities.effects.common.BoostTargetEffect

  public TeeteringPeaks(UUID ownerId) {
    super(ownerId, 226, "Teetering Peaks", Rarity.COMMON, new CardType[]{CardType.LAND}, null);
    this.expansionSetCode = "ZEN";
    this.addAbility(new EntersBattlefieldTappedAbility());
    Ability ability = new EntersBattlefieldTriggeredAbility(new BoostTargetEffect(2, 0, Duration.EndOfTurn), false);
    ability.addTarget(new TargetCreaturePermanent());
    this.addAbility(ability);
    this.addAbility(new RedManaAbility());
  }
View Full Code Here

Examples of mage.abilities.effects.common.BoostTargetEffect

class AdventuringGearAbility extends LandfallAbility {

  public AdventuringGearAbility() {
    super(null, false);
    this.addEffect(new BoostTargetEffect(2, 2, Duration.EndOfTurn));
    this.addTarget(new TargetCreaturePermanent());
  }
View Full Code Here

Examples of mage.abilities.effects.common.BoostTargetEffect

    public ConstrictingTendrils(UUID ownerId) {
        super(ownerId, 22, "Constricting Tendrils", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{U}");
        this.expansionSetCode = "CON";
        this.color.setBlue(true);
        this.getSpellAbility().addTarget(new TargetCreaturePermanent());
        this.getSpellAbility().addEffect(new BoostTargetEffect(-3, 0, Duration.EndOfTurn));
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
    }
View Full Code Here

Examples of mage.abilities.effects.common.BoostTargetEffect

    public MightOfOaks(UUID ownerId){
        super(ownerId, 192, "Might of Oaks", Rarity.RARE, new CardType[]{CardType.INSTANT},"{3}{G}");
        this.expansionSetCode = "M10";
    this.color.setGreen(true);
    this.getSpellAbility().addTarget(new TargetCreaturePermanent());
    this.getSpellAbility().addEffect(new BoostTargetEffect(7, 7, Duration.EndOfTurn));
    }
View Full Code Here

Examples of mage.abilities.effects.common.BoostTargetEffect

  public GiantGrowth(UUID ownerId) {
    super(ownerId, 266, "Giant Growth", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{G}");
    this.expansionSetCode = "10E";
    this.color.setGreen(true);
    this.getSpellAbility().addTarget(new TargetCreaturePermanent());
    this.getSpellAbility().addEffect(new BoostTargetEffect(3, 3, Duration.EndOfTurn));
  }
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.