Package mage.abilities.keyword

Examples of mage.abilities.keyword.UndyingAbility


        this.toughness = new MageInt(4);

        this.addAbility(VigilanceAbility.getInstance());
        this.addAbility(TrampleAbility.getInstance());
        // Undying
        this.addAbility(new UndyingAbility());
    }
View Full Code Here


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

        // Undying
        this.addAbility(new UndyingAbility());
    }
View Full Code Here

        // When Geralf's Mindcrusher enters the battlefield, target player puts the top five cards of his or her library into his or her graveyard.
        Ability ability = new EntersBattlefieldTriggeredAbility(new PutLibraryIntoGraveTargetEffect(5));
        ability.addTarget(new TargetPlayer());
        this.addAbility(ability);
        // Undying
        this.addAbility(new UndyingAbility());
    }
View Full Code Here

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

        // Whenever Pyreheart Wolf attacks, each creature you control can't be blocked this turn except by two or more creatures.
        this.addAbility(new UndyingAbility());
        this.addAbility(new AttacksTriggeredAbility(new PyreheartWolfEffect(), false));
    }
View Full Code Here

        this.toughness = new MageInt(4);

        // As an additional cost to cast Relentless Skaabs, exile a creature card from your graveyard.
        this.getSpellAbility().addCost(new ExileFromGraveCost(new TargetCardInYourGraveyard(new FilterCreatureCard("creature card from your graveyard"))));
        // Undying
        this.addAbility(new UndyingAbility());
    }
View Full Code Here

        this.toughness = new MageInt(2);

        // Sightless Ghoul can't block.
        this.addAbility(new CantBlockAbility());
        // Undying
        this.addAbility(new UndyingAbility());
    }
View Full Code Here

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

        this.addAbility(FlyingAbility.getInstance());
        // Undying
        this.addAbility(new UndyingAbility());
    }
View Full Code Here

        this.addAbility(IntimidateAbility.getInstance());
        // Whenever a Human deals damage to you, destroy it.
        this.addAbility(new MikaeusTheUnhallowedAbility());
        // Other non-Human creatures you control get +1/+1 and have undying.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostControlledEffect(1, 1, Duration.WhileOnBattlefield, filter, true)));
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityControlledEffect(new UndyingAbility(), Duration.WhileOnBattlefield, filter, true)));
    }
View Full Code Here

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

        // Undying
        this.addAbility(new UndyingAbility());

        // When Treacherous Pit-Dweller enters the battlefield from a graveyard, target opponent gains control of it.
        this.addAbility(new TreacherousPitDwellerTriggeredAbility());
    }
View Full Code Here

TOP

Related Classes of mage.abilities.keyword.UndyingAbility

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.