Examples of DestroyAllEffect


Examples of mage.abilities.effects.common.DestroyAllEffect

  public DayOfJudgment(UUID ownerId) {
    super(ownerId, 9, "Day of Judgment", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{2}{W}{W}");
    this.expansionSetCode = "ZEN";
    this.color.setWhite(true);
    this.getSpellAbility().addEffect(new DestroyAllEffect(new FilterCreaturePermanent("creatures")));
  }
View Full Code Here

Examples of mage.abilities.effects.common.DestroyAllEffect

  public BackToNature(UUID ownerId) {
    super(ownerId, 164, "Back to Nature", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{1}{G}");
    this.expansionSetCode = "M11";
    this.color.setGreen(true);
    this.getSpellAbility().addEffect(new DestroyAllEffect(filter));
  }
View Full Code Here

Examples of mage.abilities.effects.common.DestroyAllEffect

    public DayOfJudgment(UUID ownerId) {
        super(ownerId, 9, "Day of Judgment", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{2}{W}{W}");
        this.expansionSetCode = "ZEN";
        this.color.setWhite(true);
        this.getSpellAbility().addEffect(new DestroyAllEffect(new FilterCreaturePermanent()));
    }
View Full Code Here

Examples of mage.abilities.effects.common.DestroyAllEffect

        this.expansionSetCode = "TMP";

        this.color.setBlack(true);

        // Destroy all green creatures. They can't be regenerated.
        this.getSpellAbility().addEffect(new DestroyAllEffect(filter, true));
    }
View Full Code Here

Examples of mage.abilities.effects.common.DestroyAllEffect

        this.expansionSetCode = "ROE";

        this.color.setBlack(true);

        // Destroy each creature with converted mana cost 3 or less. They can't be regenerated.
        this.getSpellAbility().addEffect(new DestroyAllEffect(filter, false));
    }
View Full Code Here

Examples of mage.abilities.effects.common.DestroyAllEffect

        this.expansionSetCode = "5ED";

        this.color.setRed(true);

        // Destroy all Plains.
        this.getSpellAbility().addEffect(new DestroyAllEffect(filter));
       
    }
View Full Code Here

Examples of mage.abilities.effects.common.DestroyAllEffect

        this.expansionSetCode = "5ED";

        this.color.setRed(true);

        // Destroy all artifacts. They can't be regenerated.
        this.getSpellAbility().addEffect(new DestroyAllEffect(new FilterArtifactPermanent(), true));
    }
View Full Code Here

Examples of mage.abilities.effects.common.DestroyAllEffect

        super(ownerId, 165, "Boil", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{3}{R}");
        this.expansionSetCode = "TMP";
        this.color.setRed(true);
       
        // Destroy all Islands.
        this.getSpellAbility().addEffect(new DestroyAllEffect(filter));
    }
View Full Code Here

Examples of mage.abilities.effects.common.DestroyAllEffect

        this.expansionSetCode = "4ED";

        this.color.setGreen(true);

        // Destroy all Islands.
        this.getSpellAbility().addEffect(new DestroyAllEffect(filter));
    }
View Full Code Here

Examples of mage.abilities.effects.common.DestroyAllEffect

        this.expansionSetCode = "JOU";

        this.color.setBlack(true);

        // Destroy all nonenchantment creatures.
        this.getSpellAbility().addEffect(new DestroyAllEffect(filter));
       
    }
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.