From 57d5380e1d9b0c45bce527ff2b6a61d5f979d427 Mon Sep 17 00:00:00 2001 From: Jeff Wadsworth Date: Thu, 8 Aug 2019 16:37:09 -0500 Subject: [PATCH] - Fixed #5896 --- Mage.Sets/src/mage/cards/v/VolrathsShapeshifter.java | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/cards/v/VolrathsShapeshifter.java b/Mage.Sets/src/mage/cards/v/VolrathsShapeshifter.java index f55a1430a7..df5ddc0d2f 100644 --- a/Mage.Sets/src/mage/cards/v/VolrathsShapeshifter.java +++ b/Mage.Sets/src/mage/cards/v/VolrathsShapeshifter.java @@ -1,4 +1,3 @@ - package mage.cards.v; import mage.MageInt; @@ -49,6 +48,9 @@ class VolrathsShapeshifterEffect extends ContinuousEffectImpl { public VolrathsShapeshifterEffect() { super(Duration.WhileOnBattlefield, Layer.TextChangingEffects_3, SubLayer.NA, Outcome.BecomeCreature); + staticText = "As long as the top card of your graveyard is a creature card, " + + "{this} has the full text of that card and has the text \"2: Discard a card.\" " + + "({this} has that card's name, mana cost, color, types, abilities, power, and toughness.) "; } public VolrathsShapeshifterEffect(final VolrathsShapeshifterEffect effect) { @@ -65,7 +67,9 @@ class VolrathsShapeshifterEffect extends ContinuousEffectImpl { Card card = game.getPlayer(source.getControllerId()).getGraveyard().getTopCard(game); Permanent permanent = game.getPermanent(source.getSourceId()); - if (card == null || permanent == null || !card.isCreature()) { + if (card == null + || permanent == null + || !card.isCreature()) { return false; } @@ -90,7 +94,7 @@ class VolrathsShapeshifterEffect extends ContinuousEffectImpl { permanent.getSuperType().clear(); for (SuperType type : card.getSuperType()) { - permanent.addSuperType(type); + permanent.addSuperType(type); }