Added a test.

This commit is contained in:
LevelX2 2015-07-23 15:58:10 +02:00
parent b169e7e6c7
commit 7d3ff0551d
6 changed files with 117 additions and 10 deletions

View file

@ -67,7 +67,6 @@ public class NissaSageAnimist extends CardImpl {
this.color.setGreen(true);
this.nightCard = true;
this.canTransform = true;
this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.LOYALTY.createInstance(3)), false));

View file

@ -32,7 +32,6 @@ import mage.constants.CardType;
import mage.constants.Rarity;
import mage.constants.Zone;
import mage.MageInt;
import mage.ObjectColor;
import mage.abilities.common.DiesCreatureTriggeredAbility;
import mage.abilities.common.SimpleActivatedAbility;
import mage.abilities.costs.common.RemoveCountersSourceCost;
@ -53,7 +52,6 @@ public class QuestForTheGravelord extends CardImpl {
super(ownerId, 108, "Quest for the Gravelord", Rarity.UNCOMMON, new CardType[]{CardType.ENCHANTMENT}, "{B}");
this.expansionSetCode = "ZEN";
// Whenever a creature dies, you may put a quest counter on Quest for the Gravelord.
this.addAbility(new DiesCreatureTriggeredAbility(new AddCountersSourceEffect(CounterType.QUEST.createInstance()), true));
// Remove three quest counters from Quest for the Gravelord and sacrifice it: Put a 5/5 black Zombie Giant creature token onto the battlefield.
@ -86,4 +84,4 @@ class ZombieToken extends Token {
power = new MageInt(5);
toughness = new MageInt(5);
}
}
}