Examples of PutLibraryIntoGraveTargetEffect


Examples of mage.abilities.effects.common.PutLibraryIntoGraveTargetEffect

    }
}

class NemesisOfReasonTriggeredAbility extends TriggeredAbilityImpl {
    NemesisOfReasonTriggeredAbility() {
        super(Zone.BATTLEFIELD, new PutLibraryIntoGraveTargetEffect(10));
    }
View Full Code Here

Examples of mage.abilities.effects.common.PutLibraryIntoGraveTargetEffect

        this.color.setBlue(true);
        this.power = new MageInt(1);
        this.toughness = new MageInt(3);

        // Tap an untapped Merfolk you control: Target player puts the top card of his or her library into his or her graveyard.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new PutLibraryIntoGraveTargetEffect(1), new TapTargetCost(new TargetControlledPermanent(filter)));
        ability.addTarget(new TargetPlayer());
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.effects.common.PutLibraryIntoGraveTargetEffect

        this.color.setBlue(true);
        this.color.setBlack(true);

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

Examples of mage.abilities.effects.common.PutLibraryIntoGraveTargetEffect

    }
}
class ChronicFloodingAbility extends TriggeredAbilityImpl {
    ChronicFloodingAbility() {
        super(Zone.BATTLEFIELD, new PutLibraryIntoGraveTargetEffect(3));
    }
View Full Code Here

Examples of mage.abilities.effects.common.PutLibraryIntoGraveTargetEffect

    public SandsOfDelirium(UUID ownerId) {
        super(ownerId, 216, "Sands of Delirium", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{3}");
        this.expansionSetCode = "M13";

        // {X}, {tap}: Target player puts the top X cards of his or her library into his or her graveyard.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new PutLibraryIntoGraveTargetEffect(new ManacostVariableValue()), new VariableManaCost());
        ability.addCost(new TapSourceCost());
        ability.addTarget(new TargetPlayer());
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.effects.common.PutLibraryIntoGraveTargetEffect

        // Flying
        this.addAbility(FlyingAbility.getInstance());
       
        // Whenever another creature leaves the battlefield, you may have target player put the top two cards of his or her library into his or her graveyard.
        Ability ability = new DiesCreatureTriggeredAbility(new PutLibraryIntoGraveTargetEffect(2), true, true, false);
        ability.addTarget(new TargetPlayer());
        this.addAbility(ability);
       
        // Unearth {2}{B}
        this.addAbility(new UnearthAbility(new ManaCostsImpl("{2}{B}")));
View Full Code Here

Examples of mage.abilities.effects.common.PutLibraryIntoGraveTargetEffect

        this.color.setBlue(true);

        // Target player puts the top two cards of his or her library into his or her graveyard.
        this.getSpellAbility().addTarget(new TargetPlayer());
        this.getSpellAbility().addEffect(new PutLibraryIntoGraveTargetEffect(2));
        // Draw a card.
        this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1));
    }
View Full Code Here

Examples of mage.abilities.effects.common.PutLibraryIntoGraveTargetEffect

}

class BelltowerSphinxEffect extends TriggeredAbilityImpl {

    public BelltowerSphinxEffect() {
        super(Zone.BATTLEFIELD, new PutLibraryIntoGraveTargetEffect(0));
    }
View Full Code Here

Examples of mage.abilities.effects.common.PutLibraryIntoGraveTargetEffect

        this.expansionSetCode = "RAV";

        // {tap}: Add {1} to your mana pool.
        this.addAbility(new ColorlessManaAbility());
        // {U}{B}, {tap}: Target player puts the top card of his or her library into his or her graveyard.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new PutLibraryIntoGraveTargetEffect(1), new ManaCostsImpl("{U}{B}"));
        ability.addCost(new TapSourceCost());
        ability.addTarget(new TargetPlayer());
        this.addAbility(ability);
    }
View Full Code Here

Examples of mage.abilities.effects.common.PutLibraryIntoGraveTargetEffect

        this.color.setBlue(true);

        // Draw three cards. Target player puts the top three cards of his or her library into his or her graveyard.
        this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(3));
        this.getSpellAbility().addEffect(new PutLibraryIntoGraveTargetEffect(3));
        this.getSpellAbility().addTarget(new TargetPlayer());
    }
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.