Package mage.abilities.keyword

Examples of mage.abilities.keyword.BasicLandcyclingAbility


        // Creatures you control get +1/+2 until end of turn. Untap those creatures.
        this.getSpellAbility().addEffect(new BoostControlledEffect(1, 2, Duration.EndOfTurn));
        this.getSpellAbility().addEffect(new UntapAllControllerEffect(new FilterCreaturePermanent(),"Untap those creatures"));
        // Basic landcycling {1}{W}({1}{W}, Discard this card: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.)
        this.addAbility(new BasicLandcyclingAbility(new ManaCostsImpl("{1}{W}")));
    }
View Full Code Here


        this.expansionSetCode = "CON";
        this.color.setBlack(true);
        this.getSpellAbility().addEffect(new LoseLifeTargetEffect(4));
        this.getSpellAbility().addEffect(new GainLifeEffect(4));
        this.getSpellAbility().addTarget(new TargetPlayer());
        this.addAbility(new BasicLandcyclingAbility(new ManaCostsImpl("{1}{B}")));
    }
View Full Code Here

        this.color.setGreen(true);

        // Target player gains 8 life.
        this.getSpellAbility().addEffect(new GainLifeTargetEffect(8));
        this.getSpellAbility().addTarget(new TargetPlayer());
        this.addAbility(new BasicLandcyclingAbility(new ManaCostsImpl("{1}{G}")));
    }
View Full Code Here

        // Fiery Fall deals 5 damage to target creature.
        this.getSpellAbility().addEffect(new DamageTargetEffect(5));
        this.getSpellAbility().addTarget(new TargetCreaturePermanent());
       
        // Basic landcycling  {1}{R} ({1}{R}, Discard this card: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.)
        this.addAbility(new BasicLandcyclingAbility(new ManaCostsImpl("{1}{R}")));
    }
View Full Code Here

        this.color.setBlue(true);

        // Counter target spell.
        this.getSpellAbility().addTarget(new TargetSpell());
        this.getSpellAbility().addEffect(new CounterTargetEffect());
        this.addAbility(new BasicLandcyclingAbility(new ManaCostsImpl("{1}{U}")));
    }
View Full Code Here

TOP

Related Classes of mage.abilities.keyword.BasicLandcyclingAbility

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.