Examples of EpicEffect


Examples of mage.abilities.effects.common.EpicEffect

        // Put a 1/1 green Snake creature token onto the battlefield for each card in your hand.
        this.getSpellAbility().addEffect(new CreateTokenEffect(new SnakeToken(), new CardsInControllerHandCount()));
       
        // Epic
        this.getSpellAbility().addEffect(new EpicEffect());
       
    }
View Full Code Here

Examples of mage.abilities.effects.common.EpicEffect

        // Search your library for an enchantment card and put it onto the battlefield. Then shuffle your library.
        this.getSpellAbility().addEffect(new EnduringIdealEffect());
       
        // Epic
        this.getSpellAbility().addEffect(new EpicEffect());
       
    }
View Full Code Here

Examples of mage.abilities.effects.common.EpicEffect

        // Search target player's library for X cards, where X is the number of cards in your hand, and exile them. Then that player shuffles his or her library.
        this.getSpellAbility().addEffect(new NeverendingTormentEffect());
        this.getSpellAbility().addTarget(new TargetPlayer());

        // Epic
        this.getSpellAbility().addEffect(new EpicEffect());
    }
View Full Code Here

Examples of mage.abilities.effects.common.EpicEffect

        // Put that card onto the battlefield under your control. Then that player shuffles his or her library.
        this.getSpellAbility().addEffect(new EternalDominionEffect());
        this.getSpellAbility().addTarget(new TargetOpponent());
       
        // Epic
        this.getSpellAbility().addEffect(new EpicEffect());

    }
View Full Code Here

Examples of mage.abilities.effects.common.EpicEffect

        // Exile cards from the top of your library until you exile a nonland card. Undying Flames deals damage to target creature or player equal to that card's converted mana cost.
        this.getSpellAbility().addEffect(new UndyingFlamesEffect());
        this.getSpellAbility().addTarget(new TargetCreatureOrPlayer());

        // Epic
        this.getSpellAbility().addEffect(new EpicEffect());

    }
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.