Examples of BoostSourceEffect


Examples of mage.abilities.effects.common.BoostSourceEffect

        this.subtype.add("Vampire");
        this.subtype.add("Rogue");
        this.color.setBlack(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(2);
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(2, 2, Duration.EndOfTurn), new ManaCostsImpl(""));
        ability.addCost(new SacrificeTargetCost(new TargetControlledCreaturePermanent()));
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.effects.common.BoostSourceEffect

        this.subtype.add("Wall");
        this.power = new MageInt(0);
  this.toughness = new MageInt(5);

        this.addAbility(DefenderAbility.getInstance());
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(0, 1, Duration.EndOfTurn), new ManaCostsImpl("{W}")));
    }
View Full Code Here

Examples of mage.abilities.effects.common.BoostSourceEffect

    this.subtype.add("Elemental");
    this.color.setBlue(true);
    this.power = new MageInt(3);
    this.toughness = new MageInt(4);

    this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(1, -1, Duration.EndOfTurn), new ManaCostsImpl("{U}")));
    this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(-1, 1, Duration.EndOfTurn), new ManaCostsImpl("{U}")));
  }
View Full Code Here

Examples of mage.abilities.effects.common.BoostSourceEffect

    this.subtype.add("Giant");
    this.color.setRed(true);
    this.power = new MageInt(6);
    this.toughness = new MageInt(6);

    this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(1, 0, Duration.EndOfTurn), new ManaCostsImpl("{R}")));
    this.addAbility(new InfernoTitanAbility());
  }
View Full Code Here

Examples of mage.abilities.effects.common.BoostSourceEffect

        this.expansionSetCode = "M10";
        this.subtype.add("Shade");
  this.color.setBlack(true);
  this.power = new MageInt(1);
  this.toughness = new MageInt(1);
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(1, 1, Duration.EndOfTurn), new ManaCostsImpl("{B}")));
    }
View Full Code Here

Examples of mage.abilities.effects.common.BoostSourceEffect

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

    this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(1, 0, Duration.EndOfTurn), new ManaCostsImpl("{R}")));
  }
View Full Code Here

Examples of mage.abilities.effects.common.BoostSourceEffect

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

    this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(1, 1, Duration.EndOfTurn), new ManaCostsImpl("{B}")));
  }
View Full Code Here

Examples of mage.abilities.effects.common.BoostSourceEffect

    this.expansionSetCode = "ROE";
    this.color.setBlack(true);
    this.subtype.add("Vampire");
    this.power = new MageInt(1);
    this.toughness = new MageInt(1);
    this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(2, 2, Duration.EndOfTurn), new SacrificeTargetCost(new TargetControlledCreaturePermanent())));
  }
View Full Code Here

Examples of mage.abilities.effects.common.BoostSourceEffect

        this.subtype.add("Beast");
        this.color.setRed(true);
        this.power = new MageInt(5);
        this.toughness = new MageInt(2);

        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(0, 3, Duration.EndOfTurn), new ManaCostsImpl("{1}{W}")));
    }
View Full Code Here

Examples of mage.abilities.effects.common.BoostSourceEffect

        this.color.setWhite(true);
        this.subtype.add("Gargoyle");
  this.power = new MageInt(1);
  this.toughness = new MageInt(2);
        this.addAbility(FlyingAbility.getInstance());
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(2, -1, Duration.EndOfTurn), new ManaCostsImpl(("{B}"))));
    }
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.