Examples of CantBeBlockedByOneEffect


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

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

        // Sliver creatures you control have "This creature can't be blocked except by two or more creatures."
        Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByOneEffect(2, Duration.WhileOnBattlefield));
        Effect effect = new GainAbilityAllEffect(ability, Duration.WhileOnBattlefield, filter);
        effect.setText("Sliver creatures you control have \"This creature can't be blocked except by two or more creatures.\"");
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
    }
View Full Code Here

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

        this.toughness = new MageInt(0);

        // Horde of Boggarts's power and toughness are each equal to the number of red permanents you control.
        this.addAbility(new SimpleStaticAbility(Zone.ALL, new SetPowerToughnessSourceEffect(new PermanentsOnBattlefieldCount(filter), Duration.EndOfGame)));
        // Horde of Boggarts can't be blocked except by two or more creatures.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByOneEffect(2)));
    }
View Full Code Here

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

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

        // As long as you control a Mountain, Summit Apes can't be blocked except by two or more creatures.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD,
                new ConditionalContinousEffect(new CantBeBlockedByOneEffect(2), new PermanentsOnTheBattlefieldCondition(filter), rule)));
    }
View Full Code Here

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

        // {1}{R}: Two-Headed Dragon gets +2/+0 until end of turn.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(2,0, Duration.EndOfTurn),new ManaCostsImpl("{1}{R}")));

        // Two-Headed Dragon can't be blocked except by two or more creatures.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByOneEffect(2)));

        // Two-Headed Dragon can block an additional creature.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CanBlockAdditionalCreatureEffect()));

    }
View Full Code Here

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

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

        // Viashino Runner can't be blocked except by two or more creatures.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByOneEffect(2)));
    }
View Full Code Here

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

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

        // Ripscale Predator can't be blocked except by two or more creatures.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByOneEffect(2)));
    }
View Full Code Here

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

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

        this.addAbility(DeathtouchAbility.getInstance());
        // Kederekt Creeper can't be blocked except by two or more creatures.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByOneEffect(2)));
    }
View Full Code Here

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

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

        // Vine Kami can't be blocked except by two or more creatures.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByOneEffect(2)));
        this.addAbility(new SoulshiftAbility(6));
    }
View Full Code Here

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

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

        // Each Goblin you control can't be blocked except by two or more creatures.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAllEffect(
                new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByOneEffect(2)),
                Duration.WhileOnBattlefield, filterGoblin,
                "Each Goblin you control can't be blocked except by two or more creatures")));

        // Each Elemental you control can't be blocked except by two or more creatures.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAllEffect(
                new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByOneEffect(2)),
                Duration.WhileOnBattlefield, filterGoblin,
                "Each Elemental you control can't be blocked except by two or more creatures")));
    }
View Full Code Here

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

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

        //{R}: Gruul Nodorog can't be blocked this turn except by two or more creatures.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new CantBeBlockedByOneEffect(2, 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.