* The Abyss - Fixed wrong collectors number (number of Recall).

This commit is contained in:
LevelX2 2015-03-21 01:05:05 +01:00
parent da2e704f76
commit 7db82d8312

View file

@ -54,12 +54,10 @@ import mage.target.targetpointer.FixedTarget;
public class TheAbyss extends CardImpl {
public TheAbyss(UUID ownerId) {
super(ownerId, 70, "The Abyss", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{3}{B}");
super(ownerId, 34, "The Abyss", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{3}{B}");
this.expansionSetCode = "LEG";
this.supertype.add("World");
this.color.setBlack(true);
// At the beginning of each player's upkeep, destroy target nonartifact creature that player controls of his or her choice. It can't be regenerated.
this.addAbility(new TheAbyssTriggeredAbility());
}