mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
Tibalt, Cosmic Impostor - Fixed misspelled card name
This commit is contained in:
parent
38b2f492a2
commit
20968c299c
2 changed files with 13 additions and 13 deletions
|
@ -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) {
|
||||
|
|
|
@ -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;
|
Loading…
Reference in a new issue