Examples of CantBeBlockedByCreaturesWithLessPowerEffect


Examples of mage.abilities.effects.common.combat.CantBeBlockedByCreaturesWithLessPowerEffect

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

        // Creatures with power less than Howlgeist's power can't block it.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByCreaturesWithLessPowerEffect()));
        this.addAbility(new UndyingAbility());
    }
View Full Code Here

Examples of mage.abilities.effects.common.combat.CantBeBlockedByCreaturesWithLessPowerEffect

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

        this.addAbility(new BloodthirstAbility(1));
        // Creatures with power less than Skarrgan Pit-Skulk's power can't block it.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByCreaturesWithLessPowerEffect()));
    }
View Full Code Here

Examples of mage.abilities.effects.common.combat.CantBeBlockedByCreaturesWithLessPowerEffect

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

        // Creatures with power less than Wandering Wolf's power can't block it.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByCreaturesWithLessPowerEffect()));
    }
View Full Code Here

Examples of mage.abilities.effects.common.combat.CantBeBlockedByCreaturesWithLessPowerEffect

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

        // Creatures with power less than Aura Gnarlid's power can't block it.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByCreaturesWithLessPowerEffect()));
        // Aura Gnarlid gets +1/+1 for each Aura on the battlefield.
        PermanentsOnBattlefieldCount count = new PermanentsOnBattlefieldCount(filter);
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostSourceEffect(count, count, Duration.WhileOnBattlefield)));
    }
View Full Code Here

Examples of mage.abilities.effects.common.combat.CantBeBlockedByCreaturesWithLessPowerEffect

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

        this.addAbility(new BloodthirstAbility(1));
        // Creatures with power less than Battering Wurm's power can't block it.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByCreaturesWithLessPowerEffect()));
    }
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.