Examples of CantBlockAbility


Examples of mage.abilities.common.CantBlockAbility

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

        // Unhallowed Cathar can't block.
        this.addAbility(new CantBlockAbility());
    }
View Full Code Here

Examples of mage.abilities.common.CantBlockAbility

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

        // Shambling Remains can't block.
        this.addAbility(new CantBlockAbility());
        // Unearth {B}{R}
        this.addAbility(new UnearthAbility(new ManaCostsImpl("{B}{R}")));
    }
View Full Code Here

Examples of mage.abilities.common.CantBlockAbility

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

        // Pygmy Pyrosaur can't block.
        this.addAbility(new CantBlockAbility());
        // {R}: Pygmy Pyrosaur gets +1/+0 until end of turn.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(1, 0, Duration.EndOfTurn), new ManaCostsImpl("{R}")));
    }
View Full Code Here

Examples of mage.abilities.common.CantBlockAbility

        this.toughness = new MageInt(4);
        this.flipCard = true;
        this.flipCardName = "Homura's Essence";

        // Homura, Human Ascendant can't block.
        this.addAbility(new CantBlockAbility());
        // When Homura dies, return it to the battlefield flipped.
        this.addAbility(new DiesTriggeredAbility(new FlipSourceEffect(new HomurasEssence2())));
    }
View Full Code Here

Examples of mage.abilities.common.CantBlockAbility

        this.color.setBlack(true);
        this.power = new MageInt(1);
        this.toughness = new MageInt(1);
        this.addAbility(FlyingAbility.getInstance());
        // Nightshade Stinger can't block.
        this.addAbility(new CantBlockAbility());
    }
View Full Code Here

Examples of mage.abilities.common.CantBlockAbility

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

        // Ogre Taskmaster can't block.
        this.addAbility(new CantBlockAbility());
    }
View Full Code Here

Examples of mage.abilities.common.CantBlockAbility

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

        // Hulking Goblin can't block.
        this.addAbility(new CantBlockAbility());
    }
View Full Code Here

Examples of mage.abilities.common.CantBlockAbility

        this.expansionSetCode = "M12";
        this.subtype.add("Spirit");
        this.color.setBlack(true);
        this.power = new MageInt(1);
        this.toughness = new MageInt(1);
        this.addAbility(new CantBlockAbility());
        this.addAbility(new UnblockableAbility());
    }
View Full Code Here

Examples of mage.abilities.common.CantBlockAbility

        this.subtype.add("Warrior");
        this.color.setBlack(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(1);
        this.addAbility(FearAbility.getInstance());
        this.addAbility(new CantBlockAbility());
    }
View Full Code Here

Examples of mage.abilities.common.CantBlockAbility

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

        // Sightless Ghoul can't block.
        this.addAbility(new CantBlockAbility());
        // Undying
        this.addAbility(new UndyingAbility());
    }
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.