Examples of CyclingAbility


Examples of mage.abilities.keyword.CyclingAbility

        this.color.setWhite(true);

        // You gain 6 life.
        this.getSpellAbility().addEffect(new GainLifeEffect(6));
        // Cycling {1}{W}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{1}{W}")));
        // When you cycle Renewed Faith, you may gain 2 life.
        this.addAbility(new CycleTriggeredAbility(new GainLifeEffect(2), true));
    }
View Full Code Here

Examples of mage.abilities.keyword.CyclingAbility

        // Lonely Sandbar enters the battlefield tapped.
        this.addAbility(new EntersBattlefieldTappedAbility());
        // {tap}: Add {U} to your mana pool.
        this.addAbility(new BlueManaAbility());
        // Cycling {U}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{U}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.CyclingAbility

        this.color.setWhite(true);

    // {W}: The next time a white source of your choice would deal damage to you this turn, prevent that damage.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new RuneOfProtectionWhiteEffect() , new ManaCostsImpl("W")));
    // Cycling {2} ({2}, Discard this card: Draw a card.)
    this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.CyclingAbility

        Ability ability = new EnchantAbility(auraTarget.getTargetName());
        this.addAbility(ability);
        // Enchanted land is an Island.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BecomesBasicLandEnchantedEffect("Island")));
        // Cycling {2}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.CyclingAbility

        // Flying
        this.addAbility(FlyingAbility.getInstance());
        // When Cloud of Faeries enters the battlefield, untap up to two lands.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new UntapLandsEffect(2)));
        // Cycling {2}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.CyclingAbility

        // Shuffle all creature cards from target player's graveyard into that player's library.
        this.getSpellAbility().addTarget(new TargetPlayer());
        this.getSpellAbility().addEffect(new RepopulateEffect());
        // Cycling {2}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.CyclingAbility

        this.color.setRed(true);
        this.power = new MageInt(6);
        this.toughness = new MageInt(4);

        this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.CyclingAbility

        Ability ability2 = new DiesTriggeredAbility(new CreateTokenEffect(new SoldierToken()), true);
        this.addAbility(ability1);
        this.addAbility(ability2);
       
        // Cycling {2}{W}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}{W}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.CyclingAbility

        // Destroy target artifact or land.
        this.getSpellAbility().addEffect(new DestroyTargetEffect());
        this.getSpellAbility().addTarget(new TargetPermanent(filter));
        // Cycling {2}
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.CyclingAbility

        this.subtype.add("Spider");
        this.color.setGreen(true);
        this.power = new MageInt(5);
        this.toughness = new MageInt(6);
        this.addAbility(ReachAbility.getInstance());
        this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
    }
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.