mirror of
https://github.com/correl/mage.git
synced 2025-04-03 17:00:16 -09:00
Fixed Null Caller's activated ability cost.
This commit is contained in:
parent
98b63ab2b6
commit
f1f2bd5a6f
2 changed files with 77 additions and 75 deletions
|
@ -31,14 +31,16 @@ import java.util.UUID;
|
|||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.common.ExileFromGraveCost;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.common.FilterCreatureCard;
|
||||
import mage.game.permanent.token.ZombieToken;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
import mage.target.common.TargetCardInYourGraveyard;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -58,7 +60,7 @@ public class NullCaller extends CardImpl {
|
|||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD,
|
||||
new CreateTokenEffect(new ZombieToken(), 1, true, false),
|
||||
new ManaCostsImpl<>("{3}{B}"));
|
||||
ability.addTarget(new TargetCreaturePermanent());
|
||||
ability.addCost(new ExileFromGraveCost(new TargetCardInYourGraveyard(new FilterCreatureCard("creature card from your graveyard"))));
|
||||
this.addAbility(ability);
|
||||
|
||||
}
|
||||
|
|
|
@ -28300,7 +28300,7 @@ Cyclone Sire|Oath of the Gatewatch|54|U|{4}{U}|Creature - Elemental|3|4|Flying$W
|
|||
Gift of Tusks|Oath of the Gatewatch|55|U|{U}|Instant|||Until end of turn, target creature loses all abilities and becomes a green Elephant with base power and toughness 3/3.|
|
||||
Grip of the Roil|Oath of the Gatewatch|56|U|{2}{U}|Instant|||Surge {1}{U} <i>(You masy cast this spell for its surge cost if you or a teammate has cast another spell this turn.)</i>$Tap target creature. It doesn't untap during its controller's next untap step.$Draw a card.|
|
||||
Hedron Alignment|Oath of the Gatewatch|57|R|{2}{U}|Enchantment|||Hexproof$At the beginning of your upkeep, you may reveal your hand. If you do, you win the game if you own a card named Hedron Alignment in exile, in your hand, in your graveyard, and on the battlefield.${1}{U}: Scry 1.|
|
||||
Jwar Isle Avernger|Oath of the Gatewatch|58|C|{4}{U}|Creature - Sphinx|3|3|Surge {2}{U} <i>(You may cast this spell for its surge cost if you or a teammate has cast another spell this turn.)</i>$Flying|
|
||||
Jwar Isle Avenger|Oath of the Gatewatch|58|C|{4}{U}|Creature - Sphinx|3|3|Surge {2}{U} <i>(You may cast this spell for its surge cost if you or a teammate has cast another spell this turn.)</i>$Flying|
|
||||
Negate|Oath of the Gatewatch|59|C|{1}{U}|Instant|||Counter target noncreature spell.|
|
||||
Oath of Jace|Oath of the Gatewatch|60|R|{2}{U}|Legendary Enchantment|||When Oath of Jace enters the battlefield, draw three cards, then discard two cards.$At the beginning of your upkeep, scry X, where X is the number of planeswalkers you control.|
|
||||
Overwhelming Denial|Oath of the Gatewatch|61|R|{2}{U}{U}|Instant|||Surge {U}{U} <i>(You may cast this spell for its surge cost if you or a teammate has cast another spell this turn.)</i>$Overwhelming Denial can't be countered by spell or abilities.$Counter target spell.|
|
||||
|
|
Loading…
Add table
Reference in a new issue