* Crib Swap - Fixed that the created token was ehite instead of colorless.

This commit is contained in:
LevelX2 2016-03-01 15:36:23 +01:00
parent f3eafd11e5
commit 0e2e4ccedd

View file

@ -39,7 +39,6 @@ import mage.constants.Outcome;
import mage.constants.Rarity;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.game.permanent.token.SpiritWhiteToken;
import mage.game.permanent.token.Token;
import mage.players.Player;
import mage.target.common.TargetCreaturePermanent;
@ -55,7 +54,6 @@ public class CribSwap extends CardImpl {
this.expansionSetCode = "LRW";
this.subtype.add("Shapeshifter");
// Changeling
this.addAbility(ChangelingAbility.getInstance());
// Exile target creature. Its controller puts a 1/1 colorless Shapeshifter creature token with changeling onto the battlefield.
@ -112,7 +110,6 @@ class CribSwapShapeshifterWhiteToken extends Token {
this.setOriginalExpansionSetCode("LRW");
cardType.add(CardType.CREATURE);
subtype.add("Shapeshifter");
color.setWhite(true);
power = new MageInt(1);
toughness = new MageInt(1);
addAbility(ChangelingAbility.getInstance());