Examples of BuybackAbility


Examples of mage.abilities.keyword.BuybackAbility

        this.expansionSetCode = "EXO";

        this.color.setBlue(true);

        // Buyback-Discard two cards.
        this.addAbility(new BuybackAbility(new DiscardTargetCost(new TargetCardInHand(2, new FilterCard("two cards")))));
        // Counter target spell.
        this.getSpellAbility().addEffect(new CounterTargetEffect());
        this.getSpellAbility().addTarget(new TargetSpell());
    }
View Full Code Here

Examples of mage.abilities.keyword.BuybackAbility

        this.expansionSetCode = "EXO";

        this.color.setRed(true);

        // Buyback—Pay 3 life, Discard a card at random. (You may pay 3 life and discard a card at random in addition to any other costs as you cast this spell. If you do, put this card into your hand as it resolves.)
        BuybackAbility buybackAbility = new BuybackAbility(new PayLifeCost(3));
        buybackAbility.addCost(new DiscardCardCost(true));
        this.addAbility(buybackAbility);

        // Destroy target land.
        this.getSpellAbility().addEffect(new DestroyTargetEffect());
        this.getSpellAbility().addTarget(new TargetLandPermanent());
View Full Code Here

Examples of mage.abilities.keyword.BuybackAbility

        super(ownerId, 201, "Searing Touch", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{R}");
        this.expansionSetCode = "TMP";
        this.color.setRed(true);

        // Buyback {4} (You may pay an additional {4} as you cast this spell. If you do, put this card into your hand as it resolves.)
        this.addAbility(new BuybackAbility("{4}"));

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

Examples of mage.abilities.keyword.BuybackAbility

        this.expansionSetCode = "TMP";

        this.color.setBlue(true);

        // Buyback {3}
        this.addAbility(new BuybackAbility("{3}"));
       
        // Return target permanent to its owner's hand.
        this.getSpellAbility().addEffect(new ReturnToHandTargetEffect());
        this.getSpellAbility().addTarget(new TargetPermanent());
    }
View Full Code Here

Examples of mage.abilities.keyword.BuybackAbility

        this.expansionSetCode = "TMP";

        this.color.setBlack(true);

        // Buyback {2}
        this.addAbility(new BuybackAbility("{2}"));

        // Return the top creature card of your graveyard to the battlefield. That creature gains haste until end of turn. Exile it at the beginning of the next end step.
        this.getSpellAbility().addEffect(new CorpseDanceEffect());
    }
View Full Code Here

Examples of mage.abilities.keyword.BuybackAbility

        this.expansionSetCode = "STH";

        this.color.setBlack(true);

        // Buyback {4}
        this.addAbility(new BuybackAbility("{4}"));
        // Put a 1/1 black Rat creature token onto the battlefield.
        this.getSpellAbility().addEffect(new CreateTokenEffect(new RatToken()));
    }
View Full Code Here

Examples of mage.abilities.keyword.BuybackAbility

        super(ownerId, 103, "Whispers of the Muse", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{U}");
        this.expansionSetCode = "TMP";
        this.color.setBlue(true);

        // Buyback {5} (You may pay an additional {5} as you cast this spell. If you do, put this card into your hand as it resolves.)
        this.addAbility(new BuybackAbility("{5}"));

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

Examples of mage.abilities.keyword.BuybackAbility

        super(ownerId, 120, "Elvish Fury", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{G}");
        this.expansionSetCode = "TMP";
        this.color.setGreen(true);

        // Buyback {4} (You may pay an additional {4} as you cast this spell. If you do, put this card into your hand as it resolves.)
        this.addAbility(new BuybackAbility("{4}"));

        // Target creature gets +2/+2 until end of turn.
        this.getSpellAbility().addEffect(new BoostTargetEffect(2,2, Duration.EndOfTurn));
        this.getSpellAbility().addTarget(new TargetCreaturePermanent());
    }
View Full Code Here

Examples of mage.abilities.keyword.BuybackAbility

        this.expansionSetCode = "TSP";

        this.color.setBlue(true);

        // Buyback {3}
        this.addAbility(new BuybackAbility("{3}"));

        // Counter target spell with converted mana cost X.
        this.getSpellAbility().addEffect(new CounterTargetEffect());
        this.getSpellAbility().addTarget(new TargetSpell(new FilterSpell("spell with converted mana cost X")));
    }
View Full Code Here

Examples of mage.abilities.keyword.BuybackAbility

        this.expansionSetCode = "FUT";

        this.color.setRed(true);

        // Buyback {2}
        this.addAbility(new BuybackAbility("{2}"));

        // Creatures you control get +1/+0 until end of turn.
        this.getSpellAbility().addEffect(new BoostControlledEffect(1,0, Duration.EndOfTurn));
       
        // Storm
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.