diff --git a/Mage.Sets/src/mage/cards/g/GhostOfRamirezDePietro.java b/Mage.Sets/src/mage/cards/g/GhostOfRamirezDePietro.java index 207c59cbd5..fb3f746a14 100644 --- a/Mage.Sets/src/mage/cards/g/GhostOfRamirezDePietro.java +++ b/Mage.Sets/src/mage/cards/g/GhostOfRamirezDePietro.java @@ -18,6 +18,7 @@ import mage.filter.predicate.Predicate; import mage.filter.predicate.mageobject.ToughnessPredicate; import mage.game.Game; import mage.game.events.GameEvent; +import mage.game.events.ZoneChangeEvent; import mage.target.common.TargetCardInGraveyard; import mage.watchers.Watcher; @@ -33,7 +34,7 @@ public final class GhostOfRamirezDePietro extends CardImpl { private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("creatures with toughness 3 or greater"); private static final FilterCard filter2 - = new FilterCard("card in any graveyard that has been discarded or milled this turn"); + = new FilterCard("card in a graveyard that was discarded or put there from a library this turn"); static { filter.add(new ToughnessPredicate(ComparisonType.MORE_THAN, 2)); @@ -54,11 +55,11 @@ public final class GhostOfRamirezDePietro extends CardImpl { new CantBeBlockedByCreaturesSourceEffect(filter, Duration.WhileOnBattlefield) )); - // Whenever Ghost of Ramirez DePietro deals combat damage to a player, choose up to one target card in any graveyard that has been discarded or milled this turn. Put that card into its owner's hand. + // Whenever Ghost of Ramirez DePietro deals combat damage to a player, choose up to one target card in a graveyard that was discarded or put there from a library this turn. Put that card into its owner's hand. Ability ability = new DealsCombatDamageToAPlayerTriggeredAbility( new ReturnFromGraveyardToHandTargetEffect() - .setText("choose up to one target card in any graveyard that has been discarded " + - "or milled this turn. Put that card into its owner's hand"), + .setText("choose up to one target card in a graveyard that was discarded " + + "or put there from a library this turn. Put that card into its owner's hand"), false ); ability.addTarget(new TargetCardInGraveyard(filter2)); @@ -98,11 +99,18 @@ class GhostOfRamirezDePietroWatcher extends Watcher { @Override public void watch(GameEvent event, Game game) { - if (event.getType() == GameEvent.EventType.DISCARDED_CARD - || event.getType() == GameEvent.EventType.MILLED_CARD) { - morSet.add(new MageObjectReference(event.getTargetId(), game)); + switch (event.getType()) { + case ZONE_CHANGE: + ZoneChangeEvent zEvent = (ZoneChangeEvent) event; + if (zEvent.getFromZone() != Zone.LIBRARY + || zEvent.getToZone() != Zone.GRAVEYARD) { + break; + } + case DISCARDED_CARD: + morSet.add(new MageObjectReference(event.getTargetId(), game)); + default: + break; } - return; } @Override diff --git a/Mage.Sets/src/mage/sets/CommanderLegends.java b/Mage.Sets/src/mage/sets/CommanderLegends.java index ad4cdb0831..823b1022b8 100644 --- a/Mage.Sets/src/mage/sets/CommanderLegends.java +++ b/Mage.Sets/src/mage/sets/CommanderLegends.java @@ -31,30 +31,40 @@ public final class CommanderLegends extends ExpansionSet { cards.add(new SetCardInfo("Alena, Kessig Trapper", 160, Rarity.UNCOMMON, mage.cards.a.AlenaKessigTrapper.class)); cards.add(new SetCardInfo("Amareth, the Lustrous", 266, Rarity.RARE, mage.cards.a.AmarethTheLustrous.class)); cards.add(new SetCardInfo("Amphin Mutineer", 55, Rarity.RARE, mage.cards.a.AmphinMutineer.class)); + cards.add(new SetCardInfo("Ancestral Blade", 5, Rarity.COMMON, mage.cards.a.AncestralBlade.class)); cards.add(new SetCardInfo("Arcane Signet", 297, Rarity.UNCOMMON, mage.cards.a.ArcaneSignet.class)); cards.add(new SetCardInfo("Averna, the Chaos Bloom", 269, Rarity.RARE, mage.cards.a.AvernaTheChaosBloom.class)); cards.add(new SetCardInfo("Bladegriff Prototype", 300, Rarity.RARE, mage.cards.b.BladegriffPrototype.class)); + cards.add(new SetCardInfo("Brago, King Eternal", 516, Rarity.RARE, mage.cards.b.BragoKingEternal.class)); cards.add(new SetCardInfo("Brazen Freebooter", 164, Rarity.COMMON, mage.cards.b.BrazenFreebooter.class)); cards.add(new SetCardInfo("Briarblade Adept", 111, Rarity.COMMON, mage.cards.b.BriarbladeAdept.class)); cards.add(new SetCardInfo("Brinelin, the Moon Kraken", 60, Rarity.UNCOMMON, mage.cards.b.BrinelinTheMoonKraken.class)); + cards.add(new SetCardInfo("Cage of Hands", 14, Rarity.COMMON, mage.cards.c.CageOfHands.class)); + cards.add(new SetCardInfo("Captain's Call", 15, Rarity.COMMON, mage.cards.c.CaptainsCall.class)); cards.add(new SetCardInfo("Cast Down", 112, Rarity.UNCOMMON, mage.cards.c.CastDown.class)); cards.add(new SetCardInfo("Charcoal Diamond", 303, Rarity.COMMON, mage.cards.c.CharcoalDiamond.class)); cards.add(new SetCardInfo("Coastline Marauders", 168, Rarity.UNCOMMON, mage.cards.c.CoastlineMarauders.class)); + cards.add(new SetCardInfo("Command Beacon", 349, Rarity.RARE, mage.cards.c.CommandBeacon.class)); cards.add(new SetCardInfo("Command Tower", 350, Rarity.COMMON, mage.cards.c.CommandTower.class)); cards.add(new SetCardInfo("Commander's Sphere", 306, Rarity.COMMON, mage.cards.c.CommandersSphere.class)); cards.add(new SetCardInfo("Confiscate", 62, Rarity.UNCOMMON, mage.cards.c.Confiscate.class)); + cards.add(new SetCardInfo("Court Street Denizen", 17, Rarity.COMMON, mage.cards.c.CourtStreetDenizen.class)); cards.add(new SetCardInfo("Court of Cunning", 63, Rarity.RARE, mage.cards.c.CourtOfCunning.class)); cards.add(new SetCardInfo("Demonic Lore", 118, Rarity.UNCOMMON, mage.cards.d.DemonicLore.class)); + cards.add(new SetCardInfo("Doomed Traveler", 19, Rarity.COMMON, mage.cards.d.DoomedTraveler.class)); cards.add(new SetCardInfo("Dragon Mantle", 174, Rarity.COMMON, mage.cards.d.DragonMantle.class)); cards.add(new SetCardInfo("Emberwilde Captain", 175, Rarity.RARE, mage.cards.e.EmberwildeCaptain.class)); cards.add(new SetCardInfo("Entourage of Trest", 224, Rarity.COMMON, mage.cards.e.EntourageOfTrest.class)); cards.add(new SetCardInfo("Exquisite Huntmaster", 122, Rarity.COMMON, mage.cards.e.ExquisiteHuntmaster.class)); cards.add(new SetCardInfo("Eyeblight Cullers", 124, Rarity.COMMON, mage.cards.e.EyeblightCullers.class)); cards.add(new SetCardInfo("Farhaven Elf", 225, Rarity.COMMON, mage.cards.f.FarhavenElf.class)); + cards.add(new SetCardInfo("First Response", 22, Rarity.UNCOMMON, mage.cards.f.FirstResponse.class)); cards.add(new SetCardInfo("Fleshbag Marauder", 128, Rarity.COMMON, mage.cards.f.FleshbagMarauder.class)); cards.add(new SetCardInfo("Forceful Denial", 69, Rarity.COMMON, mage.cards.f.ForcefulDenial.class)); + cards.add(new SetCardInfo("Furnace Celebration", 181, Rarity.UNCOMMON, mage.cards.f.FurnaceCelebration.class)); cards.add(new SetCardInfo("Fyndhorn Elves", 228, Rarity.COMMON, mage.cards.f.FyndhornElves.class)); cards.add(new SetCardInfo("Ghost of Ramirez DePietro", 71, Rarity.UNCOMMON, mage.cards.g.GhostOfRamirezDePietro.class)); + cards.add(new SetCardInfo("Gift of Paradise", 229, Rarity.COMMON, mage.cards.g.GiftOfParadise.class)); cards.add(new SetCardInfo("Gor Muldrak, Amphinologist", 277, Rarity.RARE, mage.cards.g.GorMuldrakAmphinologist.class)); cards.add(new SetCardInfo("Halana, Kessig Ranger", 231, Rarity.UNCOMMON, mage.cards.h.HalanaKessigRanger.class)); cards.add(new SetCardInfo("Horizon Scholar", 73, Rarity.UNCOMMON, mage.cards.h.HorizonScholar.class)); @@ -69,7 +79,7 @@ public final class CommanderLegends extends ExpansionSet { cards.add(new SetCardInfo("Keeper of the Accord", 27, Rarity.RARE, mage.cards.k.KeeperOfTheAccord.class)); cards.add(new SetCardInfo("Kitesail Corsair", 76, Rarity.COMMON, mage.cards.k.KitesailCorsair.class)); cards.add(new SetCardInfo("Kitesail Skirmisher", 77, Rarity.COMMON, mage.cards.k.KitesailSkirmisher.class)); - cards.add(new SetCardInfo("Kor Cartographer", 377, Rarity.COMMON, mage.cards.k.KorCartographer.class)); + cards.add(new SetCardInfo("Kor Cartographer", 30, Rarity.COMMON, mage.cards.k.KorCartographer.class)); cards.add(new SetCardInfo("Krark, the Thumbless", 189, Rarity.RARE, mage.cards.k.KrarkTheThumbless.class)); cards.add(new SetCardInfo("Kydele, Chosen of Kruphix", 524, Rarity.MYTHIC, mage.cards.k.KydeleChosenOfKruphix.class)); cards.add(new SetCardInfo("Ludevic, Necro-Alchemist", 525, Rarity.MYTHIC, mage.cards.l.LudevicNecroAlchemist.class)); @@ -88,10 +98,11 @@ public final class CommanderLegends extends ExpansionSet { cards.add(new SetCardInfo("Natural Reclamation", 245, Rarity.COMMON, mage.cards.n.NaturalReclamation.class)); cards.add(new SetCardInfo("Nekusar, the Mindrazer", 529, Rarity.MYTHIC, mage.cards.n.NekusarTheMindrazer.class)); cards.add(new SetCardInfo("Ninth Bridge Patrol", 33, Rarity.COMMON, mage.cards.n.NinthBridgePatrol.class)); + cards.add(new SetCardInfo("Null Caller", 140, Rarity.UNCOMMON, mage.cards.n.NullCaller.class)); cards.add(new SetCardInfo("Nymris, Oona's Trickster", 288, Rarity.RARE, mage.cards.n.NymrisOonasTrickster.class)); cards.add(new SetCardInfo("Omenspeaker", 83, Rarity.COMMON, mage.cards.o.Omenspeaker.class)); cards.add(new SetCardInfo("Path of Ancestry", 353, Rarity.COMMON, mage.cards.p.PathOfAncestry.class)); - cards.add(new SetCardInfo("Patron of the Valiant", 1000, Rarity.UNCOMMON, mage.cards.p.PatronOfTheValiant.class)); + cards.add(new SetCardInfo("Patron of the Valiant", 37, Rarity.UNCOMMON, mage.cards.p.PatronOfTheValiant.class)); cards.add(new SetCardInfo("Phyrexian Rager", 142, Rarity.COMMON, mage.cards.p.PhyrexianRager.class)); cards.add(new SetCardInfo("Phyrexian Triniform", 331, Rarity.MYTHIC, mage.cards.p.PhyrexianTriniform.class)); cards.add(new SetCardInfo("Prava of the Steel Legion", 38, Rarity.UNCOMMON, mage.cards.p.PravaOfTheSteelLegion.class)); @@ -103,9 +114,13 @@ public final class CommanderLegends extends ExpansionSet { cards.add(new SetCardInfo("Queen Marchesa", 531, Rarity.MYTHIC, mage.cards.q.QueenMarchesa.class)); cards.add(new SetCardInfo("Radiant, Serra Archangel", 40, Rarity.UNCOMMON, mage.cards.r.RadiantSerraArchangel.class)); cards.add(new SetCardInfo("Raise the Alarm", 41, Rarity.COMMON, mage.cards.r.RaiseTheAlarm.class)); + cards.add(new SetCardInfo("Rakdos, Lord of Riots", 532, Rarity.MYTHIC, mage.cards.r.RakdosLordOfRiots.class)); + cards.add(new SetCardInfo("Ramos, Dragon Engine", 545, Rarity.MYTHIC, mage.cards.r.RamosDragonEngine.class)); cards.add(new SetCardInfo("Rebbec, Architect of Ascension", 42, Rarity.UNCOMMON, mage.cards.r.RebbecArchitectOfAscension.class)); cards.add(new SetCardInfo("Rejuvenating Springs", 354, Rarity.RARE, mage.cards.r.RejuvenatingSprings.class)); cards.add(new SetCardInfo("Reliquary Tower", 488, Rarity.UNCOMMON, mage.cards.r.ReliquaryTower.class)); + cards.add(new SetCardInfo("Return to Dust", 43, Rarity.UNCOMMON, mage.cards.r.ReturnToDust.class)); + cards.add(new SetCardInfo("Rings of Brighthearth", 335, Rarity.RARE, mage.cards.r.RingsOfBrighthearth.class)); cards.add(new SetCardInfo("Rograkh, Son of Rohgahh", 197, Rarity.UNCOMMON, mage.cards.r.RograkhSonOfRohgahh.class)); cards.add(new SetCardInfo("Run Away Together", 87, Rarity.COMMON, mage.cards.r.RunAwayTogether.class)); cards.add(new SetCardInfo("Sandstone Oracle", 336, Rarity.UNCOMMON, mage.cards.s.SandstoneOracle.class)); @@ -117,14 +132,18 @@ public final class CommanderLegends extends ExpansionSet { cards.add(new SetCardInfo("Siren Stormtamer", 96, Rarity.UNCOMMON, mage.cards.s.SirenStormtamer.class)); cards.add(new SetCardInfo("Sky Diamond", 341, Rarity.COMMON, mage.cards.s.SkyDiamond.class)); cards.add(new SetCardInfo("Slash the Ranks", 47, Rarity.RARE, mage.cards.s.SlashTheRanks.class)); + cards.add(new SetCardInfo("Soul's Fire", 200, Rarity.COMMON, mage.cards.s.SoulsFire.class)); + cards.add(new SetCardInfo("Soul's Might", 257, Rarity.COMMON, mage.cards.s.SoulsMight.class)); cards.add(new SetCardInfo("Spectator Seating", 356, Rarity.RARE, mage.cards.s.SpectatorSeating.class)); cards.add(new SetCardInfo("Staff of Domination", 343, Rarity.RARE, mage.cards.s.StaffOfDomination.class)); cards.add(new SetCardInfo("Supreme Will", 102, Rarity.UNCOMMON, mage.cards.s.SupremeWill.class)); cards.add(new SetCardInfo("Sweet-Gum Recluse", 260, Rarity.RARE, mage.cards.s.SweetGumRecluse.class)); cards.add(new SetCardInfo("Tevesh Szat, Doom of Fools", 153, Rarity.MYTHIC, mage.cards.t.TeveshSzatDoomOfFools.class)); cards.add(new SetCardInfo("Thorn of the Black Rose", 154, Rarity.COMMON, mage.cards.t.ThornOfTheBlackRose.class)); + cards.add(new SetCardInfo("Thrasios, Triton Hero", 538, Rarity.MYTHIC, mage.cards.t.ThrasiosTritonHero.class)); cards.add(new SetCardInfo("Three Visits", 261, Rarity.UNCOMMON, mage.cards.t.ThreeVisits.class)); cards.add(new SetCardInfo("Training Center", 358, Rarity.RARE, mage.cards.t.TrainingCenter.class)); + cards.add(new SetCardInfo("Tymna the Weaver", 539, Rarity.RARE, mage.cards.t.TymnaTheWeaver.class)); cards.add(new SetCardInfo("Undergrowth Stadium", 359, Rarity.RARE, mage.cards.u.UndergrowthStadium.class)); cards.add(new SetCardInfo("Valakut Invoker", 206, Rarity.COMMON, mage.cards.v.ValakutInvoker.class)); cards.add(new SetCardInfo("Vampiric Tutor", 156, Rarity.MYTHIC, mage.cards.v.VampiricTutor.class)); diff --git a/Utils/mtg-cards-data.txt b/Utils/mtg-cards-data.txt index f4e23660fc..985a9c0ea7 100644 --- a/Utils/mtg-cards-data.txt +++ b/Utils/mtg-cards-data.txt @@ -39299,29 +39299,43 @@ Bloodchief's Thirst|Zendikar Rising|388|U|{B}|Sorcery|||Kicker {2}{B}$Destroy ta Roil Eruption|Zendikar Rising|389|C|{1}{R}|Sorcery|||Kicker {5}$Roil Eruption deals 3 damage to any target. If this spell was kicked, it deals 5 damage instead.| Roiling Regrowth|Zendikar Rising|390|U|{2}{G}|Instant|||Sacrifice a land. Search your library for up to two basic land cards, put them onto the battlefield tapped, then shuffle your library.| Kargan Warleader|Zendikar Rising|391|U|{1}{R}{W}|Creature - Human Warrior|3|3|Other Warriors you control get +1/+1.| -Archon of Coronation|Commander Legends|AOC|M|{4}{W}{W}|Creature - Archon|5|5|Flying$When Archon of Coronation enters the battlefield, you become the monarch.$As long as you're the monarch, damage doesn't cause you to lose life.| -Court of Grace|Commander Legends|COG|R|{2}{W}{W}|Enchantment|||When Court of Grace enters the battlefield, you become the monarch.$At then beginning of your upkeep, create a 1/1 white Spirit creature token with flying. If you're the monarch, create a 4/4 white Angel creature token with flying instead.| -Patron of the Valiant|Commander Legends|POTV|U|{3}{W}{W}|Creature - Angel|4|4|Flying$When Patron of the Valiant enters the battlefield, put a +1/+1 counter on each creature you control with a +1/+1 counter on it.| The Prismatic Piper|Commander Legends|1|C|{5}|Legendary Creature - Shapeshifter|3|3|If The Prismatic Piper is your commander, choose a color before the game begins. The Prismatic Piper is the chosen color.$Partner| +Ancestral Blade|Commander Legends|5|C|{1}{W}|Artifact - Equipment|||When Ancestral Blade enters the battlefield, create a 1/1 white Soldier creature token, then attach Ancestral Blade to it.$Equipped creature gets +1/+1.$Equip {1}| +Archon of Coronation|Commander Legends|9|M|{4}{W}{W}|Creature - Archon|5|5|Flying$When Archon of Coronation enters the battlefield, you become the monarch.$As long as you're the monarch, damage doesn't cause you to lose life.| +Cage of Hands|Commander Legends|14|C|{2}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack or block.${1}{W}: Return Cage of Hands to its owner's hand.| +Captain's Call|Commander Legends|15|C|{3}{W}|Sorcery|||Create three 1/1 white Soldier creature tokens.| +Court of Grace|Commander Legends|16|R|{2}{W}{W}|Enchantment|||When Court of Grace enters the battlefield, you become the monarch.$At the beginning of your upkeep, create a 1/1 white Spirit creature token with flying. If you're the monarch, create a 4/4 white Angel creature token with flying instead.| +Court Street Denizen|Commander Legends|17|C|{2}{W}|Creature - Human Soldier|2|2|Whenever another white creature enters the battlefield under your control, tap target creature an opponent controls.| +Doomed Traveler|Commander Legends|19|C|{W}|Creature - Human Soldier|1|1|When Doomed Traveler dies, create a 1/1 white Spirit creature token with flying.| +First Response|Commander Legends|22|U|{3}{W}|Enchantment|||At the beginning of each upkeep, if you lost life last turn, create a 1/1 white Soldier creature token.| Keeper of the Accord|Commander Legends|27|R|{3}{W}|Creature - Human Soldier|3|4|At the beginning of each opponent's end step, if that player controls more creatures than you, create a 1/1 white Soldier creature token.$At the beginning of each opponent's end step, if that player controls more lands than you, you may search your library for a basic Plains card, put it onto the battlefield tapped, then shuffle your library.| -Livio, Oathsworn Sentinel|Commander Legends|31|R|{1}{W}|Legendary Creature - Human Knight|2|2|{1}{W}: Choose another target creature. Its controller may exile it with a divinity counter on it.${2}{W}, {T}: Return all creatures with a divinity counter on them from exile to the battlefield under their owner's control.$Partner| +Keleth, Sunmane Familiar|Commander Legends|28|U|{1}{W}|Legendary Creature - Horse|1|1|Whenever a commander you control attacks, put a +1/+1 counter on it.$Partner| +Kinsbaile Courier|Commander Legends|29|C|{2}{W}|Creature - Kithkin Soldier|2|1|When Kinsbaile Courier enters the battlefield, put a +1/+1 counter on target creature.$Encore {2}{W}| +Kor Cartographer|Commander Legends|30|C|{3}{W}|Creature - Kor Scout|2|2|When Kor Cartographer enters the battlefield, you may search your library for a Plains card, put it onto the battlefield tapped, then shuffle your library.| +Livio, Oathsworn Sentinel|Commander Legends|31|R|{1}{W}|Legendary Creature - Human Knight|2|2|{1}{W}: Choose another target creature. Its controller may exile it with an aegis counter on it.${2}{W}, {T}: Return all exiled cards with aegis counters on them to the battlefield under their owners' control.$Partner| Ninth Bridge Patrol|Commander Legends|33|C|{1}{W}|Creature - Dwarf Soldier|1|1|Whenever another creature you control leaves the battlefield, put a +1/+1 counter on Ninth Bridge Patrol.| +Patron of the Valiant|Commander Legends|37|U|{3}{W}{W}|Creature - Angel|4|4|Flying$When Patron of the Valiant enters the battlefield, put a +1/+1 counter on each creature you control with a +1/+1 counter on it.| Prava of the Steel Legion|Commander Legends|38|U|{2}{W}|Legendary Creature - Cat Soldier|1|4|As long as it's your turn, creature tokens you control get +1/+4.${3}{W}: Create a 1/1 white Soldier creature token.$Partner| +Promise of Tomorrow|Commander Legends|39|R|{2}{W}|Enchantment|||Whenever a creature you control dies, exile it.$At the beginning of each end step, if you control no creatures, sacrifice Promise of Tomorrow and return all cards exiled with it to the battlefield under your control.| Radiant, Serra Archangel|Commander Legends|40|U|{6}{W}|Legendary Creature - Angel|6|4|Flying$Tap another untapped creature you control with flying: Radiant, Serra Archangel gains protection from the color of your choice until end of turn.$Partner| Raise the Alarm|Commander Legends|41|C|{1}{W}|Instant|||Create two 1/1 white Soldier creature tokens.| Rebbec, Architect of Ascension|Commander Legends|42|U|{3}{W}|Legendary Creature - Human Artificer|3|4|Artifacts you control have protection from each converted mana cost among artifacts you control.$Partner| +Return to Dust|Commander Legends|43|U|{2}{W}{W}|Instant|||Exile target artifact or enchantment. If you cast this spell during your main phase, you may exile up to one other target artifact or enchantment.| Seraphic Greatsword|Commander Legends|45|M|{1}{W}|Artifact - Equipment|||Equipped creature gets +2/+2.$Whenever equipped creature attacks the player with the most life or tied for most life, create a 4/4 white Angel creature token with flying that's tapped and attacking that player.$Equip {4}| Slash the Ranks|Commander Legends|47|R|{3}{W}{W}|Sorcery|||Destroy all creatures and planeswalkers except for commanders.| Amphin Mutineer|Commander Legends|55|R|{3}{U}|Creature - Salamander Pirate|3|3|When Amphin Mutineer enters the battlefield, exile up to one target non-Salamander creature. That creature's controller creates a 4/3 blue Salamander Warrior creature token.$Encore {4}{U}{U}| Brinelin, the Moon Kraken|Commander Legends|60|U|{6}{U}{U}|Legendary Creature - Kraken|6|8|When Brinelin, the Moon Kraken enters the battlefield or whenever you cast a spell with converted mana cost 6 or greater, you may return target nonland permanent to its owner's hand.$Partner| Confiscate|Commander Legends|62|U|{4}{U}{U}|Enchantment - Aura|||Enchant permanent$You control enchanted permanent.| Court of Cunning|Commander Legends|63|R|{1}{U}{U}|Enchantment|||When Court of Cunning enters the battlefield, you become the monarch.$At the beginning of your upkeep, any number of target players each mill two cards. If you're the monarch, each of those players mills ten cards instead.| +Eligeth, Crossroads Augur|Commander Legends|66|R|{4}{U}{U}|Legendary Creature - Sphinx|5|6|Flying$If you would scry a number of cards, draw that many cards instead.$Partner| +Fall from Favor|Commander Legends|68|C|{2}{U}|Enchantment - Aura|||Enchant creature$When Fall from Favor enters the battlefield, tap enchanted creature and you become the monarch.$Enchanted creature doesn't untap during its controller's untap step unless that player is the monarch.| Forceful Denial|Commander Legends|69|C|{3}{U}{U}|Instant|||Cascade$Counter target spell.| -Ghost of Ramirez DePietro|Commander Legends|71|U|{2}{U}|Legendary Creature - Pirate Spirit|2|3|Ghost of Ramirez DePietro can't be blocked by creatures with toughness 3 or greater.$Whenever Ghost of Ramirez DePietro deals combat damage to a player, choose up to one target card in any graveyard that has been discarded or milled this turn. Put that card into its owner's hand.$Partner| +Ghost of Ramirez DePietro|Commander Legends|71|U|{2}{U}|Legendary Creature - Pirate Spirit|2|3|Ghost of Ramirez DePietro can't be blocked by creatures with toughness 3 or greater.$Whenever Ghost of Ramirez DePietro deals combat damage to a player, choose up to one target card in a graveyard that was discarded or put there from a library this turn. Put that card into its owner's hand.$Partner| Horizon Scholar|Commander Legends|73|U|{5}{U}|Creature - Sphinx|4|4|Flying$When Horizon Scholar enters the battlefield, scry 2.| Interpret the Signs|Commander Legends|75|U|{5}{U}|Sorcery|||Scry 3, then reveal the top card of your library. Draw cards equal to that card's converted mana cost.| Kitesail Corsair|Commander Legends|76|C|{1}{U}|Creature - Human Pirate|2|1|Kitesail Corsair has flying as long as it's attacking.| Kitesail Skirmisher|Commander Legends|77|C|{3}{U}|Creature - Human Pirate|3|1|Flying$Whenever Kitesail Skirmisher attacks, another target creature attacking the same player or planeswalker gains flying until end of turn.$Encore {4}{U}| +Laboratory Drudge|Commander Legends|78|R|{3}{U}|Creature - Zombie Horror|3|4|At the beginning of each end step, draw a card if you've cast a spell from a graveyard or activated an ability of a card in a graveyard this turn.| Malcolm, Keen-Eyed Navigator|Commander Legends|79|U|{2}{U}|Legendary Creature - Siren Pirate|2|2|Flying$Whenever one or more Pirates you control deal damage to your opponents, you create a Treasure token for each opponent dealt damage.$Partner| Merchant Raiders|Commander Legends|81|U|{3}{U}|Creature - Human Pirate|2|4|Whenever Merchant Raiders or another Pirate enters the battlefield under your control, tap up to one target creature. That creature doesn't untap during its controller's untap step for as long as you control Merchant Raiders.| Mnemonic Deluge|Commander Legends|82|M|{6}{U}{U}{U}|Sorcery|||Exile target instant or sorcery card from a graveyard. Copy that card three times. You may cast the copies without paying their mana costs. Exile Mnemonic Deluge.| @@ -39342,6 +39356,7 @@ Exquisite Huntmaster|Commander Legends|122|C|{3}{B}|Creature - Elf Warrior|4|2|W Eyeblight Cullers|Commander Legends|124|C|{4}{B}|Creature - Elf Warrior|3|3|When Eyeblight Cullers dies, create three 1/1 green Elf Warrior creature tokens, then mill three cards.| Fleshbag Marauder|Commander Legends|128|C|{2}{B}|Creature - Zombie Warrior|3|1|When Fleshbag Marauder enters the battlefield, each player sacrifices a creature.| Keskit, the Flesh Sculptor|Commander Legends|131|U|{2}{B}|Legendary Creature - Human Artificer|1|3|{T}, Sacrifice three other artifacts and/or creatures: Look at the top three cards of your library. Put two of them into your hand and the other into your graveyard.$Partner| +Null Caller|Commander Legends|140|U|{3}{B}|Creature - Vampire Shaman|2|4|{3}{B}, Exile a creature card from your graveyard: Create a tapped 2/2 black Zombie creature token.| Opposition Agent|Commander Legends|141|R|{2}{B}|Creature - Human Rogue|3|2|Flash$You control your opponents while they're searching their libraries.$While an opponent is searching their library, they exile each card they find. You may play those cards for as long as they remain exiled, and you may spend mana as though it were mana of any color to cast them.| Phyrexian Rager|Commander Legends|142|C|{2}{B}|Creature - Horror|2|2|When Phyrexian Rager enters the battlefield, you draw a card and you lose 1 life.| Profane Transfusion|Commander Legends|145|M|{6}{B}{B}{B}|Sorcery|||Two target players exchange life totals. You create an X/X colorless Horror artifact creature token, where X is the difference between those players' life totals.| @@ -39350,13 +39365,16 @@ Szat's Will|Commander Legends|152|R|{4}{B}|Instant|||Choose one. If you control Tevesh Szat, Doom of Fools|Commander Legends|153|M|{4}{B}|Legendary Planeswalker - Szat|4|+2: Create two 0/1 black Thrull creature tokens.$+1: You may sacrifice another creature or planeswalker. If you do, draw two cards, then draw another card if the sacrificed permanent was a commander.$−10: Gain control of all commanders. Put all commanders from the command zone onto the battlefield under your control.$Tevesh Szat, Doom of Fools can be your commander.$Partner| Thorn of the Black Rose|Commander Legends|154|C|{3}{B}|Creature - Human Assassin|1|3|Deathtouch$When Thorn of the Black Rose enters the battlefield, you become the monarch.| Vampiric Tutor|Commander Legends|156|M|{B}|Instant|||Search your library for a card, then shuffle your library and put that card on top of it. You lose 2 life.| +Vow of Torment|Commander Legends|159|U|{2}{B}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2, has menace, and can't attack you or a planeswalker you control.| Alena, Kessig Trapper|Commander Legends|160|U|{4}{R}|Legendary Creature - Human Scout|4|3|First strike${T}: Add an amount of {R} equal to the greatest power among creatures you control that entered the battlefield this turn.$Partner| +Aurora Phoenix|Commander Legends|161|R|{4}{R}{R}|Creature - Phoenix|5|3|Flying$Cascade$Whenever you cast a spell with cascade, return Aurora Phoenix from your graveyard to your hand.| Brazen Freebooter|Commander Legends|164|C|{3}{R}|Creature - Human Pirate|3|3|When Brazen Freebooter enters the battlefield, create a Treasure token.| Breeches, Brazen Plunderer|Commander Legends|165|U|{3}{R}|Legendary Creature - Goblin Pirate|3|3|Menace$Whenever one or more Pirates you control deal damage to your opponents, exile the top card of each of those opponents' libraries. You may play those cards this turn, and you may spend mana as though it were mana of any color to cast those spells.$Partner| Coastline Marauders|Commander Legends|168|U|{2}{R}|Creature - Human Pirate|0|3|Trample$Whenever Coastline Marauders attacks, it gets +1/+0 until end of turn for each land defending player controls.$Encore {4}{R}{R}| Dargo, the Shipwrecker|Commander Legends|172|U|{6}{R}|Legendary Creature - Giant Pirate|7|5|As an additional cost to cast this spell, you may sacrifice any number of artifacts and/or creatures. This spell costs {2} less to cast for each permanent sacrificed this way and {2} less to cast for each other artifact or creature you've sacrificed this turn.$Trample$Partner| Dragon Mantle|Commander Legends|174|C|{R}|Enchantment - Aura|||Enchant creature$When Dragon Mantle enters the battlefield, draw a card.$Enchanted creature has "{R}: This creature gets +1/+0 until end of turn."| Emberwilde Captain|Commander Legends|175|R|{3}{R}|Creature - Djinn Pirate|4|2|When Emberwilde Captain enters the battlefield, you become the monarch.$Whenever an opponent attacks you while you're the monarch, Emberwilde Captain deals damage to that player equal to the number of cards in their hand.| +Furnace Celebration|Commander Legends|181|U|{1}{R}{R}|Enchantment|||Whenever you sacrifice another permanent, you may pay {2}. If you do, Furnace Celebration deals 2 damage to any target.| Jeska, Thrice Reborn|Commander Legends|186|M|{2}{R}|Legendary Planeswalker - Jeska|0|Jeska, Thrice Reborn enters the battlefield with a loyalty counter on it for each time you've cast a commander from the command zone this game.$+0: Choose target creature. Until your next turn, if that creature would deal combat damage to one of your opponents, it deals triple that damage to that player instead.$−X: Jeska, Thrice Reborn deals X damage to each of up to three targets.$Jeska, Thrice Reborn can be your commander.$Partner| Jeska's Will|Commander Legends|187|R|{2}{R}|Sorcery|||Choose one. If you control a commander as you cast this spell, you may choose both.$• Add {R} for each card in target opponent's hand.$• Exile the top three cards of your library. You may play them this turn.| Kediss, Emberclaw Familiar|Commander Legends|188|U|{1}{R}|Legendary Creature - Elemental Lizard|1|1|Whenever a commander you control deals combat damage to an opponent, it deals that much damage to each other opponent.$Partner| @@ -39365,10 +39383,12 @@ Makeshift Munitions|Commander Legends|191|C|{1}{R}|Enchantment|||{1}, Sacrifice Meteoric Mace|Commander Legends|192|U|{4}{R}{R}|Artifact - Equipment|||Equipped creature gets +4/+0 and has trample.$Equip {4}$Cascade| Port Razer|Commander Legends|193|M|{3}{R}{R}|Creature - Orc Pirate|4|4|Whenever Port Razer deals combat damage to a player, untap each creature you control. After this combat phase, there is an additional combat phase.$Port Razer can't attack a player it has already attacked this turn.| Rograkh, Son of Rohgahh|Commander Legends|197|U|{0}|Legendary Creature - Kobold Warrior|0|1|First strike, menace, trample$Partner| +Soul's Fire|Commander Legends|200|C|{2}{R}|Instant|||Target creature you control deals damage equal to its power to any target.| Valakut Invoker|Commander Legends|206|C|{2}{R}|Creature - Human Shaman|2|3|{8}: Valakut Invoker deals 3 damage to any target.| Entourage of Trest|Commander Legends|224|C|{4}{G}|Creature - Elf Soldier|4|4|When Entourage of Trest enters the battlefield, you become the monarch.$Entourage of Trest can block an additional creature each combat as long as you're the monarch.| Farhaven Elf|Commander Legends|225|C|{2}{G}|Creature - Elf Druid|1|1|When Farhaven Elf enters the battlefield, you may search your library for a basic land card, put it onto the battlefield tapped, then shuffle your library.| Fyndhorn Elves|Commander Legends|228|C|{G}|Creature - Elf Druid|1|1|{T}: Add {G}.| +Gift of Paradise|Commander Legends|229|C|{2}{G}|Enchantment - Aura|||Enchant land$When Gift of Paradise enters the battlefield, you gain 3 life.$Enchanted land has "{T}: Add two mana of any one color."| Halana, Kessig Ranger|Commander Legends|231|U|{3}{G}|Legendary Creature - Human Archer|3|4|Reach$Whenever another creature enters the battlefield under your control, you may pay {2}. When you do, that creature deals damage equal to its power to target creature.$Partner| Hunter's Insight|Commander Legends|232|U|{2}{G}|Instant|||Choose target creature you control. Whenever that creature deals combat damage to a player or planeswalker this turn, draw that many cards.| Immaculate Magistrate|Commander Legends|234|R|{3}{G}|Creature - Elf Shaman|2|2|{T}: Put a +1/+1 counter on target creature for each Elf you control.| @@ -39378,20 +39398,28 @@ Kamahl's Will|Commander Legends|238|R|{3}{G}|Instant|||Choose one. If you contro Kodama of the East Tree|Commander Legends|239|R|{4}{G}{G}|Legendary Creature - Spirit|6|6|Reach$Whenever another permanent enters the battlefield under your control, if it wasn't put onto the battlefield with this ability, you may put a permanent card with equal or lesser converted mana cost from your hand onto the battlefield.$Partner| Magus of the Order|Commander Legends|242|R|{2}{G}{G}|Creature - Human Wizard|3|3|{G}, {T}, Sacrifice Magus of the Order and another green creature: Search your library for a green creature card and put it onto the battlefield. Then shuffle your library.| Natural Reclamation|Commander Legends|245|C|{4}{G}|Instant|||Cascade$Destroy target artifact or enchantment.| +Numa, Joraga Chieftain|Commander Legends|246|U|{2}{G}|Legendary Creature - Elf Warrior|2|2|At the beginning of combat on your turn, you may pay {X}{X}. When you do, distribute X +1/+1 counters among any number of target Elves.$Partner| +Soul's Might|Commander Legends|257|C|{4}{G}|Sorcery|||Put X +1/+1 counters on target creature, where X is that creature's power.| Sweet-Gum Recluse|Commander Legends|260|R|{4}{G}{G}|Creature - Spider|0|3|Flash$Cascade$Reach$When Sweet-Gum Recluse enters the battlefield, put three +1/+1 counters on each of any number of target creatures that entered the battlefield this turn.| Three Visits|Commander Legends|261|U|{1}{G}|Sorcery|||Search your library for a Forest card and put that card onto the battlefield. Then shuffle your library.| Amareth, the Lustrous|Commander Legends|266|R|{3}{G}{U}{W}|Legendary Creature - Dragon|6|6|Flying$Whenever another permanent enters the battlefield under your control, look at the top card of your library. If it shares a card type with that permanent, you may reveal that card and put it into your hand.| +Archelos, Lagoon Mystic|Commander Legends|268|R|{1}{B}{G}{U}|Legendary Creature - Turtle Shaman|2|4|As long as Archelos, Lagoon Mystic is tapped, other permanents enter the battlefield tapped.$As long as Archelos, Lagoon Mystic is untapped, other permanents enter the battlefield untapped.| Averna, the Chaos Bloom|Commander Legends|269|R|{G}{U}{R}|Legendary Creature - Elemental Shaman|4|2|As you cascade, you may put a land card from among the exiled cards onto the battlefield tapped.| -Belbe, Corrupted Observer|Commander Legends|270|R|{B}{G}|Legendary Creature - Zombie Elf|2|2|At the beginning of each player's postcombat main phase, that player adds {C}{C} for each of your opopnents who lost life this turn.| +Belbe, Corrupted Observer|Commander Legends|270|R|{B}{G}|Legendary Creature - Zombie Elf|2|2|At the beginning of each player's postcombat main phase, that player adds {C}{C} for each of your opponents who lost life this turn.| Blim, Comedic Genius|Commander Legends|272|R|{2}{B}{R}|Legendary Creature - Imp|4|3|Flying$Whenever Blim, Comedic Genius deals combat damage to a player, that player gains control of target permanent you control. Then each player loses life and discards cards equal to the number of permanents they control but don't own.| Colfenor, the Last Yew|Commander Legends|274|R|{3}{W}{B}{G}|Legendary Creature - Treefolk Shaman|3|7|Vigilance, reach$Whenever Colfenor, the Last Yew or another creature you control dies, return up to one other target creature card with lesser toughness from your graveyard to your hand.| +Ghen, Arcanum Weaver|Commander Legends|275|R|{R}{W}{B}|Legendary Creature - Human Wizard|2|3|{R}{W}{B}, {T}, Sacrifice an enchantment: Return target enchantment card from your graveyard to the battlefield.| Gor Muldrak, Amphinologist|Commander Legends|277|R|{1}{G}{U}|Legendary Creature - Human Scout|3|2|You and permanents you control have protection from Salamanders.$At the beginning of your end step, each player who controls the fewest creatures creates a 4/3 blue Salamander Warrior creature token.| Liesa, Shroud of Dusk|Commander Legends|286|R|{2}{W}{W}{B}|Legendary Creature - Angel|5|5|Rather than pay {2} for each previous time you've cast this spell from the command zone this game, pay 2 life that many times.$Flying, lifelink$Whenever a player casts a spell, they lose 2 life.| Nymris, Oona's Trickster|Commander Legends|288|R|{3}{U}{B}|Legendary Creature - Faerie Knight|1|6|Flash$Flying$Whenever you cast your first spell during each opponent's turn, look at the top two cards of your library. Put one of those cards into your hand and the other into your graveyard.| +Thalisse, Reverent Medium|Commander Legends|291|U|{3}{W}{B}|Legendary Creature - Human Cleric|3|4|At the beginning of each end step, create X 1/1 white Spirit creature tokens with flying, where X is the number of tokens you created this turn.| +Yurlok of Scorch Thrash|Commander Legends|293|R|{1}{B}{R}{G}|Legendary Creature - Viashino Shaman|4|4|Vigilance$A player losing unspent mana causes that player to lose that much life.${1}, {T}: Each player adds {B}{R}{G}.| +Zara, Renegade Recruiter|Commander Legends|294|R|{3}{U}{R}|Legendary Creature - Human Pirate|4|3|Flying$Whenever Zara, Renegade Recruiter attacks, look at defending player's hand. You may put a creature card from it onto the battlefield under your control tapped and attacking that palyer or a planeswalker they control. Return that creature to its owner's hand at the beginning of the next end step.| Arcane Signet|Commander Legends|297|U|{2}|Artifact|||{T}: Add one mana of any color in your commander's color identity.| Bladegriff Prototype|Commander Legends|300|R|{5}|Artifact Creature - Griffin|3|2|Flying$Whenever Bladegriff Prototype deals combat damage to a player, destroy target nonland permanent of that player's choice that one of your opponents controls.| Charcoal Diamond|Commander Legends|303|C|{2}|Artifact|||Charcoal Diamond enters the battlefield tapped.${T}: Add {B}.| Commander's Sphere|Commander Legends|306|C|{3}|Artifact|||{T}: Add one mana of any color in your commander's color identity.$Sacrifice Commander's Sphere: Draw a card.| +Horizon Stone|Commander Legends|315|R|{5}|Artifact|||If you would lose unspent mana, that mana becomes colorless instead.| Jeweled Lotus|Commander Legends|319|M|{0}|Artifact|||{T}, Sacrifice Jeweled Lotus: Add three mana of any one color. Spend this mana only to cast your commander.| Maelstrom Colossus|Commander Legends|322|C|{8}|Artifact Creature - Golem|7|7|Cascade| Marble Diamond|Commander Legends|323|C|{2}|Artifact|||Marble Diamond enters the battlefield tapped.${T}: Add {W}.| @@ -39399,10 +39427,12 @@ Mask of Memory|Commander Legends|324|U|{2}|Artifact - Equipment|||Whenever equip Mindless Automaton|Commander Legends|326|U|{4}|Artifact Creature - Construct|0|0|Mindless Automaton enters the battlefield with two +1/+1 counters on it.${1}, Discard a card: Put a +1/+1 counter on Mindless Automaton.$Remove two +1/+1 counters from Mindless Automaton: Draw a card.| Phyrexian Triniform|Commander Legends|331|M|{9}|Artifact Creature - Golem|9|9|When Phyrexian Triniform dies, create three 3/3 colorless Golem artifact creature tokens.$Encore {12}| Prophetic Prism|Commander Legends|334|C|{2}|Artifact|||When Prophetic Prism enters the battlefield, draw a card.${1}, {T}: Add one mana of any color.| +Rings of Brighthearth|Commander Legends|335|R|{3}|Artifact|||Whenever you activate an ability, if it isn't a mana ability, you may pay {2}. If you do, copy that ability. You may choose new targets for the copy.| Sandstone Oracle|Commander Legends|336|U|{7}|Artifact Creature - Sphinx|4|4|Flying$When Sandstone Oracle enters the battlefield, choose an opponent. If that player has more cards in hand than you, draw cards equal to the difference.| Scroll Rack|Commander Legends|337|M|{2}|Artifact|||{1}, {T}: Exile any number of cards from your hand face down. Put that many cards from the top of your library into your hand. Then look at the exiled cards and put them on top of your library in any order.| Sky Diamond|Commander Legends|341|C|{2}|Artifact|||Sky Diamond enters the battlefield tapped.${T}: Add {U}.| Staff of Domination|Commander Legends|343|R|{3}|Artifact|||{1}: Untap Staff of Domination.${2}, {T}: You gain 1 life.${3}, {T}: Untap target creature.${4}, {T}: Tap target creature.${5}, {T}: Draw a card.| +Command Beacon|Commander Legends|349|R||Land|||{T}: Add {C}.${T}, Sacrifice Command Beacon: Put your commander into your hand from the command zone.| Command Tower|Commander Legends|350|C||Land|||{T}: Add one mana of any color in your commander's color identity.| Path of Ancestry|Commander Legends|353|C||Land|||Path of Ancestry enters the battlefield tapped.${T}: Add one mana of any color in your commander's color identity. When that mana is spent to cast a creature spell that shares a creature type with your commander, scry 1.| Rejuvenating Springs|Commander Legends|354|R||Land|||Rejuvenating Springs enters the battlefield tapped unless you have two or more opponents.${T}: Add {G} or {U}.| @@ -39410,12 +39440,13 @@ Spectator Seating|Commander Legends|356|R||Land|||Spectator Seating enters the b Training Center|Commander Legends|358|R||Land|||Training Center enters the battlefield tapped unless you have two or more opponents.${T}: Add {U} or {R}.| Undergrowth Stadium|Commander Legends|359|R||Land|||Undergrowth Stadium enters the battlefield tapped unless you have two or more opponents.${T}: Add {B} or {G}.| Vault of Champions|Commander Legends|360|R||Land|||Vault of Champions enters the battlefield tapped unless you have two or more opponents.${T}: Add {W} or {B}.| -Kor Cartographer|Commander Legends|377|C|{3}{W}|Creature - Kor Scout|2|2|When Kor Cartographer enters the battlefield, you may search your library for a Plains card, put it onto the battlefield tapped, then shuffle your library.| +War Room|Commander Legends|361|R||Land|||{T}: Add {C}.${3}, {T}, Pay life equal to the number of colors in your commanders' color identity: Draw a card.| Mulldrifter|Commander Legends|400|U|{4}{U}|Creature - Elemental|2|2|Flying$When Mulldrifter enters the battlefield, draw two cards.$Evoke {2}{U}| Acidic Slime|Commander Legends|421|U|{3}{G}{G}|Creature - Ooze|2|2|Deathtouch$When Acidic Slime enters the battlefield, destroy target artifact, enchantment, or land.| Myriad Landscape|Commander Legends|487|U||Land|||Myriad Landscape enters the battlefield tapped.${T}: Add {C}.${2}, {T}, Sacrifice Myriad Landscape: Search your library for up to two basic land cards that share a land type, put them onto the battlefield tapped, then shuffle your library.| Reliquary Tower|Commander Legends|488|U||Land|||You have no maximum hand size.${T}: Add {C}.| Najeela, the Blade-Blossom|Commander Legends|514|M|{2}{R}|Legendary Creature - Human Warrior|3|2|Whenever a Warrior attacks, you may have its controller create a 1/1 white Warrior creature token that's tapped and attacking.${W}{U}{B}{R}{G}: Untap all attacking creatures. They gain trample, lifelink, and haste until end of turn. After this phase, there is an additional combat phase. Activate this ability only during combat.| +Brago, King Eternal|Commander Legends|516|R|{2}{W}{U}|Legendary Creature - Spirit Noble|2|4|Flying$Whenever Brago, King Eternal deals combat damage to a player, exile any number of target nonland permanents you control, then return those cards to the battlefield under their owner's control.| Ikra Shidiqi, the Usurper|Commander Legends|519|M|{3}{B}{G}|Legendary Creature - Naga Wizard|3|7|Menace$Whenever a creature you control deals combat damage to a player, you gain life equal to that creature's toughness.$Partner| Kydele, Chosen of Kruphix|Commander Legends|524|M|{2}{G}{U}|Legendary Creature - Human Wizard|2|3|{T}: Add {C} for each card you've drawn this turn.$Partner| Ludevic, Necro-Alchemist|Commander Legends|525|M|{1}{U}{R}|Legendary Creature - Human Wizard|1|4|At the beginning of each player's end step, that player may draw a card if a player other than you lost life this turn.$Partner| @@ -39423,9 +39454,13 @@ Maelstrom Wanderer|Commander Legends|526|M|{5}{G}{U}{R}|Legendary Creature - Ele Nekusar, the Mindrazer|Commander Legends|529|M|{2}{U}{B}{R}|Legendary Creature - Zombie Wizard|2|4|At the beginning of each player's draw step, that player draws an additional card.$Whenever an opponent draws a card, Nekusar, the Mindrazer deals 1 damage to that player.| Prossh, Skyraider of Kher|Commander Legends|530|M|{3}{B}{R}{G}|Legendary Creature - Dragon|5|5|When you cast this spell, create X 0/1 red Kobold creature tokens named Kobolds of Kher Keep, where X is the amount of mana spent to cast Prossh.$Flying$Sacrifice another creature: Prossh, Skyraider of Kher gets +1/+0 until end of turn.| Queen Marchesa|Commander Legends|531|M|{1}{R}{W}{B}|Legendary Creature - Human Assassin|3|3|Deathtouch, haste$When Queen Marchesa enters the battlefield, you become the monarch.$At the beginning of your upkeep, if an opponent is the monarch, create a 1/1 black Assassin creature token with deathtouch and haste.| +Rakdos, Lord of Riots|Commander Legends|532|M|{B}{B}{R}{R}|Legendary Creature - Demon|6|6|You can't cast this spell unless an opponent lost life this turn.$Flying, trample$Creature spells you cast cost {1} less to cast for each 1 life your opponents have lost this turn.| Sidar Kondo of Jamuraa|Commander Legends|535|M|{2}{G}{W}|Legendary Creature - Human Knight|2|5|Flanking$Creatures your opponents control without flying or reach can't block creatures with power 2 or less.$Partner| Silas Renn, Seeker Adept|Commander Legends|536|M|{1}{U}{B}|Legendary Artifact Creature - Human|2|2|Deathtouch$Whenever Silas Renn, Seeker Adept deals combat damage to a player, choose target artifact card in your graveyard. You may cast that card this turn.$Partner| +Thrasios, Triton Hero|Commander Legends|538|M|{G}{U}|Legendary Creature - Merfolk Wizard|1|3|{4}: Scry 1, then reveal the top card of your library. If it's a land card, put it onto the battlefield tapped. Otherwise, draw a card.$Partner| +Tymna the Weaver|Commander Legends|539|R|{1}{W}{B}|Legendary Creature - Human Cleric|2|2|Lifelink$At the beginning of your postcombat main phase, you may pay X life, where X is the number of opponents that were dealt combat damage this turn. If you do, draw X cards.$Partner| Vial Smasher the Fierce|Commander Legends|540|M|{1}{B}{R}|Legendary Creature - Goblin Berserker|2|3|Whenever you cast your first spell each turn, choose an opponent at random. Vial Smasher the Fierce deals damage equal to that spell's converted mana cost to that player or a planeswalker that player controls.$Partner| Xenagos, God of Revels|Commander Legends|541|M|{3}{R}{G}|Legendary Enchantment Creature - God|6|5|Indestructible$As long as your devotion to red and green is less than seven, Xenagos isn't a creature.$At the beginning of combat on your turn, another target creature you control gains haste and gets +X/+X until end of turn, where X is that creature's power.| Zur the Enchanter|Commander Legends|544|M|{1}{W}{U}{B}|Legendary Creature - Human Wizard|1|4|Flying$Whenever Zur the Enchanter attacks, you may search your library for an enchantment card with converted mana cost 3 or less and put it onto the battlefield. If you do, shuffle your library.| +Ramos, Dragon Engine|Commander Legends|545|M|{6}|Legendary Artifact Creature - Dragon|4|4|Flying$Whenever you cast a spell, put a +1/+1 counter on Ramos, Dragon Engine for each of that spell's colors.$Remove five +1/+1 counters from Ramos: Add {W}{W}{U}{U}{B}{B}{R}{R}{G}{G}. Activate this ability only once each turn.| Mana Confluence|Commander Legends|721|M||Land|||{T}, Pay 1 life: Add one mana of any color.|