Examples of DamageMultiEffect


Examples of mage.abilities.effects.common.DamageMultiEffect

}

class InfernoTitanAbility extends TriggeredAbilityImpl {

    public InfernoTitanAbility() {
        super(Zone.BATTLEFIELD, new DamageMultiEffect(3), false);
        this.addTarget(new TargetCreatureOrPlayerAmount(3));
    }
View Full Code Here

Examples of mage.abilities.effects.common.DamageMultiEffect

        this.expansionSetCode = "ODY";

        this.color.setRed(true);

        // Volley of Boulders deals 6 damage divided as you choose among any number of target creatures and/or players.
        this.getSpellAbility().addEffect(new DamageMultiEffect(6));
        this.getSpellAbility().addTarget(new TargetCreatureOrPlayerAmount(6));
        // Flashback {R}{R}{R}{R}{R}{R}
        this.addAbility(new FlashbackAbility(new ManaCostsImpl("{R}{R}{R}{R}{R}{R}"),TimingRule.SORCERY));
    }
View Full Code Here

Examples of mage.abilities.effects.common.DamageMultiEffect

        this.expansionSetCode = "THS";

        this.color.setRed(true);

        // Boulderfall deals 5 damage divided as you choose among any number of target creatures and/or players.
        this.getSpellAbility().addEffect(new DamageMultiEffect(5));
        this.getSpellAbility().addTarget(new TargetCreatureOrPlayerAmount(5));
    }
View Full Code Here

Examples of mage.abilities.effects.common.DamageMultiEffect

        this.color.setRed(true);
        this.color.setBlue(true);

        // Electrolyze deals 2 damage divided as you choose among one or two target creatures and/or players.
        Effect effect = new DamageMultiEffect(2);
        effect.setText("{source} deals 2 damage divided as you choose among one or two target creatures and/or players");
        this.getSpellAbility().addEffect(effect);
        this.getSpellAbility().addTarget(new TargetCreatureOrPlayerAmount(2));
        // Draw a card.
        this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1));
    }
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.