Package mage.abilities.effects.common

Examples of mage.abilities.effects.common.CopyPermanentEffect


class ArtisanOfFormsApplyToPermanent extends ApplyToPermanent {

    @Override
    public Boolean apply(Game game, Permanent permanent) {
        Effect effect = new CopyPermanentEffect(new ArtisanOfFormsApplyToPermanent());
        effect.setText("have {this} become a copy of target creature and gain this ability");
        permanent.addAbility(new HeroicAbility(effect, true), game);
        return true;
    }
View Full Code Here

TOP

Related Classes of mage.abilities.effects.common.CopyPermanentEffect

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.