Examples of SacrificeOpponentsEffect


Examples of mage.abilities.effects.common.SacrificeOpponentsEffect

        this.color.setBlack(true);

        // Flash
        this.addAbility(FlashAbility.getInstance());
        // Whenever a creature you control dies, each opponent sacrifices a creature.
        this.addAbility(new DiesCreatureTriggeredAbility(new SacrificeOpponentsEffect(new FilterControlledCreaturePermanent("a creature")), false, filter));       
    }
View Full Code Here

Examples of mage.abilities.effects.common.SacrificeOpponentsEffect

        // Flying
        this.addAbility(FlyingAbility.getInstance());
       
        // Whenever Butcher of Malakir or another creature you control dies, each opponent sacrifices a creature.
        this.addAbility(new DiesThisOrAnotherCreatureTriggeredAbility(new SacrificeOpponentsEffect(new FilterControlledCreaturePermanent("a creature")), false, filter));
    }
View Full Code Here

Examples of mage.abilities.effects.common.SacrificeOpponentsEffect

        this.expansionSetCode = "M10";

        this.color.setRed(true);

        // Each opponent sacrifices a land.
        this.getSpellAbility().addEffect(new SacrificeOpponentsEffect(new FilterControlledLandPermanent("a land")));
    }
View Full Code Here

Examples of mage.abilities.effects.common.SacrificeOpponentsEffect

        this.expansionSetCode = "CMD";

        this.color.setGreen(true);

        // Each opponent sacrifices an artifact or enchantment.
      this.getSpellAbility().addEffect(new SacrificeOpponentsEffect(filter));
    }
View Full Code Here

Examples of mage.abilities.effects.common.SacrificeOpponentsEffect

        this.toughness = new MageInt(2);

        // Deathtouch
        this.addAbility(DeathtouchAbility.getInstance());
        // Heroic - Whenever you cast a spell that targets Agent of the Fates, each opponent sacrifices a creature.
        this.addAbility(new HeroicAbility(new SacrificeOpponentsEffect(new FilterControlledCreaturePermanent("a 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.