Examples of UnearthAbility


Examples of mage.abilities.keyword.UnearthAbility

        this.expansionSetCode = "ALA";
        this.subtype.add("Zombie");
        this.color.setBlack(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(1);
        this.addAbility(new UnearthAbility(new ManaCostsImpl("{B}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.UnearthAbility

        this.toughness = new MageInt(5);

        // When Kederekt Leviathan enters the battlefield, return all other nonland permanents to their owners' hands.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new ReturnToHandFromBattlefieldAllEffect(filter)));
        // Unearth {6}{U}
        this.addAbility(new UnearthAbility(new ManaCostsImpl("{6}{U}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.UnearthAbility

        this.toughness = new MageInt(4);

        this.addAbility(FlyingAbility.getInstance());
        this.addAbility(HasteAbility.getInstance());
        this.addAbility(new OnEventTriggeredAbility(EventType.END_TURN_STEP_PRE, "beginning of the end step", true, new SacrificeSourceEffect()));
        this.addAbility(new UnearthAbility(new ManaCostsImpl("{4}{R}")));

    }
View Full Code Here

Examples of mage.abilities.keyword.UnearthAbility

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

        this.addAbility(FirstStrikeAbility.getInstance());
        this.addAbility(new UnearthAbility(new ManaCostsImpl("{U}{B}{R}")));
    }
View Full Code Here

Examples of mage.abilities.keyword.UnearthAbility

        // When Anathemancer enters the battlefield, it deals damage to target player equal to the number of nonbasic lands that player controls.
        EntersBattlefieldTriggeredAbility ability = new EntersBattlefieldTriggeredAbility(new DamageTargetEffect(new AnathemancerCount()));
        ability.addTarget(new TargetPlayer());
        this.addAbility(ability);
        // Unearth {5}{B}{R}
        this.addAbility(new UnearthAbility(new ManaCostsImpl("{5}{B}{R}")));
    }
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.