Examples of TargetArtifactPermanent


Examples of mage.target.common.TargetArtifactPermanent

        // Choose one - Destroy target creature with flying; or destroy target artifact.
        this.getSpellAbility().addTarget(new TargetCreaturePermanent(filter));
        this.getSpellAbility().addEffect(new DestroyTargetEffect());
        Mode mode = new Mode();
        mode.getTargets().add(new TargetArtifactPermanent());
        mode.getEffects().add(new DestroyTargetEffect());
        this.getSpellAbility().addMode(mode);
    }
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.