Package mage.abilities.effects.common

Examples of mage.abilities.effects.common.PreventAllCombatDamageEffect


  public Fog(UUID ownerId) {
    super(ownerId, 182, "Fog", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{G}");
    this.expansionSetCode = "M10";
    this.color.setGreen(true);
    this.getSpellAbility().addEffect(new PreventAllCombatDamageEffect(Duration.EndOfTurn));
  }
View Full Code Here


  public Angelsong(UUID ownerId) {
    super(ownerId, 4, "Angelsong", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{1}{W}");
    this.expansionSetCode = "ALA";
    this.color.setWhite(true);
    this.getSpellAbility().addEffect(new PreventAllCombatDamageEffect(Duration.EndOfTurn));
    this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
  }
View Full Code Here

TOP

Related Classes of mage.abilities.effects.common.PreventAllCombatDamageEffect

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.