Package mage.abilities.common

Examples of mage.abilities.common.BecomesBlockedTriggeredAbility.addEffect()


        // Whenever Gustcloak Sentinel becomes blocked, you may untap it and remove it from combat.
        Ability ability = new BecomesBlockedTriggeredAbility(new UntapSourceEffect(), true);
        Effect effect = new RemoveFromCombatSourceEffect();
        effect.setText("and remove it from combat");
        ability.addEffect(effect);
        this.addAbility(ability);
    }

    public GustcloakSentinel(final GustcloakSentinel card) {
        super(card);
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.