mirror of
https://github.com/correl/mage.git
synced 2025-03-17 01:06:26 -09: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;
|
package mage.sets.darkascension;
|
||||||
|
|
||||||
import java.util.UUID;
|
|
||||||
import mage.Constants.CardType;
|
import mage.Constants.CardType;
|
||||||
import mage.Constants.Rarity;
|
import mage.Constants.Rarity;
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
|
@ -39,6 +38,8 @@ import mage.abilities.keyword.UndyingAbility;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.target.common.TargetOpponent;
|
import mage.target.common.TargetOpponent;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author Loki
|
* @author Loki
|
||||||
|
@ -58,7 +59,7 @@ public class GeralfsMessenger extends CardImpl<GeralfsMessenger> {
|
||||||
this.addAbility(new EntersBattlefieldTappedAbility());
|
this.addAbility(new EntersBattlefieldTappedAbility());
|
||||||
// When Geralf's Messenger enters the battlefield, target opponent loses 2 life.
|
// When Geralf's Messenger enters the battlefield, target opponent loses 2 life.
|
||||||
Ability ability = new EntersBattlefieldTriggeredAbility(new LoseLifeTargetEffect(2));
|
Ability ability = new EntersBattlefieldTriggeredAbility(new LoseLifeTargetEffect(2));
|
||||||
ability.addTarget(new TargetOpponent());
|
ability.addTarget(new TargetOpponent(true));
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
// Undying
|
// Undying
|
||||||
this.addAbility(new UndyingAbility());
|
this.addAbility(new UndyingAbility());
|
||||||
|
|
|
@ -63,7 +63,7 @@ public class Gravecrawler extends CardImpl<Gravecrawler> {
|
||||||
this.addAbility(CantBlockAbility.getInstance());
|
this.addAbility(CantBlockAbility.getInstance());
|
||||||
|
|
||||||
// You may cast Gravecrawler from your graveyard as long as you control a Zombie.
|
// 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…
Add table
Reference in a new issue