Examples of CantBlockAbility


Examples of mage.abilities.common.CantBlockAbility

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

        // Carrion Feeder can't block.
        this.addAbility(new CantBlockAbility());
        // Sacrifice a creature: Put a +1/+1 counter on Carrion Feeder.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD,
                new AddCountersSourceEffect(CounterType.P1P1.createInstance()),
                new SacrificeTargetCost(new TargetControlledCreaturePermanent())));
    }
View Full Code Here

Examples of mage.abilities.common.CantBlockAbility

        this.subtype.add("Imp");
        this.color.setBlack(true);
        this.power = new MageInt(3);
        this.toughness = new MageInt(1);
        this.addAbility(FlyingAbility.getInstance());
        this.addAbility(new CantBlockAbility());
    }
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.