Examples of CantBlockCreaturesSourceEffect


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

        // Intimidate
        this.addAbility(IntimidateAbility.getInstance());

        // Cyclops Tyrant can't block creatures with power 2 or less.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBlockCreaturesSourceEffect(filter)));
    }
View Full Code Here

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

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

        // Ironclaw Orcs can't block creatures with power 2 or greater.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBlockCreaturesSourceEffect(filter)));
    }
View Full Code Here

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

        // Defender
        this.addAbility(DefenderAbility.getInstance());
        // Flying
        this.addAbility(FlyingAbility.getInstance());
        // Sunweb can't block creatures with power 2 or less.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBlockCreaturesSourceEffect(filter)));
    }
View Full Code Here

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

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

        // Brassclaw Orcs can't block creatures with power 2 or greater.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBlockCreaturesSourceEffect(filter)));

    }
View Full Code Here

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

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

        // Sneaky Homunculus can't block or be blocked by creatures with power 2 or greater.
        Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByCreaturesSourceEffect(filter, Duration.WhileOnBattlefield));
        ability.addEffect(new CantBlockCreaturesSourceEffect(filter));
        this.addAbility(ability);
    }
View Full Code Here

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

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

        // Ironclaw Buzzardiers can't block creatures with power 2 or greater.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBlockCreaturesSourceEffect(filter)));
        // {R}: Ironclaw Buzzardiers gains flying until end of turn.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainAbilitySourceEffect(FlyingAbility.getInstance(), Duration.EndOfTurn), new ManaCostsImpl("{R}")));
    }
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.