Package mage.abilities.effects.common

Examples of mage.abilities.effects.common.ScryEffect


        this.expansionSetCode = "THS";

        // Temple of Silence enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // When Temple of Silence enters the battlefield, scry 1.</i>
        this.addAbility(new EntersBattlefieldTriggeredAbility(new ScryEffect(1)));
        // {T}: Add {W} or {B} to your mana pool.
        this.addAbility(new WhiteManaAbility());
        this.addAbility(new BlackManaAbility());

    }
View Full Code Here


        this.color.setRed(true);

        // Spark Jolt deals 1 damage to target creature or player. Scry 1.
        this.getSpellAbility().addEffect(new DamageTargetEffect(1));
        this.getSpellAbility().addTarget(new TargetCreatureOrPlayer());
        this.getSpellAbility().addEffect(new ScryEffect(1));
    }
View Full Code Here

        this.color.setBlack(true);
        this.power = new MageInt(4);
        this.toughness = new MageInt(5);

        // Whenever another creature dies, scry 1.</i>
        this.addAbility(new DiesCreatureTriggeredAbility(new ScryEffect(1), false, true));
        // {B}: Reaper of the Wilds gains deathtouch until end of turn.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainAbilitySourceEffect(DeathtouchAbility.getInstance(), Duration.EndOfTurn), new ManaCostsImpl("{B}")));
        // {1}{G}: Reaper of the Wilds gains hexproof until end of turn.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainAbilitySourceEffect(HexproofAbility.getInstance(), Duration.EndOfTurn), new ManaCostsImpl("{1}{G}")));
    }
View Full Code Here

        this.color.setBlue(true);

        // Counter target spell unless its controller pays {1}. Scry 1.
        this.getSpellAbility().addEffect(new CounterUnlessPaysEffect(new GenericManaCost(1)));
        this.getSpellAbility().addTarget(new TargetSpell());
        this.getSpellAbility().addEffect(new ScryEffect(1));

    }
View Full Code Here

TOP

Related Classes of mage.abilities.effects.common.ScryEffect

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.