Package mage.abilities.common

Examples of mage.abilities.common.SimpleEvasionAbility


        this.toughness = new MageInt(1);

        // Shadow
        this.addAbility(ShadowAbility.getInstance());
        // Dauthi Horror can't be blocked by white creatures.
        this.addAbility(new SimpleEvasionAbility(new CantBeBlockedByCreaturesSourceEffect(filter, Duration.WhileOnBattlefield)));
    }
View Full Code Here


        this.toughness = new MageInt(3);

        // Juggernaut attacks each turn if able.
        this.addAbility(new AttacksEachTurnStaticAbility());
        // Juggernaut can't be blocked by Walls.
        this.addAbility(new SimpleEvasionAbility(new CantBeBlockedByCreaturesSourceEffect(filter, Duration.WhileOnBattlefield)));
    }
View Full Code Here

    this.color.setBlack(true);
    this.power = new MageInt(1);
    this.toughness = new MageInt(1);
 
        // Rampart Crawler can't be blocked by Walls.
    this.addAbility(new SimpleEvasionAbility(new CantBeBlockedByCreaturesSourceEffect(filter, Duration.WhileOnBattlefield)));
    }
View Full Code Here

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

        // Hooded Horror can't be blocked as long as defending player controls the most creatures or is tied for the most.
      this.addAbility(new SimpleEvasionAbility(new HoodedHorrorCantBeBlockedEffect()));
    }
View Full Code Here

TOP

Related Classes of mage.abilities.common.SimpleEvasionAbility

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.