Examples of BoostControlledEffect


Examples of mage.abilities.effects.common.BoostControlledEffect

    this.subtype.add("Druid");
    this.color.setGreen(true);
    this.power = new MageInt(2);
    this.toughness = new MageInt(2);

    this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostControlledEffect(1, 1, Duration.WhileOnBattlefield, filter, true)));
    this.addAbility(new ElvishArchdruidAbility());
  }
View Full Code Here

Examples of mage.abilities.effects.common.BoostControlledEffect

  public HonorOfThePure(UUID ownerId) {
    super(ownerId, 16, "Honor of the Pure", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{1}{W}");
    this.expansionSetCode = "M10";
    this.color.setWhite(true);
    this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostControlledEffect(1, 1, Duration.WhileOnBattlefield, filter, false)));
  }
View Full Code Here

Examples of mage.abilities.effects.common.BoostControlledEffect

    this.subtype.add("Merfolk");
    this.color.setBlue(true);
    this.power = new MageInt(2);
    this.toughness = new MageInt(2);

    this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostControlledEffect(1, 1, Duration.WhileOnBattlefield, filter1, true)));
    Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainAbilityTargetEffect(UnblockableAbility.getInstance(), Duration.EndOfTurn), new TapSourceCost());
    ability.addTarget(new TargetCreaturePermanent(filter2));
    this.addAbility(ability);
  }
View Full Code Here

Examples of mage.abilities.effects.common.BoostControlledEffect

    public Overrun(UUID ownerId) {
        super(ownerId, 198, "Overrun", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY},"{2}{G}{G}{G}");
        this.expansionSetCode = "M10";
    this.color.setGreen(true);

        this.getSpellAbility().addEffect(new BoostControlledEffect(3, 3, Duration.EndOfTurn));
        this.getSpellAbility().addEffect(new GainAbilityControlledEffect(TrampleAbility.getInstance(), Duration.EndOfTurn, FilterCreaturePermanent.getDefault()));
    }
View Full Code Here

Examples of mage.abilities.effects.common.BoostControlledEffect

    this.addAbility(ability1);

    this.addAbility(new LoyaltyAbility(new CreateTokenEffect(beastToken), -1));

    Effects effects1 = new Effects();
    effects1.add(new BoostControlledEffect(3, 3, Duration.EndOfTurn));
    effects1.add(new GainAbilityControlledEffect(TrampleAbility.getInstance(), Duration.EndOfTurn, FilterCreaturePermanent.getDefault()));
    this.addAbility(new LoyaltyAbility(effects1, -4));
  }
View Full Code Here

Examples of mage.abilities.effects.common.BoostControlledEffect

    this.color.setRed(true);
    this.power = new MageInt(2);
    this.toughness = new MageInt(2);

    this.addAbility(HasteAbility.getInstance());
    this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostControlledEffect(1, 1, Duration.WhileOnBattlefield, filter, true)));
    this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityControlledEffect(HasteAbility.getInstance(), Duration.WhileOnBattlefield, filter)));
  }
View Full Code Here

Examples of mage.abilities.effects.common.BoostControlledEffect

    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

Examples of mage.abilities.effects.common.BoostControlledEffect

  public InspiredCharge(UUID ownerId) {
    super(ownerId, 19, "Inspired Charge", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{2}{W}{W}");
    this.expansionSetCode = "M11";
    this.color.setWhite(true);
    this.getSpellAbility().addEffect(new BoostControlledEffect(2, 1, Duration.EndOfTurn));
  }
View Full Code Here

Examples of mage.abilities.effects.common.BoostControlledEffect

    this.color.setRed(true);
    this.color.setGreen(true);
    this.loyalty = new MageInt(4);

    Effects effects1 = new Effects();
    effects1.add(new BoostControlledEffect(1, 1, Duration.EndOfTurn));
    effects1.add(new GainAbilityControlledEffect(HasteAbility.getInstance(), Duration.EndOfTurn, FilterCreaturePermanent.getDefault()));
    this.addAbility(new LoyaltyAbility(effects1, 1));

    Effects effects2 = new Effects();
    effects2.add(new GainControlTargetEffect(Duration.EndOfTurn));
View Full Code Here

Examples of mage.abilities.effects.common.BoostControlledEffect

    this.color.setBlack(true);
    this.subtype.add("Vampire");
    this.power = new MageInt(2);
    this.toughness = new MageInt(2);

    this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostControlledEffect(1, 1, Duration.WhileOnBattlefield, filter1, true)));
    Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CaptivatingVampireEffect(), new TapTargetCost(new TargetControlledCreaturePermanent(5, 5, filter2, true)));
    ability.addTarget(new TargetCreaturePermanent());
    this.addAbility(ability);
  }
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.