Examples of CipherEffect


Examples of mage.abilities.effects.common.CipherEffect

        this.color.setBlue(true);

        // Draw a card.
        this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1));
        // Cipher
        this.getSpellAbility().addEffect(new CipherEffect());
    }
View Full Code Here

Examples of mage.abilities.effects.common.CipherEffect

        this.getSpellAbility().addEffect(new LoseLifeTargetEffect(1));
        this.getSpellAbility().addEffect(new DiscardTargetEffect(1));
        this.getSpellAbility().addEffect(new SacrificeEffect(new FilterPermanent(),1,"then that player"));

        // Cipher (Then you may exile this spell card encoded on a creature you control. Whenever that creature deals combat damage to a player, its controller may cast a copy of the encoded card without paying its mana cost.)
        this.getSpellAbility().addEffect(new CipherEffect());

    }
View Full Code Here

Examples of mage.abilities.effects.common.CipherEffect

        // You may tap or untap target permanent, then you may tap or untap another target permanent
        this.getSpellAbility().addEffect(new HiddenStringsEffect());
        this.getSpellAbility().addTarget(new TargetPermanent(0, 2, new FilterPermanent(), false));

        // Cipher
        this.getSpellAbility().addEffect(new CipherEffect());
    }
View Full Code Here

Examples of mage.abilities.effects.common.CipherEffect

        this.color.setBlack(true);

        // Each player discards his or her hand, then draws cards equal to the greatest number of cards a player discarded this way.
        this.getSpellAbility().addEffect(new WhisperingMadnessEffect());
        // Cipher
        this.getSpellAbility().addEffect(new CipherEffect());
    }
View Full Code Here

Examples of mage.abilities.effects.common.CipherEffect

        // Put a token onto the battlefield that's a copy of target artifact or creature.
        this.getSpellAbility().addEffect(new StolenIdentityEffect());
        this.getSpellAbility().addTarget(new TargetPermanent(filter));
        // Cipher
        this.getSpellAbility().addEffect(new CipherEffect());
    }
View Full Code Here

Examples of mage.abilities.effects.common.CipherEffect

        //Tap target creature an opponent controls. That creature doesn't untap during its controller's next untap step.
        this.getSpellAbility().addEffect(new TapTargetEffect());
        this.getSpellAbility().addEffect(new SkipNextUntapTargetEffect());
        this.getSpellAbility().addTarget(new TargetCreaturePermanent(filter));
        //Cipher
        this.getSpellAbility().addEffect(new CipherEffect());
       
       
    }
View Full Code Here

Examples of mage.abilities.effects.common.CipherEffect

        // Target player puts the top three cards of his or her library into his or her graveyard.
        this.getSpellAbility().addEffect(new PutLibraryIntoGraveTargetEffect(3));
        this.getSpellAbility().addTarget(new TargetPlayer());
        // Cipher
        this.getSpellAbility().addEffect(new CipherEffect());
    }
View Full Code Here

Examples of mage.abilities.effects.common.CipherEffect

        // Exile target creature. Return it to the battlefield under its owner's control at the beginning of the next end step.
        this.getSpellAbility().addEffect(new VoidwalkEffect());
        this.getSpellAbility().addTarget(new TargetCreaturePermanent());

        // Cipher
        this.getSpellAbility().addEffect(new CipherEffect());
    }
View Full Code Here

Examples of mage.abilities.effects.common.CipherEffect

        // Target Opponent loses 3 life.
        this.getSpellAbility().addEffect(new LoseLifeTargetEffect(3));
        this.getSpellAbility().addTarget(new TargetOpponent());

        // Cipher (Then you may exilce this spell card encoded on a creature you control. Whenever that creature deals combat damage to a player, its controller may cast a copy of the encoded card without paying its mana cost.)
        this.getSpellAbility().addEffect(new CipherEffect());

    }
View Full Code Here

Examples of mage.abilities.effects.common.CipherEffect

        // Return target creature card from your graveyard to your hand.
        this.getSpellAbility().addEffect(new ReturnFromGraveyardToHandTargetEffect());
        this.getSpellAbility().addTarget(new TargetCardInYourGraveyard(new FilterCreatureCard("creature card from your graveyard")));

        // Cipher (Then you may exilce this spell card encoded on a creature you control. Whenever that creature deals combat damage to a player, its controller may cast a copy of the encoded card without paying its mana cost.)
        this.getSpellAbility().addEffect(new CipherEffect());

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