Package mage.abilities.common

Examples of mage.abilities.common.CanBlockOnlyFlyingAbility


        this.power = new MageInt(2 );
        this.toughness = new MageInt( 1);

        this.addAbility(FlyingAbility.getInstance());
        // Welkin Tern can block only creatures with flying.
         this.addAbility(new CanBlockOnlyFlyingAbility());
    }
View Full Code Here


        this.power = new MageInt(3);
        this.toughness = new MageInt(1);

        this.addAbility(FlyingAbility.getInstance());
        // Skywinder Drake can block only creatures with flying.
        this.addAbility(new CanBlockOnlyFlyingAbility());
    }
View Full Code Here

        this.power = new MageInt(2);
        this.toughness = new MageInt(3);

        this.addAbility(FlyingAbility.getInstance());
        // Cloud Elemental can block only creatures with flying.
        this.addAbility(new CanBlockOnlyFlyingAbility());
    }
View Full Code Here

        this.toughness = new MageInt(3);

        this.addAbility(FlyingAbility.getInstance());

        // Scrapskin Drake can block only creatures with flying.
        this.addAbility(new CanBlockOnlyFlyingAbility());
    }
View Full Code Here

        this.power = new MageInt(1);
        this.toughness = new MageInt(1);
        this.addAbility(FlyingAbility.getInstance());

        // Cloud Sprite can block only creatures with flying.
        this.addAbility(new CanBlockOnlyFlyingAbility());
    }
View Full Code Here

        this.power = new MageInt(2);
        this.toughness = new MageInt(2);

        this.addAbility(FlyingAbility.getInstance());
        // Stormbound Geist can block only creatures with flying.
        this.addAbility(new CanBlockOnlyFlyingAbility());
        // Undying
        this.addAbility(new UndyingAbility());
    }
View Full Code Here

        this.power = new MageInt(3);
        this.toughness = new MageInt(3);

        this.addAbility(ReachAbility.getInstance());
        // Gloomwidow can block only creatures with flying.
        this.addAbility(new CanBlockOnlyFlyingAbility());
    }
View Full Code Here

        this.toughness = new MageInt(1);

        // Flying
        this.addAbility(FlyingAbility.getInstance());
        // Vaporkin can block only creatures with flying.
         this.addAbility(new CanBlockOnlyFlyingAbility());
    }
View Full Code Here

TOP

Related Classes of mage.abilities.common.CanBlockOnlyFlyingAbility

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.