Examples of CantCastMoreThanOneSpellEffect


Examples of mage.abilities.effects.common.continious.CantCastMoreThanOneSpellEffect

        this.color.setWhite(true);
        this.power = new MageInt(1);
        this.toughness = new MageInt(4);

        // Each player can't cast more than one spell each turn.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantCastMoreThanOneSpellEffect(TargetController.ANY)));  
    }
View Full Code Here

Examples of mage.abilities.effects.common.continious.CantCastMoreThanOneSpellEffect

        this.expansionSetCode = "10E";

        this.color.setWhite(true);

        // Each player can't cast more than one spell each turn.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantCastMoreThanOneSpellEffect(TargetController.ANY)));

    }
View Full Code Here

Examples of mage.abilities.effects.common.continious.CantCastMoreThanOneSpellEffect

        this.expansionSetCode = "INV";

        this.color.setBlack(true);

        // You can't cast more than one spell each turn.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantCastMoreThanOneSpellEffect(TargetController.YOU)));
        // You may play cards from your graveyard.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new YawgmothsAgendaCanPlayCardsFromGraveyardEffect()));
        // If a card would be put into your graveyard from anywhere, exile it instead.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new YawgmothsAgendaReplacementEffect()));
    }
View Full Code Here

Examples of mage.abilities.effects.common.continious.CantCastMoreThanOneSpellEffect

        this.expansionSetCode = "USG";

        this.color.setBlue(true);

        // Each player can't cast more than one spell each turn.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantCastMoreThanOneSpellEffect(TargetController.ANY)));
    }
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.