From c1e70c307ac6d567938d4f266c6e53f8cb60bf4f Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 27 Apr 2016 23:43:35 +0200 Subject: [PATCH] * Vanishing - Fixed wrong card number. --- Mage.Sets/src/mage/sets/visions/Vanishing.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/visions/Vanishing.java b/Mage.Sets/src/mage/sets/visions/Vanishing.java index a9f06828073..39d4f316c35 100644 --- a/Mage.Sets/src/mage/sets/visions/Vanishing.java +++ b/Mage.Sets/src/mage/sets/visions/Vanishing.java @@ -49,7 +49,7 @@ import mage.target.common.TargetCreaturePermanent; public class Vanishing extends CardImpl { public Vanishing(UUID ownerId) { - super(ownerId, 39, "Vanishing", Rarity.COMMON, new CardType[]{CardType.ENCHANTMENT}, "{U}"); + super(ownerId, 48, "Vanishing", Rarity.COMMON, new CardType[]{CardType.ENCHANTMENT}, "{U}"); this.expansionSetCode = "VIS"; this.subtype.add("Aura"); @@ -59,7 +59,7 @@ public class Vanishing extends CardImpl { this.getSpellAbility().addEffect(new AttachEffect(Outcome.Detriment)); Ability ability = new EnchantAbility(auraTarget.getTargetName()); this.addAbility(ability); - + // {U}{U}: Enchanted creature phases out. this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new PhaseOutAttachedEffect(), new ManaCostsImpl("{U}{U}"))); }