Examples of DestroySourceEffect


Examples of mage.abilities.effects.common.DestroySourceEffect

}

class IceCageAbility extends TriggeredAbilityImpl<IceCageAbility> {

  public IceCageAbility() {
    super(Zone.BATTLEFIELD, new DestroySourceEffect());
  }
View Full Code Here

Examples of mage.abilities.effects.common.DestroySourceEffect


class IllusionaryArmorAbility extends TriggeredAbilityImpl {

    public IllusionaryArmorAbility() {
        super(Zone.BATTLEFIELD, new DestroySourceEffect());
    }
View Full Code Here

Examples of mage.abilities.effects.common.DestroySourceEffect

}

class PrimalCocoonAbility2 extends TriggeredAbilityImpl<PrimalCocoonAbility2> {

  public PrimalCocoonAbility2() {
    super(Zone.BATTLEFIELD, new DestroySourceEffect());
  }
View Full Code Here

Examples of mage.abilities.effects.common.DestroySourceEffect

}

class SpectralPrisonAbility extends TriggeredAbilityImpl {

    public SpectralPrisonAbility() {
        super(Zone.BATTLEFIELD, new DestroySourceEffect());
    }
View Full Code Here

Examples of mage.abilities.effects.common.DestroySourceEffect

}

class PrimalCocoonAbility2 extends TriggeredAbilityImpl {

    public PrimalCocoonAbility2() {
        super(Zone.BATTLEFIELD, new DestroySourceEffect());
    }
View Full Code Here

Examples of mage.abilities.effects.common.DestroySourceEffect

}

class IceCageAbility extends TriggeredAbilityImpl {

    public IceCageAbility() {
        super(Zone.BATTLEFIELD, new DestroySourceEffect());
    }
View Full Code Here

Examples of mage.abilities.effects.common.DestroySourceEffect

        // Defender
        this.addAbility(DefenderAbility.getInstance());
        // When Cinder Wall blocks, destroy it at end of combat.
        this.addAbility(
                new BlocksTriggeredAbility(new CreateDelayedTriggeredAbilityEffect(new AtTheEndOfCombatDelayedTriggeredAbility(new DestroySourceEffect()))
                , false));
    }
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.