diff --git a/Mage.Sets/src/mage/cards/v/ValkiGodOfLies.java b/Mage.Sets/src/mage/cards/v/ValkiGodOfLies.java index f9f6c11ba0b..53a71f9a98d 100644 --- a/Mage.Sets/src/mage/cards/v/ValkiGodOfLies.java +++ b/Mage.Sets/src/mage/cards/v/ValkiGodOfLies.java @@ -28,7 +28,7 @@ import mage.filter.StaticFilters; import mage.filter.predicate.mageobject.ConvertedManaCostPredicate; import mage.game.ExileZone; import mage.game.Game; -import mage.game.command.emblems.TibaltCosmicImposterEmblem; +import mage.game.command.emblems.TibaltCosmicImpostorEmblem; import mage.game.events.GameEvent; import mage.game.events.ZoneChangeEvent; import mage.game.permanent.Permanent; @@ -48,7 +48,7 @@ public final class ValkiGodOfLies extends ModalDoubleFacesCard { public ValkiGodOfLies(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, new SubType[]{SubType.GOD}, "{1}{B}", - "Tibalt, Cosmic Imposter", new CardType[]{CardType.PLANESWALKER}, new SubType[]{SubType.TIBALT}, "{5}{B}{R}" + "Tibalt, Cosmic Impostor", new CardType[]{CardType.PLANESWALKER}, new SubType[]{SubType.TIBALT}, "{5}{B}{R}" ); // 1. @@ -70,7 +70,7 @@ public final class ValkiGodOfLies extends ModalDoubleFacesCard { this.getRightHalfCard().addAbility(new PlaneswalkerEntersWithLoyaltyCountersAbility(5)); // As Tibalt enters the battlefield, you get an emblem with “You may play cards exiled with Tibalt, Cosmic Impostor, and you may spend mana as though it were mana of any color to cast those spells.” - this.getRightHalfCard().addAbility(new AsEntersBattlefieldAbility(new GetEmblemEffect(new TibaltCosmicImposterEmblem()))); + this.getRightHalfCard().addAbility(new AsEntersBattlefieldAbility(new GetEmblemEffect(new TibaltCosmicImpostorEmblem()))); // +2: Exile the top card of each player’s library. this.getRightHalfCard().addAbility(new LoyaltyAbility(new ExileTopCardEachPlayersLibrary(), 2)); @@ -259,7 +259,7 @@ class ExileTopCardEachPlayersLibrary extends OneShotEffect { public ExileTopCardEachPlayersLibrary() { super(Outcome.Benefit); - this.staticText = "Exile the top card of each player’s library"; + this.staticText = "Exile the top card of each player's library"; } public ExileTopCardEachPlayersLibrary(final ExileTopCardEachPlayersLibrary effect) { diff --git a/Mage/src/main/java/mage/game/command/emblems/TibaltCosmicImposterEmblem.java b/Mage/src/main/java/mage/game/command/emblems/TibaltCosmicImpostorEmblem.java similarity index 80% rename from Mage/src/main/java/mage/game/command/emblems/TibaltCosmicImposterEmblem.java rename to Mage/src/main/java/mage/game/command/emblems/TibaltCosmicImpostorEmblem.java index 4aba4a99b39..e70af3adfb3 100644 --- a/Mage/src/main/java/mage/game/command/emblems/TibaltCosmicImposterEmblem.java +++ b/Mage/src/main/java/mage/game/command/emblems/TibaltCosmicImpostorEmblem.java @@ -18,23 +18,23 @@ import java.util.UUID; /** * @author jeffwadsworth */ -public final class TibaltCosmicImposterEmblem extends Emblem { +public final class TibaltCosmicImpostorEmblem extends Emblem { // You may play cards exiled with Tibalt, Cosmic Impostor, and you may spend mana as though it were mana of any color to cast those spells." - public TibaltCosmicImposterEmblem() { + public TibaltCosmicImpostorEmblem() { setName("Emblem Tibalt"); - this.getAbilities().add(new SimpleStaticAbility(Zone.COMMAND, new TibaltCosmicImposterPlayFromExileEffect())); + this.getAbilities().add(new SimpleStaticAbility(Zone.COMMAND, new TibaltCosmicImpostorPlayFromExileEffect())); } } -class TibaltCosmicImposterPlayFromExileEffect extends AsThoughEffectImpl { +class TibaltCosmicImpostorPlayFromExileEffect extends AsThoughEffectImpl { - TibaltCosmicImposterPlayFromExileEffect() { + TibaltCosmicImpostorPlayFromExileEffect() { super(AsThoughEffectType.PLAY_FROM_NOT_OWN_HAND_ZONE, Duration.EndOfGame, Outcome.Benefit); staticText = "You may play cards exiled with Tibalt, Cosmic Impostor, and you may spend mana as though it were mana of any color to cast those spells"; } - TibaltCosmicImposterPlayFromExileEffect(final TibaltCosmicImposterPlayFromExileEffect effect) { + TibaltCosmicImpostorPlayFromExileEffect(final TibaltCosmicImpostorPlayFromExileEffect effect) { super(effect); } @@ -44,8 +44,8 @@ class TibaltCosmicImposterPlayFromExileEffect extends AsThoughEffectImpl { } @Override - public TibaltCosmicImposterPlayFromExileEffect copy() { - return new TibaltCosmicImposterPlayFromExileEffect(this); + public TibaltCosmicImpostorPlayFromExileEffect copy() { + return new TibaltCosmicImpostorPlayFromExileEffect(this); } @Override @@ -54,7 +54,7 @@ class TibaltCosmicImposterPlayFromExileEffect extends AsThoughEffectImpl { if (tibaltEmblem == null) { return false; } - // the exile zone of the Tibalt, Cosmic Imposter that spawned the emblem only + // the exile zone of the Tibalt, Cosmic Impostor that spawned the emblem only UUID exileId = CardUtil.getExileZoneId(tibaltEmblem.getSourceObject().getId().toString(), game); if (exileId == null) { return false;