Package mage.abilities.effects.common

Examples of mage.abilities.effects.common.AddManaToControllersManaPoolEffect


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

        // <em>Raid</em> - When Mardu Warshrieker enters the battlefield, if you attacked with a creature this turn, add {R}{W}{B} to your mana pool.
        this.addAbility(new ConditionalTriggeredAbility(new EntersBattlefieldTriggeredAbility(new AddManaToControllersManaPoolEffect(new Mana(1,0,0,1,1,0,0))), RaidCondition.getInstance(),
                 "<i>Raid</i> -  When {this} enters the battlefield, if you attacked with a creature this turn, add {R}{W}{B} to your mana pool.", false));
        this.addWatcher(new PlayerAttackedWatcher());
    }
View Full Code Here


        // Morph {2}
        this.addAbility(new MorphAbility(this, new ManaCostsImpl("{2}")));
       
        // When Rattleclaw Mystic is turned face up, add {G}{U}{R} to your mana pool.
        this.addAbility(new TurnedFaceUpSourceTriggeredAbility(new AddManaToControllersManaPoolEffect(new Mana(1,1,1,0,0,0,0))));

    }
View Full Code Here

        this.expansionSetCode = "5DN";

        this.color.setGreen(true);

        // Add {W}{U}{B}{R}{G} to your mana pool.
        Effect effect = new AddManaToControllersManaPoolEffect(new Mana(1, 1, 1, 1, 1, 0, 0));
        this.getSpellAbility().addEffect(effect);
    }
View Full Code Here

TOP

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

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.