Examples of PopulateEffect


Examples of mage.abilities.effects.common.PopulateEffect

        // Populate. Creatures you control are indestructible this turn.
        // (To populate, put a token onto the battlefield that's a copy of a creature
        // token you control. Damage and effects that say "destroy" don't destroy
        // indestructible creatures.)
        this.getSpellAbility().addEffect(new PopulateEffect());
        Effect effect = new GainAbilityAllEffect(IndestructibleAbility.getInstance(), Duration.EndOfTurn, new FilterControlledCreaturePermanent(), false);
        effect.setText("Creatures you control are indestructible this turn");
        this.getSpellAbility().addEffect(effect);

    }
View Full Code Here

Examples of mage.abilities.effects.common.PopulateEffect

        this.color.setGreen(true);

        // Prevent all combat damage that would be dealt to you this turn. Populate.
        // (Put a token onto the battlefield that's a copy of a creature token you control.)
        this.getSpellAbility().addEffect(new DruidsDeliverancePreventCombatDamageEffect());
        this.getSpellAbility().addEffect(new PopulateEffect());
    }
View Full Code Here

Examples of mage.abilities.effects.common.PopulateEffect

        this.color.setWhite(true);
        this.color.setGreen(true);

        // At the beginning of your upkeep, populate. (Put a token onto the battlefield that's a copy of a creature token you control.)
        this.addAbility(new BeginningOfUpkeepTriggeredAbility(new PopulateEffect(""), TargetController.YOU, false));
    }
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.