Package mage.abilities.effects.common.combat

Examples of mage.abilities.effects.common.combat.CantBlockTargetEffect


        this.color.setRed(true);

        // Target creature without flying can't block this turn.
        this.getSpellAbility().addTarget(new TargetCreaturePermanent(filter));
        this.getSpellAbility().addEffect(new CantBlockTargetEffect(Duration.EndOfTurn));
        // Storm
        this.addAbility(new StormAbility());
    }
View Full Code Here


        this.color.setRed(true);

        // Wrap in Flames deals 1 damage to each of up to three target creatures. Those creatures can't block this turn.
        this.getSpellAbility().addEffect(new DamageTargetEffect(1));
        this.getSpellAbility().addEffect(new CantBlockTargetEffect(Duration.EndOfTurn));
        this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 3));
    }
View Full Code Here

TOP

Related Classes of mage.abilities.effects.common.combat.CantBlockTargetEffect

Copyright © 2018 www.massapicom. 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.