Package mage.abilities.keyword

Examples of mage.abilities.keyword.SplitSecondAbility


        this.expansionSetCode = "TSP";

        this.color.setRed(true);

        // Split second
        this.addAbility(new SplitSecondAbility());
        // Sudden Shock deals 2 damage to target creature or player.
        this.getSpellAbility().addEffect(new DamageTargetEffect(2, true));
        this.getSpellAbility().addTarget(new TargetCreatureOrPlayer());
    }
View Full Code Here


        this.expansionSetCode = "TSP";

        this.color.setBlue(true);

        // Split second
        this.addAbility(new SplitSecondAbility());
        // Return target permanent to its owner's hand.
        this.getSpellAbility().addTarget(new TargetPermanent());
        this.getSpellAbility().addEffect(new ReturnToHandTargetEffect());
    }
View Full Code Here

TOP

Related Classes of mage.abilities.keyword.SplitSecondAbility

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.