Package mage.abilities.effects.common.continious

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


        // Soulbond
        this.addAbility(SoulbondAbility.getInstance());

        // As long as Trusted Forcemage is paired with another creature, each of those creatures gets +1/+1.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostPairedEffect(1, 1, ruleText)));
    }
View Full Code Here


        // Soulbond
        this.addAbility(SoulbondAbility.getInstance());

        // As long as Druid's Familiar is paired with another creature, each of those creatures gets +2/+2.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostPairedEffect(2, 2, ruleText)));
    }
View Full Code Here

        // Soulbond
        this.addAbility(SoulbondAbility.getInstance());

        // As long as Wolfir Silverheart is paired with another creature, each of those creatures gets +4/+4.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostPairedEffect(4, 4, ruleText)));
    }
View Full Code Here

TOP

Related Classes of mage.abilities.effects.common.continious.BoostPairedEffect

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.