Examples of overrideRuleText()


Examples of mage.abilities.effects.ContinuousEffect.overrideRuleText()

        this.color.setBlack(true);

        // All creatures get -1/-1 until end of turn for each Swamp you control.
        PermanentsOnBattlefieldCount count = new PermanentsOnBattlefieldCount(filter, -1);
        ContinuousEffect effect = new BoostAllEffect(count, count, Duration.EndOfTurn, new FilterCreaturePermanent(), false, null, true);
        effect.overrideRuleText(ruleText);
        this.getSpellAbility().addEffect(effect);
    }

    public Mutilate(final Mutilate card) {
        super(card);
View Full Code Here

Examples of mage.abilities.effects.common.continious.BoostAllEffect.overrideRuleText()

        this.color.setBlack(true);

        // All creatures get -1/-1 until end of turn for each Swamp you control.
        PermanentsOnBattlefieldCount count = new PermanentsOnBattlefieldCount(filter, -1);
        ContinuousEffect effect = new BoostAllEffect(count, count, Duration.EndOfTurn, new FilterCreaturePermanent(), false, null, true);
        effect.overrideRuleText(ruleText);
        this.getSpellAbility().addEffect(effect);
    }

    public Mutilate(final Mutilate card) {
        super(card);
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.