Package mage.game.permanent.token

Examples of mage.game.permanent.token.FrogToken


        // Until end of turn, target creature loses all abilities and becomes a blue Frog with base power and toughness 1/1.
        Effect effect = new LoseAllAbilitiesTargetEffect(Duration.EndOfTurn);
        effect.setText("Until end of turn, target creature loses all abilities");
        this.getSpellAbility().addEffect(effect);
        effect = new BecomesCreatureTargetEffect(new FrogToken(), null, Duration.EndOfTurn);
        effect.setText("and becomes a blue Frog with base power and toughness 1/1");
        this.getSpellAbility().addEffect(effect);
        this.getSpellAbility().addTarget(new TargetCreaturePermanent());
    }
View Full Code Here

TOP

Related Classes of mage.game.permanent.token.FrogToken

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.