* Conspiracy - Added Conspiracy set to XMage. Changed order of sets in deck editor set selector.

This commit is contained in:
LevelX2 2014-06-23 15:58:07 +02:00
parent a9d08ef724
commit fc95ef68f1
12 changed files with 317 additions and 38 deletions

View file

@ -20,37 +20,47 @@ public class ConstructedFormats {
private static final String[] constructedFormats = { private static final String[] constructedFormats = {
ALL, STANDARD, EXTENDED, MODERN, ALL, STANDARD, EXTENDED, MODERN,
"Commander 2013 Edition",
"* Theros Block", "Journey into Nyx", "Born of the Gods", "Theros", "* Theros Block", "Journey into Nyx", "Born of the Gods", "Theros",
"Magic 2014",
"Modern Masters",
"* Return to Ravnica Block", "Dragon's Maze", "Gatecrash", "Return to Ravnica", "* Return to Ravnica Block", "Dragon's Maze", "Gatecrash", "Return to Ravnica",
"Magic 2013", "Planechase 2012",
"* Innistrad Block", "Avacyn Restored", "Dark Ascension", "Innistrad", "* Innistrad Block", "Avacyn Restored", "Dark Ascension", "Innistrad",
"Magic 2012", "Commander", "* Scars of Mirrodin Block", "New Phyrexia", "Mirrodin Besieged", "Scars of Mirrodin",
"* Scars of Mirrodin Block", "New Phyrexia", "Mirrodin Besieged", "Scars of Mirrodin", "Magic 2011",
"* Zendikar Block", "Rise of the Eldrazi", "Worldwake", "Zendikar", "* Zendikar Block", "Rise of the Eldrazi", "Worldwake", "Zendikar",
"Magic 2010", "Planechase",
"* Shards of Alara Block", "Alara Reborn", "Conflux", "Shards of Alara", "* Shards of Alara Block", "Alara Reborn", "Conflux", "Shards of Alara",
"* Shadowmoor Block", "Shadowmoor", "Eventide", "* Shadowmoor Block", "Shadowmoor", "Eventide",
"* Lorwyn Block", "Lorwyn", "Morningtide", "* Lorwyn Block", "Lorwyn", "Morningtide",
"* Time Spiral Block", "Future Sight", "Planar Chaos", "Time Spiral", "Tenth Edition", "* Time Spiral Block", "Future Sight", "Planar Chaos", "Time Spiral",
"* Ravnica Block", "Dissension", "Guildpact", "Ravnica: City of Guilds", "* Ravnica Block", "Dissension", "Guildpact", "Ravnica: City of Guilds",
"* Kamigawa Block", "Saviors of Kamigawa", "Betrayers of Kamigawa", "Champions of Kamigawa", "Ninth Edition", "* Kamigawa Block", "Saviors of Kamigawa", "Betrayers of Kamigawa", "Champions of Kamigawa",
"* Mirrodin Block", "Fifth Dawn", "Darksteel", "Mirrodin", "* Mirrodin Block", "Fifth Dawn", "Darksteel", "Mirrodin",
"* Onslaught Block", "Scourge", "Legions", "Onslaught", "Eighth Edition", "* Onslaught Block", "Scourge", "Legions", "Onslaught",
"* Odyssey Block", "Judgment", "Torment", "Odyssey", "* Odyssey Block", "Judgment", "Torment", "Odyssey",
"* Invasion Block", "Apocalypse", "Planeshift", "Invasion", "Seventh Edition", "* Invasion Block", "Apocalypse", "Planeshift", "Invasion",
"* Masquerade Block", "Prophecy", "Nemesis", "Mercadian Masques", "* Masquerade Block", "Prophecy", "Nemesis", "Mercadian Masques",
"* Urza Block", "Urza's Destiny", "Urza's Legacy", "Urza's Saga", "Sixth Edition", "* Urza Block", "Urza's Destiny", "Urza's Legacy", "Urza's Saga",
"* Tempest Block", "Exodus", "Stronghold", "Tempest", "* Tempest Block", "Exodus", "Stronghold", "Tempest",
"* Mirage Block", "Weatherlight", "Visions", "Mirage", "Fifth Edition", "* Mirage Block", "Weatherlight", "Visions", "Mirage",
"* Ice Age Block", "Coldsnap", "Alliances", "Ice Age", "Fourth Edition", "* Ice Age Block", "Coldsnap", "Alliances", "Ice Age",
"Homelands", "Fallen Empires", "The Dark", "Legends", "Antiquities", "Arabian Nights", "Homelands", "Fallen Empires", "The Dark", "Legends", "Antiquities", "Arabian Nights",
"Magic 2014",
"Magic 2013",
"Magic 2012",
"Magic 2011",
"Magic 2010",
"Tenth Edition",
"Ninth Edition",
"Eighth Edition",
"Seventh Edition",
"Sixth Edition",
"Fifth Edition",
"Fourth Edition",
"Revised Edition", "Unlimited Edition", "Limited Edition Beta", "Limited Edition Alpha", "Revised Edition", "Unlimited Edition", "Limited Edition Beta", "Limited Edition Alpha",
"Conspiracy",
"Modern Masters",
"Commander 2013 Edition",
"Commander",
"Planechase 2012",
"Planechase",
"Portal", "Portal Second Age", "Portal Three Kingdoms", "Portal", "Portal Second Age", "Portal Three Kingdoms",
"Guru",
"Unhinged",
"Duel Decks: Elves vs. Goblins", "Duel Decks: Elves vs. Goblins",
"Duel Decks: Jace vs. Chandra", "Duel Decks: Jace vs. Chandra",
"Duel Decks: Divine vs. Demonic", "Duel Decks: Divine vs. Demonic",
@ -60,7 +70,9 @@ public class ConstructedFormats {
"Duel Decks: Ajani vs. Nicol Bolas", "Duel Decks: Ajani vs. Nicol Bolas",
"Duel Decks: Venser vs. Koth", "Duel Decks: Venser vs. Koth",
"Duel Decks: Heroes vs. Monsters", "Duel Decks: Heroes vs. Monsters",
"Duel Decks: Jace vs. Vraska" "Duel Decks: Jace vs. Vraska",
"Guru",
"Unhinged",
}; };
private ConstructedFormats() { private ConstructedFormats() {
@ -393,6 +405,9 @@ public class ConstructedFormats {
if (format.equals("Modern Masters")) { if (format.equals("Modern Masters")) {
return Arrays.asList("MMA"); return Arrays.asList("MMA");
} }
if (format.equals("Conspiracy")) {
return Arrays.asList("CNS");
}
if (format.equals("Guru")) { if (format.equals("Guru")) {
return Arrays.asList("GUR"); return Arrays.asList("GUR");
} }

View file

@ -42,7 +42,9 @@ public class GathererSets implements Iterable<DownloadJob> {
"ISD", "DKA", "AVR", "ISD", "DKA", "AVR",
"RTR", "GTC", "DGM", "RTR", "GTC", "DGM",
"MMA", "MMA",
"THS", "BNG", "JOU"}; "THS", "BNG", "JOU",
"CNS"
};
private static final HashMap<String, String> symbolsReplacements = new HashMap<>(); private static final HashMap<String, String> symbolsReplacements = new HashMap<>();
static { static {

View file

@ -16,6 +16,7 @@ public class MagicCardsImageSource implements CardImageSource {
private static final Map<String, String> setNameReplacement = new HashMap<String, String>() { private static final Map<String, String> setNameReplacement = new HashMap<String, String>() {
{ {
put("CNS", "conspiracy");
put("JOU", "journey-into-nyx"); put("JOU", "journey-into-nyx");
put("BNG", "born-of-the-gods"); put("BNG", "born-of-the-gods");
put("C13", "commander-2013-edition"); put("C13", "commander-2013-edition");

View file

@ -29,6 +29,7 @@ public class WizardCardsImageSource implements CardImageSource {
public WizardCardsImageSource() { public WizardCardsImageSource() {
sets = new HashMap<>(); sets = new HashMap<>();
setsAliases = new HashMap<>(); setsAliases = new HashMap<>();
setsAliases.put("CNS", "conspiracy/cig");
setsAliases.put("JOU", "journeyintonyx/cig"); setsAliases.put("JOU", "journeyintonyx/cig");
setsAliases.put("BNG", "bornofthegods/cig"); setsAliases.put("BNG", "bornofthegods/cig");
setsAliases.put("C13", "commander2013/cig"); setsAliases.put("C13", "commander2013/cig");

View file

@ -0,0 +1,61 @@
/*
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.sets;
import java.util.GregorianCalendar;
import mage.cards.ExpansionSet;
import mage.constants.SetType;
/**
*
* @author LevelX2
*/
public class Conspiracy extends ExpansionSet {
private static final Conspiracy fINSTANCE = new Conspiracy();
public static Conspiracy getInstance() {
return fINSTANCE;
}
private Conspiracy() {
super("Magic: The Gathering-Conspiracy", "CNS", "mage.sets.conspiracy", new GregorianCalendar(2014, 6, 6).getTime(), SetType.REPRINT);
this.hasBasicLands = false;
this.hasBoosters = true;
this.numBoosterLands = 0;
this.numBoosterCommon = 11;
this.numBoosterUncommon = 3;
this.numBoosterRare = 1;
this.ratioBoosterMythic = 8;
}
}

View file

@ -70,26 +70,25 @@ public class PutOnLibraryTargetEffect extends OneShotEffect {
@Override @Override
public boolean apply(Game game, Ability source) { public boolean apply(Game game, Ability source) {
boolean result = false; boolean result = false;
Player controller = game.getPlayer(source.getControllerId());
if (controller != null) {
for (UUID targetId : targetPointer.getTargets(game, source)) { for (UUID targetId : targetPointer.getTargets(game, source)) {
switch (game.getState().getZone(targetId)) { switch (game.getState().getZone(targetId)) {
case BATTLEFIELD: case BATTLEFIELD:
Permanent permanent = game.getPermanent(targetId); Permanent permanent = game.getPermanent(targetId);
if (permanent != null) { if (permanent != null) {
result |= permanent.moveToZone(Zone.LIBRARY, source.getId(), game, onTop); result |= controller.moveCardToLibraryWithInfo(permanent, source.getSourceId(), game, Zone.BATTLEFIELD, onTop, true);
} }
case GRAVEYARD: case GRAVEYARD:
Card card = game.getCard(targetId); Card card = game.getCard(targetId);
if (card != null) { if (card != null && game.getState().getZone(targetId).equals(Zone.GRAVEYARD)) {
for (Player player : game.getPlayers().values()) { result |= controller.moveCardToLibraryWithInfo(card, source.getSourceId(), game, Zone.GRAVEYARD, onTop, true);
if (player.getGraveyard().contains(card.getId())) {
player.getGraveyard().remove(card);
result |= card.moveToZone(Zone.LIBRARY, source.getId(), game, onTop);
}
} }
} }
} }
} }
return result; return result;
} }
@Override @Override

View file

@ -33,7 +33,7 @@ import java.util.UUID;[= if ($rarityExtended) {$OUT .= "\nimport mage.constants.
* *
* @author [=$author=] * @author [=$author=]
*/ */
public class [=$className=] extends mage.sets.[=$baseSet=].[=$baseClassName=] { public class [=$className=] extends mage.sets.[=$baseSet=].[=$className=] {
public [=$className=](UUID ownerId) { public [=$className=](UUID ownerId) {
super(ownerId); super(ownerId);

View file

@ -157,7 +157,7 @@ while ( my ($key, $value) = each(@setCards) ) {
if(-e $fileName) { if(-e $fileName) {
open (DATA, $fileName); open (DATA, $fileName);
while(my $line = <DATA>) { while(my $line = <DATA>) {
if ($line =~ /extends CardImpl<(\w+?)>/ || $line =~ /extends LevelerCard<(\w+?)>/) { if ($line =~ /extends CardImpl / || $line =~ /extends LevelerCard /) {
$vars{'baseClassName'} = $1; $vars{'baseClassName'} = $1;
$vars{'baseSet'} = $knownSets{$keySet}; $vars{'baseSet'} = $knownSets{$keySet};
@ -172,7 +172,6 @@ while ( my ($key, $value) = each(@setCards) ) {
} }
} }
} }
if($found eq 1) { if($found eq 1) {
my $result = $template->fill_in(HASH => \%vars); my $result = $template->fill_in(HASH => \%vars);
if (defined($result)) { if (defined($result)) {

View file

@ -88,6 +88,7 @@ Dark Ascension|darkascension|
Avacyn Restored|avacynrestored| Avacyn Restored|avacynrestored|
Gatecrash|gatecrash| Gatecrash|gatecrash|
Magic: The Gathering-Commander|commander| Magic: The Gathering-Commander|commander|
Magic: The Gathering-Conspiracy|conspiracy|
Commander 2013 Edition|commander2013| Commander 2013 Edition|commander2013|
Dragon's Maze|dragonsmaze| Dragon's Maze|dragonsmaze|
Modern Masters|modernmasters| Modern Masters|modernmasters|

View file

@ -23317,3 +23317,200 @@ Flurry of Horns|Journey into Nyx|96|C|{4}{R}|Sorcery|||Put two 2/3 red Minotaur
Font of Ire|Journey into Nyx|97|C|{1}{R}|Enchantment|||{3}{R}, Sacrifice Font of Ire: Font of Ire deals 5 damage to target player.| Font of Ire|Journey into Nyx|97|C|{1}{R}|Enchantment|||{3}{R}, Sacrifice Font of Ire: Font of Ire deals 5 damage to target player.|
Forgeborn Oreads|Journey into Nyx|98|U|{2}{R}{R}|Enchantment Creature - Nymph|4|2|Constellation - Whenever Forgeborn Oreads or another enchantment enters the battlefield under your control, Forgeborn Oreads deals 1 damage to target creature or player.| Forgeborn Oreads|Journey into Nyx|98|U|{2}{R}{R}|Enchantment Creature - Nymph|4|2|Constellation - Whenever Forgeborn Oreads or another enchantment enters the battlefield under your control, Forgeborn Oreads deals 1 damage to target creature or player.|
Gluttonous Cyclops|Journey into Nyx|99|C|{5}{R}|Creature - Cyclops|5|4|{5}{R}{R}: Monstrosity 3. <i>(If this creature isn't monstrous, put three +1/+1 counters on it and it becomes monstrous.)</i>| Gluttonous Cyclops|Journey into Nyx|99|C|{5}{R}|Creature - Cyclops|5|4|{5}{R}{R}: Monstrosity 3. <i>(If this creature isn't monstrous, put three +1/+1 counters on it and it becomes monstrous.)</i>|
Jetting Glasskite|Magic: The Gathering-Conspiracy|100|U|{4}{U}{U}|Creature - Spirit|4|4|Flying$Whenever Jetting Glasskite becomes the target of a spell or ability for the first time in a turn, counter that spell or ability.|
Minamo Scrollkeeper|Magic: The Gathering-Conspiracy|101|C|{1}{U}|Creature - Human Wizard|2|3|Defender$Your maximum hand size is increased by one.|
Misdirection|Magic: The Gathering-Conspiracy|102|R|{3}{U}{U}|Instant|||You may exile a blue card from your hand rather than pay Misdirection's mana cost.$Change the target of target spell with a single target.|
Plated Seastrider|Magic: The Gathering-Conspiracy|103|C|{U}{U}|Creature - Beast|1|4||
Reckless Scholar|Magic: The Gathering-Conspiracy|104|C|{2}{U}|Creature - Human Wizard|2|1|{tap}: Target player draws a card, then discards a card.|
Screaming Seahawk|Magic: The Gathering-Conspiracy|105|C|{4}{U}|Creature - Bird|2|2|Flying$When Screaming Seahawk enters the battlefield, you may search your library for a card named Screaming Seahawk, reveal it, and put it into your hand. If you do, shuffle your library.|
Shoreline Ranger|Magic: The Gathering-Conspiracy|106|C|{5}{U}|Creature - Bird Soldier|3|4|Flying$Islandcycling {2} <i>({2}, Discard this card: Search your library for an Island card, reveal it, and put it into your hand. Then shuffle your library.)</i>|
Stasis Cell|Magic: The Gathering-Conspiracy|107|C|{4}{U}|Enchantment - Aura|||Enchant creature$Enchanted creature doesn't untap during its controller's untap step.${3}{U}: Attach Stasis Cell to target creature.|
Stifle|Magic: The Gathering-Conspiracy|108|R|{U}|Instant|||Counter target activated or triggered ability. <i>(Mana abilities can't be targeted.)</i>|
Traveler's Cloak|Magic: The Gathering-Conspiracy|109|C|{2}{U}|Enchantment - Aura|||Enchant creature$As Traveler's Cloak enters the battlefield, choose a land type.$When Traveler's Cloak enters the battlefield, draw a card.$Enchanted creature has landwalk of the chosen type.|
Turn the Tide|Magic: The Gathering-Conspiracy|110|C|{1}{U}|Instant|||Creatures your opponents control get -2/-0 until end of turn.|
Wind Dancer|Magic: The Gathering-Conspiracy|111|U|{1}{U}|Creature - Faerie|1|1|Flying${tap}: Target creature gains flying until end of turn.|
Altar's Reap|Magic: The Gathering-Conspiracy|112|C|{1}{B}|Instant|||As an additional cost to cast Altar's Reap, sacrifice a creature.$Draw two cards.|
Assassinate|Magic: The Gathering-Conspiracy|113|C|{2}{B}|Sorcery|||Destroy target tapped creature.|
Ill-Gotten Gains|Magic: The Gathering-Conspiracy|114|R|{2}{B}{B}|Sorcery|||Exile Ill-Gotten Gains. Each player discards his or her hand, then returns up to three cards from his or her graveyard to his or her hand.|
Infectious Horror|Magic: The Gathering-Conspiracy|115|C|{3}{B}|Creature - Zombie Horror|2|2|Whenever Infectious Horror attacks, each opponent loses 2 life.|
Liliana's Specter|Magic: The Gathering-Conspiracy|116|C|{1}{B}{B}|Creature - Specter|2|1|Flying$When Liliana's Specter enters the battlefield, each opponent discards a card.|
Magus of the Mirror|Magic: The Gathering-Conspiracy|117|R|{4}{B}{B}|Creature - Human Wizard|4|2|{tap}, Sacrifice Magus of the Mirror: Exchange life totals with target opponent. Activate this ability only during your upkeep.|
Morkrut Banshee|Magic: The Gathering-Conspiracy|118|U|{3}{B}{B}|Creature - Spirit|4|4|Morbid - When Morkrut Banshee enters the battlefield, if a creature died this turn, target creature gets -4/-4 until end of turn.|
Necromantic Thirst|Magic: The Gathering-Conspiracy|119|C|{2}{B}{B}|Enchantment - Aura|||Enchant creature$Whenever enchanted creature deals combat damage to a player, you may return target creature card from your graveyard to your hand.|
Phage the Untouchable|Magic: The Gathering-Conspiracy|120|M|{3}{B}{B}{B}{B}|Legendary Creature - Avatar Minion|4|4|When Phage the Untouchable enters the battlefield, if you didn't cast it from your hand, you lose the game.$Whenever Phage deals combat damage to a creature, destroy that creature. It can't be regenerated.$Whenever Phage deals combat damage to a player, that player loses the game.|
Plagued Rusalka|Magic: The Gathering-Conspiracy|121|U|{B}|Creature - Spirit|1|1|{B}, Sacrifice a creature: Target creature gets -1/-1 until end of turn.|
Quag Vampires|Magic: The Gathering-Conspiracy|122|C|{B}|Creature - Vampire Rogue|1|1|Multikicker {1}{B} <i>(You may pay an additional {1}{B} any number of times as you cast this spell.)</i>$Swampwalk$Quag Vampires enters the battlefield with a +1/+1 counter on it for each time it was kicked.|
Reckless Spite|Magic: The Gathering-Conspiracy|123|U|{1}{B}{B}|Instant|||Destroy two target nonblack creatures. You lose 5 life.|
Skeletal Scrying|Magic: The Gathering-Conspiracy|124|U|{X}{B}|Instant|||As an additional cost to cast Skeletal Scrying, exile X cards from your graveyard.$You draw X cards and you lose X life.|
Smallpox|Magic: The Gathering-Conspiracy|125|U|{B}{B}|Sorcery|||Each player loses 1 life, discards a card, sacrifices a creature, then sacrifices a land.|
Stronghold Discipline|Magic: The Gathering-Conspiracy|126|C|{2}{B}{B}|Sorcery|||Each player loses 1 life for each creature he or she controls.|
Syphon Soul|Magic: The Gathering-Conspiracy|127|C|{2}{B}|Sorcery|||Syphon Soul deals 2 damage to each other player. You gain life equal to the damage dealt this way.|
Tragic Slip|Magic: The Gathering-Conspiracy|128|C|{B}|Instant|||Target creature gets -1/-1 until end of turn.$Morbid - That creature gets -13/-13 until end of turn instead if a creature died this turn.|
Twisted Abomination|Magic: The Gathering-Conspiracy|129|C|{5}{B}|Creature - Zombie Mutant|5|3|{B}: Regenerate Twisted Abomination.$Swampcycling {2} <i>({2}, Discard this card: Search your library for a Swamp card, reveal it, and put it into your hand. Then shuffle your library.)</i>|
Typhoid Rats|Magic: The Gathering-Conspiracy|130|C|{B}|Creature - Rat|1|1|Deathtouch <i>(Any amount of damage this deals to a creature is enough to destroy it.)</i>|
Unhallowed Pact|Magic: The Gathering-Conspiracy|131|C|{2}{B}|Enchantment - Aura|||Enchant creature$When enchanted creature dies, return that card to the battlefield under your control.|
Vampire Hexmage|Magic: The Gathering-Conspiracy|132|U|{B}{B}|Creature - Vampire Shaman|2|1|First strike$Sacrifice Vampire Hexmage: Remove all counters from target permanent.|
Victimize|Magic: The Gathering-Conspiracy|133|U|{2}{B}|Sorcery|||Choose two target creature cards in your graveyard. Sacrifice a creature. If you do, return the chosen cards to the battlefield tapped.|
Wakedancer|Magic: The Gathering-Conspiracy|134|C|{2}{B}|Creature - Human Shaman|2|2|Morbid - When Wakedancer enters the battlefield, if a creature died this turn, put a 2/2 black Zombie creature token onto the battlefield.|
Zombie Goliath|Magic: The Gathering-Conspiracy|135|C|{4}{B}|Creature - Zombie Giant|4|3||
Barbed Shocker|Magic: The Gathering-Conspiracy|136|U|{3}{R}|Creature - Insect|2|2|Trample, haste$Whenever Barbed Shocker deals damage to a player, that player discards all the cards in his or her hand, then draws that many cards.|
Boldwyr Intimidator|Magic: The Gathering-Conspiracy|137|U|{5}{R}{R}|Creature - Giant Warrior|5|5|Cowards can't block Warriors.${R}: Target creature becomes a Coward until end of turn.${2}{R}: Target creature becomes a Warrior until end of turn.|
Brimstone Volley|Magic: The Gathering-Conspiracy|138|C|{2}{R}|Instant|||Brimstone Volley deals 3 damage to target creature or player.$Morbid - Brimstone Volley deals 5 damage to that creature or player instead if a creature died this turn.|
Chartooth Cougar|Magic: The Gathering-Conspiracy|139|C|{5}{R}|Creature - Cat Beast|4|4|{R}: Chartooth Cougar gets +1/+0 until end of turn.$Mountaincycling {2} <i>({2}, Discard this card: Search your library for a Mountain card, reveal it, and put it into your hand. Then shuffle your library.)</i>|
Brago's Representative|Magic: The Gathering-Conspiracy|14|C|{2}{W}|Creature - Human Advisor|1|4|While voting, you get an additional vote. <i>(The votes can be for different choices or for the same choice.)</i>|
Cinder Wall|Magic: The Gathering-Conspiracy|140|C|{R}|Creature - Wall|3|3|Defender$When Cinder Wall blocks, destroy it at end of combat.|
Deathforge Shaman|Magic: The Gathering-Conspiracy|141|U|{4}{R}|Creature - Ogre Shaman|4|3|Multikicker {R} <i>(You may pay an additional {R} any number of times as you cast this spell.)</i>$When Deathforge Shaman enters the battlefield, it deals damage to target player equal to twice the number of times it was kicked.|
Flaring Flame-Kin|Magic: The Gathering-Conspiracy|142|U|{2}{R}|Creature - Elemental Warrior|2|2|As long as Flaring Flame-Kin is enchanted, it gets +2/+2, has trample, and has "{R}: Flaring Flame-Kin gets +1/+0 until end of turn."|
Flowstone Blade|Magic: The Gathering-Conspiracy|143|C|{R}|Enchantment - Aura|||Enchant creature${R}: Enchanted creature gets +1/-1 until end of turn.|
Heartless Hidetsugu|Magic: The Gathering-Conspiracy|144|R|{3}{R}{R}|Legendary Creature - Ogre Shaman|4|3|{tap}: Heartless Hidetsugu deals damage to each player equal to half that player's life total, rounded down.|
Heckling Fiends|Magic: The Gathering-Conspiracy|145|U|{2}{R}|Creature - Devil|2|2|{2}{R}: Target creature attacks this turn if able.|
Lizard Warrior|Magic: The Gathering-Conspiracy|146|C|{3}{R}|Creature - Lizard Warrior|4|2||
Mana Geyser|Magic: The Gathering-Conspiracy|147|C|{3}{R}{R}|Sorcery|||Add {R} to your mana pool for each tapped land your opponents control.|
Orcish Cannonade|Magic: The Gathering-Conspiracy|148|C|{1}{R}{R}|Instant|||Orcish Cannonade deals 2 damage to target creature or player and 3 damage to you.$Draw a card.|
Pitchburn Devils|Magic: The Gathering-Conspiracy|149|C|{4}{R}|Creature - Devil|3|3|When Pitchburn Devils dies, it deals 3 damage to target creature or player.|
Council Guardian|Magic: The Gathering-Conspiracy|15|U|{5}{W}|Creature - Giant Soldier|5|5|Will of the council - When Council Guardian enters the battlefield, starting with you, each player votes for blue, black, red, or green. Council Guardian gains protection from each color with the most votes or tied for most votes.|
Power of Fire|Magic: The Gathering-Conspiracy|150|C|{1}{R}|Enchantment - Aura|||Enchant creature$Enchanted creature has "{tap}: This creature deals 1 damage to target creature or player."|
Skitter of Lizards|Magic: The Gathering-Conspiracy|151|C|{R}|Creature - Lizard|1|1|Multikicker {1}{R} <i>(You may pay an additional {1}{R} any number of times as you cast this spell.)</i>$Haste$Skitter of Lizards enters the battlefield with a +1/+1 counter on it for each time it was kicked.|
Sulfuric Vortex|Magic: The Gathering-Conspiracy|152|R|{1}{R}{R}|Enchantment|||At the beginning of each player's upkeep, Sulfuric Vortex deals 2 damage to that player.$If a player would gain life, that player gains no life instead.|
Torch Fiend|Magic: The Gathering-Conspiracy|153|C|{1}{R}|Creature - Devil|2|1|{R}, Sacrifice Torch Fiend: Destroy target artifact.|
Trumpet Blast|Magic: The Gathering-Conspiracy|154|C|{2}{R}|Instant|||Attacking creatures get +2/+0 until end of turn.|
Uncontrollable Anger|Magic: The Gathering-Conspiracy|155|U|{2}{R}{R}|Enchantment - Aura|||Flash <i>(You may cast this spell any time you could cast an instant.)</i>$Enchant creature$Enchanted creature gets +2/+2 and attacks each turn if able.|
Vent Sentinel|Magic: The Gathering-Conspiracy|156|C|{3}{R}|Creature - Elemental|2|4|Defender${1}{R}, {tap}: Vent Sentinel deals damage to target player equal to the number of creatures with defender you control.|
Volcanic Fallout|Magic: The Gathering-Conspiracy|157|U|{1}{R}{R}|Instant|||Volcanic Fallout can't be countered.$Volcanic Fallout deals 2 damage to each creature and each player.|
Wrap in Flames|Magic: The Gathering-Conspiracy|158|C|{3}{R}|Sorcery|||Wrap in Flames deals 1 damage to each of up to three target creatures. Those creatures can't block this turn.|
Charging Rhino|Magic: The Gathering-Conspiracy|159|C|{3}{G}{G}|Creature - Rhino|4|4|Charging Rhino can't be blocked by more than one creature.|
Council's Judgment|Magic: The Gathering-Conspiracy|16|R|{1}{W}{W}|Sorcery|||Will of the council - Starting with you, each player votes for a nonland permanent you don't control. Exile each permanent with the most votes or tied for most votes.|
Copperhorn Scout|Magic: The Gathering-Conspiracy|160|C|{G}|Creature - Elf Scout|1|1|Whenever Copperhorn Scout attacks, untap each other creature you control.|
Echoing Courage|Magic: The Gathering-Conspiracy|161|C|{1}{G}|Instant|||Target creature and all other creatures with the same name as that creature get +2/+2 until end of turn.|
Elephant Guide|Magic: The Gathering-Conspiracy|162|U|{2}{G}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +3/+3.$When enchanted creature dies, put a 3/3 green Elephant creature token onto the battlefield.|
Elvish Aberration|Magic: The Gathering-Conspiracy|163|C|{5}{G}|Creature - Elf Mutant|4|5|{tap}: Add {G}{G}{G} to your mana pool.$Forestcycling {2} <i>({2}, Discard this card: Search your library for a Forest card, reveal it, and put it into your hand. Then shuffle your library.)</i>|
Exploration|Magic: The Gathering-Conspiracy|164|R|{G}|Enchantment|||You may play an additional land on each of your turns.|
Gamekeeper|Magic: The Gathering-Conspiracy|165|U|{3}{G}|Creature - Elf|2|2|When Gamekeeper dies, you may exile it. If you do, reveal cards from the top of your library until you reveal a creature card. Put that card onto the battlefield and put all other cards revealed this way into your graveyard.|
Gnarlid Pack|Magic: The Gathering-Conspiracy|166|C|{1}{G}|Creature - Beast|2|2|Multikicker {1}{G} <i>(You may pay an additional {1}{G} any number of times as you cast this spell.)</i>$Gnarlid Pack enters the battlefield with a +1/+1 counter on it for each time it was kicked.|
Howling Wolf|Magic: The Gathering-Conspiracy|167|C|{2}{G}{G}|Creature - Wolf|2|2|When Howling Wolf enters the battlefield, you may search your library for up to three cards named Howling Wolf, reveal them, and put them into your hand. If you do, shuffle your library.|
Hunger of the Howlpack|Magic: The Gathering-Conspiracy|168|C|{G}|Instant|||Put a +1/+1 counter on target creature.$Morbid - Put three +1/+1 counters on that creature instead if a creature died this turn.|
Hydra Omnivore|Magic: The Gathering-Conspiracy|169|M|{4}{G}{G}|Creature - Hydra|8|8|Whenever Hydra Omnivore deals combat damage to an opponent, it deals that much damage to each other opponent.|
Custodi Soulbinders|Magic: The Gathering-Conspiracy|17|R|{3}{W}|Creature - Human Cleric|0|0|Custodi Soulbinders enters the battlefield with X +1/+1 counters on it, where X is the number of other creatures on the battlefield.${2}{W}, Remove a +1/+1 counter from Custodi Soulbinders: Put a 1/1 white Spirit creature token with flying onto the battlefield.|
Lead the Stampede|Magic: The Gathering-Conspiracy|170|U|{2}{G}|Sorcery|||Look at the top five cards of your library. You may reveal any number of creature cards from among them and put the revealed cards into your hand. Put the rest on the bottom of your library in any order.|
Nature's Claim|Magic: The Gathering-Conspiracy|171|C|{G}|Instant|||Destroy target artifact or enchantment. Its controller gains 4 life.|
Pelakka Wurm|Magic: The Gathering-Conspiracy|172|U|{4}{G}{G}{G}|Creature - Wurm|7|7|Trample$When Pelakka Wurm enters the battlefield, you gain 7 life.$When Pelakka Wurm dies, draw a card.|
Plummet|Magic: The Gathering-Conspiracy|173|C|{1}{G}|Instant|||Destroy target creature with flying.|
Provoke|Magic: The Gathering-Conspiracy|174|C|{1}{G}|Instant|||Untap target creature you don't control. That creature blocks this turn if able.$Draw a card.|
Relic Crush|Magic: The Gathering-Conspiracy|175|U|{4}{G}|Instant|||Destroy target artifact or enchantment and up to one other target artifact or enchantment.|
Respite|Magic: The Gathering-Conspiracy|176|C|{1}{G}|Instant|||Prevent all combat damage that would be dealt this turn. You gain 1 life for each attacking creature.|
Sakura-Tribe Elder|Magic: The Gathering-Conspiracy|177|C|{1}{G}|Creature - Snake Shaman|1|1|Sacrifice Sakura-Tribe Elder: Search your library for a basic land card, put that card onto the battlefield tapped, then shuffle your library.|
Scaled Wurm|Magic: The Gathering-Conspiracy|178|C|{7}{G}|Creature - Wurm|7|6||
Sporecap Spider|Magic: The Gathering-Conspiracy|179|C|{2}{G}|Creature - Spider|1|5|Reach <i>(This creature can block creatures with flying.)</i>|
Custodi Squire|Magic: The Gathering-Conspiracy|18|C|{4}{W}|Creature - Spirit Cleric|3|3|Flying$Will of the council - When Custodi Squire enters the battlefield, starting with you, each player votes for an artifact, creature, or enchantment card in your graveyard. Return each card with the most votes or tied for most votes to your hand.|
Squirrel Nest|Magic: The Gathering-Conspiracy|180|U|{1}{G}{G}|Enchantment - Aura|||Enchant land$Enchanted land has "{tap}: Put a 1/1 green Squirrel creature token onto the battlefield."|
Terastodon|Magic: The Gathering-Conspiracy|181|R|{6}{G}{G}|Creature - Elephant|9|9|When Terastodon enters the battlefield, you may destroy up to three target noncreature permanents. For each permanent put into a graveyard this way, its controller puts a 3/3 green Elephant creature token onto the battlefield.|
Wolfbriar Elemental|Magic: The Gathering-Conspiracy|182|R|{2}{G}{G}|Creature - Elemental|4|4|Multikicker {G} <i>(You may pay an additional {G} any number of times as you cast this spell.)</i>$When Wolfbriar Elemental enters the battlefield, put a 2/2 green Wolf creature token onto the battlefield for each time it was kicked.|
Wrap in Vigor|Magic: The Gathering-Conspiracy|183|C|{1}{G}|Instant|||Regenerate each creature you control.|
Basandra, Battle Seraph|Magic: The Gathering-Conspiracy|184|R|{3}{R}{W}|Legendary Creature - Angel|4|4|Flying$Players can't cast spells during combat.${R}: Target creature attacks this turn if able.|
Decimate|Magic: The Gathering-Conspiracy|185|R|{2}{R}{G}|Sorcery|||Destroy target artifact, target creature, target enchantment, and target land.|
Dimir Doppelganger|Magic: The Gathering-Conspiracy|186|R|{1}{U}{B}|Creature - Shapeshifter|0|2|{1}{U}{B}: Exile target creature card from a graveyard. Dimir Doppelganger becomes a copy of that card and gains this ability.|
Edric, Spymaster of Trest|Magic: The Gathering-Conspiracy|187|R|{1}{G}{U}|Legendary Creature - Elf Rogue|2|2|Whenever a creature deals combat damage to one of your opponents, its controller may draw a card.|
Fires of Yavimaya|Magic: The Gathering-Conspiracy|188|U|{1}{R}{G}|Enchantment|||Creatures you control have haste.$Sacrifice Fires of Yavimaya: Target creature gets +2/+2 until end of turn.|
Mirari's Wake|Magic: The Gathering-Conspiracy|189|M|{3}{G}{W}|Enchantment|||Creatures you control get +1/+1.$Whenever you tap a land for mana, add one mana to your mana pool of any type that land produced.|
Rousing of Souls|Magic: The Gathering-Conspiracy|19|C|{2}{W}|Sorcery|||Parley - Each player reveals the top card of his or her library. For each nonland card revealed this way, you put a 1/1 white Spirit creature token with flying onto the battlefield. Then each player draws a card.|
Mortify|Magic: The Gathering-Conspiracy|190|U|{1}{W}{B}|Instant|||Destroy target creature or enchantment.|
Pernicious Deed|Magic: The Gathering-Conspiracy|191|M|{1}{B}{G}|Enchantment|||{X}, Sacrifice Pernicious Deed: Destroy each artifact, creature, and enchantment with converted mana cost X or less.|
Sky Spirit|Magic: The Gathering-Conspiracy|192|U|{1}{W}{U}|Creature - Spirit|2|2|Flying, first strike|
Spiritmonger|Magic: The Gathering-Conspiracy|193|R|{3}{B}{G}|Creature - Beast|6|6|Whenever Spiritmonger deals damage to a creature, put a +1/+1 counter on Spiritmonger.${B}: Regenerate Spiritmonger.${G}: Spiritmonger becomes the color of your choice until end of turn.|
Spontaneous Combustion|Magic: The Gathering-Conspiracy|194|U|{1}{B}{R}|Instant|||As an additional cost to cast Spontaneous Combustion, sacrifice a creature.$Spontaneous Combustion deals 3 damage to each creature.|
Wood Sage|Magic: The Gathering-Conspiracy|195|U|{G}{U}|Creature - Human Druid|1|1|{tap}: Name a creature card. Reveal the top four cards of your library and put all of them with that name into your hand. Put the rest into your graveyard.|
Altar of Dementia|Magic: The Gathering-Conspiracy|196|R|{2}|Artifact|||Sacrifice a creature: Target player puts a number of cards equal to the sacrificed creature's power from the top of his or her library into his or her graveyard.|
Deathrender|Magic: The Gathering-Conspiracy|197|R|{4}|Artifact - Equipment|||Equipped creature gets +2/+2.$Whenever equipped creature dies, you may put a creature card from your hand onto the battlefield and attach Deathrender to it.$Equip {2}|
Explorer's Scope|Magic: The Gathering-Conspiracy|198|U|{1}|Artifact - Equipment|||Whenever equipped creature attacks, look at the top card of your library. If it's a land card, you may put it onto the battlefield tapped.$Equip {1} <i>({1}: Attach to target creature you control. Equip only as a sorcery.)</i>|
Fireshrieker|Magic: The Gathering-Conspiracy|199|U|{3}|Artifact - Equipment|||Equipped creature has double strike. <i>(It deals both first-strike and regular combat damage.)</i>$Equip {2} <i>({2}: Attach to target creature you control. Equip only as a sorcery.)</i>|
Academy Elite|Magic: The Gathering-Conspiracy|20|R|{3}{U}|Creature - Human Wizard|0|0|Academy Elite enters the battlefield with X +1/+1 counters on it, where X is the number of instant and sorcery cards in all graveyards.${2}{U}, Remove a +1/+1 counter from Academy Elite: Draw a card, then discard a card.|
Galvanic Juggernaut|Magic: The Gathering-Conspiracy|200|U|{4}|Artifact Creature - Juggernaut|5|5|Galvanic Juggernaut attacks each turn if able.$Galvanic Juggernaut doesn't untap during your untap step.$Whenever another creature dies, untap Galvanic Juggernaut.|
Peace Strider|Magic: The Gathering-Conspiracy|201|U|{4}|Artifact Creature - Construct|3|3|When Peace Strider enters the battlefield, you gain 3 life.|
Reito Lantern|Magic: The Gathering-Conspiracy|202|U|{2}|Artifact|||{3}: Put target card from a graveyard on the bottom of its owner's library.|
Runed Servitor|Magic: The Gathering-Conspiracy|203|U|{2}|Artifact Creature - Construct|2|2|When Runed Servitor dies, each player draws a card.|
Silent Arbiter|Magic: The Gathering-Conspiracy|204|R|{4}|Artifact Creature - Construct|1|5|No more than one creature can attack each combat.$No more than one creature can block each combat.|
Spectral Searchlight|Magic: The Gathering-Conspiracy|205|U|{3}|Artifact|||{tap}: Choose a player. That player adds one mana of any color he or she chooses to his or her mana pool.|
Vedalken Orrery|Magic: The Gathering-Conspiracy|206|R|{4}|Artifact|||You may cast nonland cards as though they had flash.|
Warmonger's Chariot|Magic: The Gathering-Conspiracy|207|U|{2}|Artifact - Equipment|||Equipped creature gets +2/+2.$As long as equipped creature has defender, it can attack as though it didn't have defender.$Equip {3} <i>({3}: Attach to target creature you control. Equip only as a sorcery.)</i>|
Mirrodin's Core|Magic: The Gathering-Conspiracy|208|U||Land|||{tap}: Add {1} to your mana pool.${tap}: Put a charge counter on Mirrodin's Core.${tap}, Remove a charge counter from Mirrodin's Core: Add one mana of any color to your mana pool.|
Quicksand|Magic: The Gathering-Conspiracy|209|U||Land|||{tap}: Add {1} to your mana pool.${tap}, Sacrifice Quicksand: Target attacking creature without flying gets -1/-2 until end of turn.|
Marchesa's Emissary|Magic: The Gathering-Conspiracy|21|C|{3}{U}|Creature - Human Rogue|2|2|Hexproof <i>(This creature can't be the target of spells or abilities your opponents control.)</i>$Dethrone <i>(Whenever this creature attacks the player with the most life or tied for most life, put a +1/+1 counter on it.)</i>|
Reflecting Pool|Magic: The Gathering-Conspiracy|210|R||Land|||{tap}: Add to your mana pool one mana of any type that a land you control could produce.|
Marchesa's Infiltrator|Magic: The Gathering-Conspiracy|22|U|{2}{U}|Creature - Human Rogue|1|1|Dethrone <i>(Whenever this creature attacks the player with the most life or tied for most life, put a +1/+1 counter on it.)</i>$Whenever Marchesa's Infiltrator deals combat damage to a player, draw a card.|
Muzzio, Visionary Architect|Magic: The Gathering-Conspiracy|23|M|{1}{U}{U}|Legendary Creature - Human Artificer|1|3|{3}{U}, {tap}: Look at the top X cards of your library, where X is the highest converted mana cost among artifacts you control. You may reveal an artifact card from among them and put it onto the battlefield. Put the rest on the bottom of your library in any order.|
Plea for Power|Magic: The Gathering-Conspiracy|24|R|{3}{U}|Sorcery|||Will of the council - Starting with you, each player votes for time or knowledge. If time gets more votes, take an extra turn after this one. If knowledge gets more votes or the vote is tied, draw three cards.|
Split Decision|Magic: The Gathering-Conspiracy|25|U|{1}{U}|Instant|||Will of the council - Choose target instant or sorcery spell. Starting with you, each player votes for denial or duplication. If denial gets more votes, counter the spell. If duplication gets more votes or the vote is tied, copy the spell. You may choose new targets for the copy.|
Bite of the Black Rose|Magic: The Gathering-Conspiracy|26|U|{3}{B}|Sorcery|||Will of the council - Starting with you, each player votes for sickness or psychosis. If sickness gets more votes, creatures your opponents control get -2/-2 until end of turn. If psychosis gets more votes or the vote is tied, each opponent discards two cards.|
Drakestown Forgotten|Magic: The Gathering-Conspiracy|27|R|{4}{B}|Creature - Zombie|0|0|Drakestown Forgotten enters the battlefield with X +1/+1 counters on it, where X is the number of creature cards in all graveyards.${2}{B}, Remove a +1/+1 counter from Drakestown Forgotten: Target creature gets -1/-1 until end of turn.|
Grudge Keeper|Magic: The Gathering-Conspiracy|28|C|{1}{B}|Creature - Zombie Wizard|2|1|Whenever players finish voting, each opponent who voted for a choice you didn't vote for loses 2 life.|
Reign of the Pit|Magic: The Gathering-Conspiracy|29|R|{4}{B}{B}|Sorcery|||Each player sacrifices a creature. Put an X/X black Demon creature token with flying onto the battlefield, where X is the total power of the creatures sacrificed this way.|
Tyrant's Choice|Magic: The Gathering-Conspiracy|30|C|{1}{B}|Sorcery|||Will of the council - Starting with you, each player votes for death or torture. If death gets more votes, each opponent sacrifices a creature. If torture gets more votes or the vote is tied, each opponent loses 4 life.|
Enraged Revolutionary|Magic: The Gathering-Conspiracy|31|C|{2}{R}|Creature - Human Warrior|2|1|Dethrone <i>(Whenever this creature attacks the player with the most life or tied for most life, put a +1/+1 counter on it.)</i>|
Grenzo's Cutthroat|Magic: The Gathering-Conspiracy|32|C|{1}{R}|Creature - Goblin Rogue|1|1|First strike$Dethrone <i>(Whenever this creature attacks the player with the most life or tied for most life, put a +1/+1 counter on it.)</i>|
Grenzo's Rebuttal|Magic: The Gathering-Conspiracy|33|R|{4}{R}{R}|Sorcery|||Put a 4/4 red Ogre creature token onto the battlefield. Starting with you, each player chooses an artifact, a creature, and a land from among the permanents controlled by the player to his or her left. Destroy each permanent chosen this way.|
Ignition Team|Magic: The Gathering-Conspiracy|34|R|{5}{R}{R}|Creature - Goblin Warrior|0|0|Ignition Team enters the battlefield with X +1/+1 counters on it, where X is the number of tapped lands on the battlefield.${2}{R}, Remove a +1/+1 counter from Ignition Team: Target land becomes a 4/4 red Elemental creature until end of turn. It's still a land.|
Scourge of the Throne|Magic: The Gathering-Conspiracy|35|M|{4}{R}{R}|Creature - Dragon|5|5|Flying$Dethrone <i>(Whenever this creature attacks the player with the most life or tied for most life, put a +1/+1 counter on it.)</i>$Whenever Scourge of the Throne attacks for the first time each turn, if it's attacking the player with the most life or tied for most life, untap all attacking creatures. After this phase, there is an additional combat phase.|
Treasonous Ogre|Magic: The Gathering-Conspiracy|36|U|{3}{R}|Creature - Ogre Shaman|2|3|Dethrone <i>(Whenever this creature attacks the player with the most life or tied for most life, put a +1/+1 counter on it.)</i>$Pay 3 life: Add {R} to your mana pool.|
Predator's Howl|Magic: The Gathering-Conspiracy|37|U|{3}{G}|Instant|||Put a 2/2 green Wolf creature token onto the battlefield.$Morbid - Put three 2/2 green Wolf creature tokens onto the battlefield instead if a creature died this turn.|
Realm Seekers|Magic: The Gathering-Conspiracy|38|R|{4}{G}{G}|Creature - Elf Scout|0|0|Realm Seekers enters the battlefield with X +1/+1 counters on it, where X is the total number of cards in all players' hands.${2}{G}, Remove a +1/+1 counter from Realm Seekers: Search your library for a land card, reveal it, put it into your hand, then shuffle your library.|
Selvala's Charge|Magic: The Gathering-Conspiracy|39|U|{4}{G}|Sorcery|||Parley - Each player reveals the top card of his or her library. For each nonland card revealed this way, you put a 3/3 green Elephant creature token onto the battlefield. Then each player draws a card.|
Selvala's Enforcer|Magic: The Gathering-Conspiracy|40|C|{3}{G}|Creature - Elf Warrior|2|2|Parley - When Selvala's Enforcer enters the battlefield, each player reveals the top card of his or her library. For each nonland card revealed this way, put a +1/+1 counter on Selvala's Enforcer. Then each player draws a card.|
Brago, King Eternal|Magic: The Gathering-Conspiracy|41|R|{2}{W}{U}|Legendary Creature - Spirit|2|4|Flying$When 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.|
Dack Fayden|Magic: The Gathering-Conspiracy|42|M|{1}{U}{R}|Planeswalker - Dack|||+1: Target player draws two cards, then discards two cards.$-2: Gain control of target artifact.$-6: You get an emblem with "Whenever you cast a spell that targets one or more permanents, gain control of those permanents."|
Dack's Duplicate|Magic: The Gathering-Conspiracy|43|R|{2}{U}{R}|Creature - Shapeshifter|0|0|You may have Dack's Duplicate enter the battlefield as a copy of any creature on the battlefield except it gains haste and dethrone. <i>(Whenever it attacks the player with the most life or tied for most life, put a +1/+1 counter on it.)</i>|
Deathreap Ritual|Magic: The Gathering-Conspiracy|44|U|{2}{B}{G}|Enchantment|||Morbid - At the beginning of each end step, if a creature died this turn, you may draw a card.|
Extract from Darkness|Magic: The Gathering-Conspiracy|45|U|{3}{U}{B}|Sorcery|||Each player puts the top two cards of his or her library into his or her graveyard. Then put a creature card from a graveyard onto the battlefield under your control.|
Flamewright|Magic: The Gathering-Conspiracy|46|U|{R}{W}|Creature - Human Artificer|1|1|{1}, {tap}: Put a 1/1 colorless Construct artifact creature token with defender onto the battlefield.${tap}, Sacrifice a creature with defender: Flamewright deals 1 damage to target creature or player.|
Grenzo, Dungeon Warden|Magic: The Gathering-Conspiracy|47|R|{X}{B}{R}|Legendary Creature - Goblin Rogue|2|2|Grenzo, Dungeon Warden enters the battlefield with X +1/+1 counters on it.${2}: Put the bottom card of your library into your graveyard. If it's a creature card with power less than or equal to Grenzo's power, put it onto the battlefield.|
Magister of Worth|Magic: The Gathering-Conspiracy|48|R|{4}{W}{B}|Creature - Angel|4|4|Flying$Will of the council - When Magister of Worth enters the battlefield, starting with you, each player votes for grace or condemnation. If grace gets more votes, each player returns each creature card from his or her graveyard to the battlefield. If condemnation gets more votes or the vote is tied, destroy all creatures other than Magister of Worth.|
Marchesa, the Black Rose|Magic: The Gathering-Conspiracy|49|M|{1}{U}{B}{R}|Legendary Creature - Human Wizard|3|3|Dethrone <i>(Whenever this creature attacks the player with the most life or tied for most life, put a +1/+1 counter on it.)</i>$Other creatures you control have dethrone.$Whenever a creature you control with a +1/+1 counter on it dies, return that card to the battlefield under your control at the beginning of the next end step.|
Marchesa's Smuggler|Magic: The Gathering-Conspiracy|50|U|{U}{R}|Creature - Human Rogue|1|1|Dethrone <i>(Whenever this creature attacks the player with the most life or tied for most life, put a +1/+1 counter on it.)</i>${1}{U}{R}: Target creature you control gains haste until end of turn and can't be blocked this turn.|
Selvala, Explorer Returned|Magic: The Gathering-Conspiracy|51|R|{1}{G}{W}|Legendary Creature - Elf Scout|2|4|Parley - {tap}: Each player reveals the top card of his or her library. For each nonland card revealed this way, add {G} to your mana pool and you gain 1 life. Then each player draws a card.|
Woodvine Elemental|Magic: The Gathering-Conspiracy|52|U|{4}{G}{W}|Creature - Elemental|4|4|Trample$Parley - Whenever Woodvine Elemental attacks, each player reveals the top card of his or her library. For each nonland card revealed this way, attacking creatures you control get +1/+1 until end of turn. Then each player draws a card.|
AEther Searcher|Magic: The Gathering-Conspiracy|53|R|{7}|Artifact Creature - Construct|6|4|Reveal &AElig;ther Searcher as you draft it. Reveal the next card you draft and note its name.$When &AElig;ther Searcher enters the battlefield, you may search your hand and/or library for a card with a name noted as you drafted cards named &AElig;ther Searcher. You may cast it without paying its mana cost. If you searched your library this way, shuffle it.|
Agent of Acquisitions|Magic: The Gathering-Conspiracy|54|U|{2}|Artifact Creature - Construct|2|1|Draft Agent of Acquisitions face up.$Instead of drafting a card from a booster pack, you may draft each card in that booster pack, one at a time. If you do, turn Agent of Acquisitions face down and you can't draft cards for the rest of this draft round. <i>(You may look at booster packs passed to you.)</i>|
Canal Dredger|Magic: The Gathering-Conspiracy|55|R|{4}|Artifact Creature - Construct|1|5|Draft Canal Dredger face up.$Each player passes the last card from each booster pack to a player who drafted a card named Canal Dredger.${tap}: Put target card from your graveyard on the bottom of your library.|
Coercive Portal|Magic: The Gathering-Conspiracy|56|M|{4}|Artifact|||Will of the council - At the beginning of your upkeep, starting with you, each player votes for carnage or homage. If carnage gets more votes, sacrifice Coercive Portal and destroy all nonland permanents. If homage gets more votes or the vote is tied, draw a card.|
Cogwork Grinder|Magic: The Gathering-Conspiracy|57|R|{6}|Artifact Creature - Construct|0|0|Draft Cogwork Grinder face up.$As you draft a card, you may remove it from the draft face down. <i>(Those cards aren't in your card pool.)</i>$Cogwork Grinder enters the battlefield with X +1/+1 counters on it, where X is the number of cards you removed from the draft with cards named Cogwork Grinder.|
Cogwork Librarian|Magic: The Gathering-Conspiracy|58|C|{4}|Artifact Creature - Construct|3|3|Draft Cogwork Librarian face up.$As you draft a card, you may draft an additional card from that booster pack. If you do, put Cogwork Librarian into that booster pack.|
Cogwork Spy|Magic: The Gathering-Conspiracy|59|C|{3}|Artifact Creature - Bird Construct|2|1|Reveal Cogwork Spy as you draft it. You may look at the next card drafted from this booster pack.$Flying|
Cogwork Tracker|Magic: The Gathering-Conspiracy|60|U|{4}|Artifact Creature - Hound Construct|4|4|Reveal Cogwork Tracker as you draft it and note the player who passed it to you.$Cogwork Tracker attacks each turn if able.$Cogwork Tracker attacks a player you noted for cards named Cogwork Tracker each turn if able.|
Deal Broker|Magic: The Gathering-Conspiracy|61|R|{3}|Artifact Creature - Construct|2|3|Draft Deal Broker face up.$Immediately after the draft, you may reveal a card in your card pool. Each other player may offer you one card in his or her card pool in exchange. You may accept any one offer.${tap}: Draw a card, then discard a card.|
Lore Seeker|Magic: The Gathering-Conspiracy|62|R|{2}|Artifact Creature - Construct|2|2|Reveal Lore Seeker as you draft it. After you draft Lore Seeker, you may add a booster pack to the draft. <i>(Your next pick is from that booster pack. Pass it to the next player and it's drafted this draft round.)</i>|
Lurking Automaton|Magic: The Gathering-Conspiracy|63|C|{5}|Artifact Creature - Construct|0|0|Reveal Lurking Automaton as you draft it and note how many cards you've drafted this draft round, including Lurking Automaton.$Lurking Automaton enters the battlefield with X +1/+1 counters on it, where X is the highest number you noted for cards named Lurking Automaton.|
Whispergear Sneak|Magic: The Gathering-Conspiracy|64|C|{1}|Artifact Creature - Construct|1|1|Draft Whispergear Sneak face up.$During the draft, you may turn Whispergear Sneak face down. If you do, look at any unopened booster pack in the draft or any booster pack not being looked at by another player.|
Paliano, the High City|Magic: The Gathering-Conspiracy|65|R||Legendary Land|||Reveal Paliano, the High City as you draft it. The player to your right chooses a color, you choose another color, then the player to your left chooses a third color.${tap}: Add one mana to your mana pool of any color chosen as you drafted cards named Paliano, the High City.|
Ajani's Sunstriker|Magic: The Gathering-Conspiracy|66|C|{W}{W}|Creature - Cat Cleric|2|2|Lifelink <i>(Damage dealt by this creature also causes you to gain that much life.)</i>|
Apex Hawks|Magic: The Gathering-Conspiracy|67|C|{2}{W}|Creature - Bird|2|2|Multikicker {1}{W} <i>(You may pay an additional {1}{W} any number of times as you cast this spell.)</i>$Flying$Apex Hawks enters the battlefield with a +1/+1 counter on it for each time it was kicked.|
Courier Hawk|Magic: The Gathering-Conspiracy|68|C|{1}{W}|Creature - Bird|1|2|Flying, vigilance|
Doomed Traveler|Magic: The Gathering-Conspiracy|69|C|{W}|Creature - Human Soldier|1|1|When Doomed Traveler dies, put a 1/1 white Spirit creature token with flying onto the battlefield.|
Glimmerpoint Stag|Magic: The Gathering-Conspiracy|70|U|{2}{W}{W}|Creature - Elk|3|3|Vigilance$When Glimmerpoint Stag enters the battlefield, exile another target permanent. Return that card to the battlefield under its owner's control at the beginning of the next end step.|
Guardian Zendikon|Magic: The Gathering-Conspiracy|71|C|{2}{W}|Enchantment - Aura|||Enchant land$Enchanted land is a 2/6 white Wall creature with defender. It's still a land.$When enchanted land dies, return that card to its owner's hand.|
Intangible Virtue|Magic: The Gathering-Conspiracy|72|U|{1}{W}|Enchantment|||Creature tokens you control get +1/+1 and have vigilance.|
Kor Chant|Magic: The Gathering-Conspiracy|73|C|{2}{W}|Instant|||All damage that would be dealt this turn to target creature you control by a source of your choice is dealt to another target creature instead.|
Moment of Heroism|Magic: The Gathering-Conspiracy|74|C|{1}{W}|Instant|||Target creature gets +2/+2 and gains lifelink until end of turn. <i>(Damage dealt by the creature also causes its controller to gain that much life.)</i>|
Noble Templar|Magic: The Gathering-Conspiracy|75|C|{5}{W}|Creature - Human Cleric Soldier|3|6|Vigilance$Plainscycling {2} <i>({2}, Discard this card: Search your library for a Plains card, reveal it, and put it into your hand. Then shuffle your library.)</i>|
Pillarfield Ox|Magic: The Gathering-Conspiracy|76|C|{3}{W}|Creature - Ox|2|4||
Pride Guardian|Magic: The Gathering-Conspiracy|77|C|{W}|Creature - Cat Monk|0|3|Defender$Whenever Pride Guardian blocks, you gain 3 life.|
Pristine Angel|Magic: The Gathering-Conspiracy|78|M|{4}{W}{W}|Creature - Angel|4|4|Flying$As long as Pristine Angel is untapped, it has protection from artifacts and from all colors.$Whenever you cast a spell, you may untap Pristine Angel.|
Reya Dawnbringer|Magic: The Gathering-Conspiracy|79|R|{6}{W}{W}{W}|Legendary Creature - Angel|4|6|Flying$At the beginning of your upkeep, you may return target creature card from your graveyard to the battlefield.|
Rout|Magic: The Gathering-Conspiracy|80|R|{3}{W}{W}|Sorcery|||You may cast Rout any time you could cast an instant if you pay {2} more to cast it.$Destroy all creatures. They can't be regenerated.|
Silverchase Fox|Magic: The Gathering-Conspiracy|81|C|{1}{W}|Creature - Fox|2|2|{1}{W}, Sacrifice Silverchase Fox: Exile target enchantment.|
Soulcatcher|Magic: The Gathering-Conspiracy|82|U|{1}{W}|Creature - Bird Soldier|1|1|Flying$Whenever a creature with flying dies, put a +1/+1 counter on Soulcatcher.|
Stave Off|Magic: The Gathering-Conspiracy|83|C|{W}|Instant|||Target creature gains protection from the color of your choice until end of turn.|
Swords to Plowshares|Magic: The Gathering-Conspiracy|84|U|{W}|Instant|||Exile target creature. Its controller gains life equal to its power.|
Unquestioned Authority|Magic: The Gathering-Conspiracy|85|U|{2}{W}|Enchantment - Aura|||Enchant creature$When Unquestioned Authority enters the battlefield, draw a card.$Enchanted creature has protection from creatures.|
Valor Made Real|Magic: The Gathering-Conspiracy|86|C|{W}|Instant|||Target creature can block any number of creatures this turn.|
Vow of Duty|Magic: The Gathering-Conspiracy|87|U|{2}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2, has vigilance, and can't attack you or a planeswalker you control.|
Wakestone Gargoyle|Magic: The Gathering-Conspiracy|88|U|{3}{W}|Creature - Gargoyle|3|4|Defender, flying${1}{W}: Creatures you control with defender can attack this turn as though they didn't have defender.|
AEther Tradewinds|Magic: The Gathering-Conspiracy|89|C|{2}{U}|Instant|||Return target permanent you control and target permanent you don't control to their owners' hands.|
Air Servant|Magic: The Gathering-Conspiracy|90|U|{4}{U}|Creature - Elemental|4|3|Flying${2}{U}: Tap target creature with flying.|
Brainstorm|Magic: The Gathering-Conspiracy|91|C|{U}|Instant|||Draw three cards, then put two cards from your hand on top of your library in any order.|
Breakthrough|Magic: The Gathering-Conspiracy|92|U|{X}{U}|Sorcery|||Draw four cards, then choose X cards in your hand and discard the rest.|
Compulsive Research|Magic: The Gathering-Conspiracy|93|C|{2}{U}|Sorcery|||Target player draws three cards. Then that player discards two cards unless he or she discards a land card.|
Crookclaw Transmuter|Magic: The Gathering-Conspiracy|94|C|{3}{U}|Creature - Bird Wizard|3|1|Flash <i>(You may cast this spell any time you could cast an instant.)</i>$Flying$When Crookclaw Transmuter enters the battlefield, switch target creature's power and toughness until end of turn.|
Dream Fracture|Magic: The Gathering-Conspiracy|95|C|{1}{U}{U}|Instant|||Counter target spell. Its controller draws a card.$Draw a card.|
Enclave Elite|Magic: The Gathering-Conspiracy|96|C|{2}{U}|Creature - Merfolk Soldier|2|2|Multikicker {1}{U} <i>(You may pay an additional {1}{U} any number of times as you cast this spell.)</i>$Islandwalk$Enclave Elite enters the battlefield with a +1/+1 counter on it for each time it was kicked.|
Fact or Fiction|Magic: The Gathering-Conspiracy|97|U|{3}{U}|Instant|||Reveal the top five cards of your library. An opponent separates those cards into two piles. Put one pile into your hand and the other into your graveyard.|
Favorable Winds|Magic: The Gathering-Conspiracy|98|U|{1}{U}|Enchantment|||Creatures you control with flying get +1/+1.|
Grixis Illusionist|Magic: The Gathering-Conspiracy|99|C|{U}|Creature - Human Wizard|1|1|{tap}: Target land you control becomes the basic land type of your choice until end of turn.|

View file

@ -69,6 +69,7 @@ Magic 2012|M12|
Magic 2013|M13| Magic 2013|M13|
Magic 2014|M14| Magic 2014|M14|
Magic: The Gathering-Commander|CMD| Magic: The Gathering-Commander|CMD|
Magic: The Gathering-Conspiracy|CNS|
Masters Edition II|ME2| Masters Edition II|ME2|
Masters Edition III|ME3| Masters Edition III|ME3|
Masters Edition IV|ME4| Masters Edition IV|ME4|

View file

@ -35,6 +35,8 @@ git log e484da4028e6c0498bbcd76b83af39bca93d26b1..HEAD --diff-filter=A --name-st
since 1.3.0-2014-05-30v1 since 1.3.0-2014-05-30v1
git log 99a60c3063521551ab08c506386729f1feaee257..HEAD --diff-filter=A --name-status | sed -ne "s/^A[^u]Mage.Sets\/src\/mage\/sets\///p" | sort > added_cards.txt git log 99a60c3063521551ab08c506386729f1feaee257..HEAD --diff-filter=A --name-status | sed -ne "s/^A[^u]Mage.Sets\/src\/mage\/sets\///p" | sort > added_cards.txt
since 1.3.0-2014-06-15
git log 6c8b818d890e9e0ce4bc5e3128249bb9e62c0b23..HEAD --diff-filter=A --name-status | sed -ne "s/^A[^u]Mage.Sets\/src\/mage\/sets\///p" | sort > added_cards.txt
3. Copy added_cards.txt to trunk\Utils folder 3. Copy added_cards.txt to trunk\Utils folder