Package mage.abilities.condition.common

Examples of mage.abilities.condition.common.CardsInOpponentGraveCondition


        this.toughness = new MageInt(1);

        // Flying
        this.addAbility(FlyingAbility.getInstance());
        // Jace's Phantasm gets +4/+4 as long as an opponent has ten or more cards in his or her graveyard.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ConditionalContinousEffect(new BoostSourceEffect(4, 4, Duration.WhileOnBattlefield), new CardsInOpponentGraveCondition(10), "{this} gets +4/+4 as long as an opponent has ten or more cards in his or her graveyard")));
    }
View Full Code Here

TOP

Related Classes of mage.abilities.condition.common.CardsInOpponentGraveCondition

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.