mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Card fixes
This commit is contained in:
parent
ec9ea835a5
commit
7b699b6386
2 changed files with 4 additions and 3 deletions
|
@ -27,7 +27,6 @@
|
|||
*/
|
||||
package mage.sets.darkascension;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.MageInt;
|
||||
|
@ -39,6 +38,8 @@ import mage.abilities.keyword.UndyingAbility;
|
|||
import mage.cards.CardImpl;
|
||||
import mage.target.common.TargetOpponent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Loki
|
||||
|
@ -58,7 +59,7 @@ public class GeralfsMessenger extends CardImpl<GeralfsMessenger> {
|
|||
this.addAbility(new EntersBattlefieldTappedAbility());
|
||||
// When Geralf's Messenger enters the battlefield, target opponent loses 2 life.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new LoseLifeTargetEffect(2));
|
||||
ability.addTarget(new TargetOpponent());
|
||||
ability.addTarget(new TargetOpponent(true));
|
||||
this.addAbility(ability);
|
||||
// Undying
|
||||
this.addAbility(new UndyingAbility());
|
||||
|
|
|
@ -63,7 +63,7 @@ public class Gravecrawler extends CardImpl<Gravecrawler> {
|
|||
this.addAbility(CantBlockAbility.getInstance());
|
||||
|
||||
// You may cast Gravecrawler from your graveyard as long as you control a Zombie.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.GRAVEYARD, new GravecrawlerPlayEffect()));
|
||||
this.addAbility(new SimpleStaticAbility(Zone.ALL, new GravecrawlerPlayEffect()));
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue