Package mage.abilities.common

Examples of mage.abilities.common.BlocksCreatureTriggeredAbility


       
        // Whenever Brimaz, King of Oreskos attacks, put a 1/1 white Cat Soldier creature token with vigilance onto the battlefield attacking.
        this.addAbility(new AttacksTriggeredAbility(new CreateTokenEffect(new CatSoldierCreatureToken(), 1, false, true), false));
       
        // Whenever Brimaz blocks a creature, put a 1/1 white Cat Soldier creature token with vigilance onto the battlefield blocking that creature.
        this.addAbility(new BlocksCreatureTriggeredAbility(new BrimazKingOfOreskosEffect(), false, true));
    }
View Full Code Here


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

        // When Loyal Sentry blocks a creature, destroy that creature and Loyal Sentry.
        this.addAbility(new BlocksCreatureTriggeredAbility(new LoyalSentryEffect(), false, true));
    }
View Full Code Here

        // Trample
        this.addAbility(TrampleAbility.getInstance());

        // Whenever Meglonoth blocks a creature, Meglonoth deals damage to that creature's controller equal to Meglonoth's power.
        this.addAbility(new BlocksCreatureTriggeredAbility(new MeglonothEffect(), false, true));

    }
View Full Code Here

        this.power = new MageInt(0);
        this.toughness = new MageInt(7);

        this.addAbility(DefenderAbility.getInstance());
        // Whenever Wall of Frost blocks a creature, that creature doesn't untap during its controller's next untap step.
        this.addAbility(new BlocksCreatureTriggeredAbility(new SkipNextUntapTargetEffect("that creature"), false, true));
    }
View Full Code Here

        // Defender (This creature can't attack.)
        this.addAbility(DefenderAbility.getInstance());

        // Whenever Kaijin of the Vanishing Touch blocks a creature, return that creature to its owner's hand at end of combat. (Return it only if it's on the battlefield.)
        Ability ability = new BlocksCreatureTriggeredAbility(new KaijinOfTheVanishingTouchEffect(), false, true);
        this.addAbility(ability);

    }
View Full Code Here

TOP

Related Classes of mage.abilities.common.BlocksCreatureTriggeredAbility

Copyright © 2018 www.massapicom. 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.