Examples of SacrificeAllEffect


Examples of mage.abilities.effects.common.SacrificeAllEffect

  public DestructiveForce(UUID ownerId) {
    super(ownerId, 133, "Destructive Force", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{5}{R}{R}");
    this.expansionSetCode = "M11";
    this.color.setRed(true);
    this.getSpellAbility().addEffect(new SacrificeAllEffect(5, filter));
    this.getSpellAbility().addEffect(new DamageAllEffect(5, FilterCreaturePermanent.getDefault()));
  }
View Full Code Here

Examples of mage.abilities.effects.common.SacrificeAllEffect

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

        // When Akki Blizzard-Herder dies, each player sacrifices a land.
        this.addAbility(new DiesTriggeredAbility(new SacrificeAllEffect(filter)));
    }
View Full Code Here

Examples of mage.abilities.effects.common.SacrificeAllEffect

        this.expansionSetCode = "DGM";

        this.color.setWhite(true);

        // Each player sacrifices a multicolored permanent.
        this.getSpellAbility().addEffect(new SacrificeAllEffect(filter));
    }
View Full Code Here

Examples of mage.abilities.effects.common.SacrificeAllEffect

        super(ownerId, 98, "Crack the Earth", Rarity.COMMON, new CardType[]{CardType.SORCERY}, "{R}");
        this.expansionSetCode = "BOK";
        this.subtype.add("Arcane");
        this.color.setRed(true);
        // Each player sacrifices a permanent.
        this.getSpellAbility().addEffect(new SacrificeAllEffect(1, new FilterControlledPermanent("permanent")));

    }
View Full Code Here

Examples of mage.abilities.effects.common.SacrificeAllEffect

        this.expansionSetCode = "AVR";

        this.color.setBlack(true);

        // Each player sacrifices two creatures.
        this.getSpellAbility().addEffect(new SacrificeAllEffect(2, filter));
    }
View Full Code Here

Examples of mage.abilities.effects.common.SacrificeAllEffect

        this.color.setBlack(true);
        this.power = new MageInt(4);
        this.toughness = new MageInt(3);

        this.addAbility(new BeginningOfUpkeepTriggeredAbility(new SacrificeAllEffect(filter), TargetController.YOU, false));
    }
View Full Code Here

Examples of mage.abilities.effects.common.SacrificeAllEffect

        this.toughness = new MageInt(5);

        // {5}{R}{R}: Monstrosity 3.
        this.addAbility(new MonstrosityAbility("{5}{R}{R}", 3));
        // When Ember Swallower becomes monstrous, each player sacrifices three lands.
        this.addAbility(new BecomesMonstrousSourceTriggeredAbility(new SacrificeAllEffect(3, new FilterControlledLandPermanent("lands"))));
    }
View Full Code Here

Examples of mage.abilities.effects.common.SacrificeAllEffect

        this.expansionSetCode = "ODY";

        this.color.setRed(true);

        // Each player sacrifices a land.
        this.getSpellAbility().addEffect(new SacrificeAllEffect(1, new FilterControlledLandPermanent("land")));
    }
View Full Code Here

Examples of mage.abilities.effects.common.SacrificeAllEffect

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

        // When Slum Reaper enters the battlefield, each player sacrifices a creature.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new SacrificeAllEffect(1, new FilterControlledCreaturePermanent("creature"))));
    }
View Full Code Here

Examples of mage.abilities.effects.common.SacrificeAllEffect

        this.color.setBlack(true);
        this.power = new MageInt(3);
        this.toughness = new MageInt(1);

        // When Fleshbag Marauder enters the battlefield, each player sacrifices a creature.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new SacrificeAllEffect(1, new FilterControlledCreaturePermanent("creature"))));
    }
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.