Examples of KinshipAbility


Examples of mage.abilities.abilityword.KinshipAbility

        this.power = new MageInt(4);
        this.toughness = new MageInt(4);

        // Kinship - At the beginning of your upkeep, you may look at the top card of your library. If it shares a creature type with Wandering Graybeard, you may reveal it.
        // If you do, you gain 4 life.
        this.addAbility(new KinshipAbility(new GainLifeEffect(4)));
    }
View Full Code Here

Examples of mage.abilities.abilityword.KinshipAbility

        this.power = new MageInt(3);
        this.toughness = new MageInt(2);

        // Kinship - At the beginning of your upkeep, you may look at the top card of your library. If it shares a creature type with Squeaking Pie Grubfellows, you may reveal it.
        // If you do, each opponent discards a card.
        this.addAbility(new KinshipAbility(new DiscardEachPlayerEffect(new StaticValue(1), false, TargetController.OPPONENT)));
    }
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.