Package mage.target.common

Examples of mage.target.common.TargetCreatureOrPlaneswalker


        this.color.setRed(true);

        // Fated Conflagration deals 5 damage to target creature or planewalker. If it's your turn, scry 2.
        this.getSpellAbility().addEffect(new DamageTargetEffect(5));
        this.getSpellAbility().addTarget(new TargetCreatureOrPlaneswalker());
        this.getSpellAbility().addEffect(new ConditionalOneShotEffect(new ScryEffect(2), MyTurnCondition.getInstance(), "If it's your turn, scry 2"));
    }
View Full Code Here

TOP

Related Classes of mage.target.common.TargetCreatureOrPlaneswalker

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.