Examples of CantBeBlockedByMoreThanOneSourceEffect


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

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

        // Charging Rhino can't be blocked by more than one creature.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByMoreThanOneSourceEffect()));
    }
View Full Code Here

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

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

        // Stalking Tiger can't be blocked by more than one creature.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByMoreThanOneSourceEffect()));
    }
View Full Code Here

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

        this.toughness = new MageInt(2);

        // Provoke
        this.addAbility(new ProvokeAbility());
        // Krosan Vorine can't be blocked by more than one creature.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByMoreThanOneSourceEffect()));
    }
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.