Examples of SoulshiftAbility


Examples of mage.abilities.keyword.SoulshiftAbility

        this.color.setBlack(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(2);

        this.addAbility(FearAbility.getInstance());
        this.addAbility(new SoulshiftAbility(5));
    }
View Full Code Here

Examples of mage.abilities.keyword.SoulshiftAbility

        this.subtype.add("Spirit");
        this.color.setWhite(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(3);
        this.addAbility(FlyingAbility.getInstance());
        this.addAbility(new SoulshiftAbility(4));
    }
View Full Code Here

Examples of mage.abilities.keyword.SoulshiftAbility

        this.color.setGreen(true);
        this.power = new MageInt(4);
        this.toughness = new MageInt(4);

        // Soulshift 4, soulshift 4 (When this creature dies, you may return up to two target Spirit cards with converted mana cost 4 or less from your graveyard to your hand.)
        this.addAbility(new SoulshiftAbility(4));
        this.addAbility(new SoulshiftAbility(4));
    }
View Full Code Here

Examples of mage.abilities.keyword.SoulshiftAbility

        this.expansionSetCode = "CHK";
        this.subtype.add("Spirit");
        this.color.setGreen(true);
        this.power = new MageInt(6);
        this.toughness = new MageInt(6);
        this.addAbility(new SoulshiftAbility(7));
    }
View Full Code Here

Examples of mage.abilities.keyword.SoulshiftAbility

        // {B}, Sacrifice Pus Kami: Destroy target nonblack creature.
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DestroyTargetEffect(), new ColoredManaCost(ColoredManaSymbol.B));
        ability.addCost(new SacrificeSourceCost());
        ability.addTarget(new TargetCreaturePermanent(filter));
        this.addAbility(ability);
        this.addAbility(new SoulshiftAbility(6));
    }
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.