Updated some Media Inserts set information and added some reprints

This commit is contained in:
fireshoes 2015-01-13 02:28:56 -06:00
parent 0a1a5b5c49
commit 89a991156d
13 changed files with 502 additions and 1 deletions

View file

@ -94,6 +94,7 @@ public class ConstructedFormats {
"Guru",
"Judge Promo",
"Launch Party",
"Media Inserts",
"Unhinged",
"World Magic Cup Qualifier",
};
@ -463,6 +464,9 @@ public class ConstructedFormats {
if (format.equals("Launch Party")) {
return Arrays.asList("MLP");
}
if (format.equals("Media Inserts")) {
return Arrays.asList("MBP");
}
if (format.equals("World Magic Cup Qualifier")) {
return Arrays.asList("WMCQ");
}

View file

@ -16,6 +16,7 @@ public class MagicCardsImageSource implements CardImageSource {
private static final Map<String, String> setNameTokenReplacement = new HashMap<String, String>() {
{
put("MBP","media-inserts");
put("MLP", "launch-party");
put("WMCQ", "world-magic-cup-qualifier");
put("GPX", "grand-prix");

View file

@ -1,3 +1,10 @@
#|Generate|TOK:MBP:Beast|
#|Generate|TOK:MBP|Cat|
#|Generate|TOK:MBP|Dragon|
#|Generate|TOK:MBP|Elephant|
#|Generate|TOK:MBP|Goblin|
#|Generate|TOK:MBP|Zombie|
$|Generate|TOK:MLP|Thopter|
#|Generate|TOK:WMCQ|Angel|

View file

@ -0,0 +1,54 @@
/*
* 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.mediainserts;
import java.util.UUID;
import mage.constants.Rarity;
/**
*
* @author fireshoes
*/
public class CelestialColonnade extends mage.sets.worldwake.CelestialColonnade {
public CelestialColonnade(UUID ownerId) {
super(ownerId);
this.cardNumber = 23;
this.expansionSetCode = "MBP";
this.rarity = Rarity.SPECIAL;
}
public CelestialColonnade(final CelestialColonnade card) {
super(card);
}
@Override
public CelestialColonnade copy() {
return new CelestialColonnade(this);
}
}

View file

@ -0,0 +1,52 @@
/*
* 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.mediainserts;
import java.util.UUID;
/**
*
* @author fireshoes
*/
public class Duress extends mage.sets.magic2010.Duress {
public Duress(UUID ownerId) {
super(ownerId);
this.cardNumber = 84;
this.expansionSetCode = "MBP";
}
public Duress(final Duress card) {
super(card);
}
@Override
public Duress copy() {
return new Duress(this);
}
}

View file

@ -0,0 +1,54 @@
/*
* 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.mediainserts;
import java.util.UUID;
import mage.constants.Rarity;
/**
*
* @author fireshoes
*/
public class GiantBadger extends mage.sets.eighthedition.GiantBadger {
public GiantBadger(UUID ownerId) {
super(ownerId);
this.cardNumber = 8;
this.expansionSetCode = "MBP";
this.rarity = Rarity.SPECIAL;
}
public GiantBadger(final GiantBadger card) {
super(card);
}
@Override
public GiantBadger copy() {
return new GiantBadger(this);
}
}

View file

@ -0,0 +1,54 @@
/*
* 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.mediainserts;
import java.util.UUID;
import mage.constants.Rarity;
/**
*
* @author fireshoes
*/
public class LightningHounds extends mage.sets.mercadianmasques.LightningHounds {
public LightningHounds(UUID ownerId) {
super(ownerId);
this.cardNumber = 10;
this.expansionSetCode = "MBP";
this.rarity = Rarity.SPECIAL;
}
public LightningHounds(final LightningHounds card) {
super(card);
}
@Override
public LightningHounds copy() {
return new LightningHounds(this);
}
}

View file

@ -0,0 +1,54 @@
/*
* 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.mediainserts;
import java.util.UUID;
import mage.constants.Rarity;
/**
*
* @author fireshoes
*/
public class SpinedWurm extends mage.sets.tenth.SpinedWurm {
public SpinedWurm(UUID ownerId) {
super(ownerId);
this.cardNumber = 11;
this.expansionSetCode = "MBP";
this.rarity = Rarity.SPECIAL;
}
public SpinedWurm(final SpinedWurm card) {
super(card);
}
@Override
public SpinedWurm copy() {
return new SpinedWurm(this);
}
}

View file

@ -0,0 +1,62 @@
/*
* 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.mediainserts;
import java.util.UUID;
import mage.MageInt;
import mage.abilities.keyword.VigilanceAbility;
import mage.cards.CardImpl;
import mage.constants.CardType;
import mage.constants.Rarity;
/**
*
* @author fireshoes
*/
public class WindseekerCentaur extends CardImpl {
public WindseekerCentaur(UUID ownerId) {
super(ownerId, 7, "Windseeker Centaur", Rarity.SPECIAL, new CardType[]{CardType.CREATURE}, "{1}{R}{R}");
this.expansionSetCode = "MBP";
this.subtype.add("Centaur");
this.power = new MageInt(2);
this.toughness = new MageInt(2);
// Vigilance
this.addAbility(VigilanceAbility.getInstance());
}
public WindseekerCentaur(final WindseekerCentaur card) {
super(card);
}
@Override
public WindseekerCentaur copy() {
return new WindseekerCentaur(this);
}
}

View file

@ -0,0 +1,54 @@
/*
* 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.mediainserts;
import java.util.UUID;
import mage.constants.Rarity;
/**
*
* @author fireshoes
*/
public class XathridNecromancer extends mage.sets.magic2014.XathridNecromancer {
public XathridNecromancer(UUID ownerId) {
super(ownerId);
this.cardNumber = 91;
this.expansionSetCode = "MBP";
this.rarity = Rarity.SPECIAL;
}
public XathridNecromancer(final XathridNecromancer card) {
super(card);
}
@Override
public XathridNecromancer copy() {
return new XathridNecromancer(this);
}
}

View file

@ -66,6 +66,7 @@ Magic 2013|magic2013|
Magic 2014|magic2014|
Magic 2015|magic2015|
Magic: The Gathering-Commander|commander|
Media Inserts|mediainserts|
Magic: The Gathering-Conspiracy|conspiracy|
Mercadian Masques|mercadianmasques|
Mirage|mirage|

View file

@ -25403,3 +25403,106 @@ Mountain|Fate Reforged|182|L||Basic Land - Mountain||||
Mountain|Fate Reforged|183|L||Basic Land - Mountain||||
Forest|Fate Reforged|184|L||Basic Land - Forest||||
Forest|Fate Reforged|185|L||Basic Land - Forest||||
Arena|Media Inserts|1|Special||Land|||{3}, {tap}: Tap target creature you control and target creature of an opponent's choice he or she controls. Those creatures fight each other. <i>(Each deals damage equal to its power to the other.)</i>|
Sewers of Estark|Media Inserts|2|Special|{2}{B}{B}|Instant|||Choose target creature. If it's attacking, it's unblockable this turn. If it's blocking, prevent all combat damage that would be dealt this combat by it and each creature it's blocking.|
Nalathni Dragon|Media Inserts|3|Special|{2}{R}{R}|Creature - Dragon|1|1|Flying; banding <i>(Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are blocking or being blocked by a creature, you divide that creature's combat damage, not its controller, among any of the creatures it's being blocked by or is blocking.)</i>${R}: Nalathni Dragon gets +1/+0 until end of turn. If this ability has been activated four or more times this turn, sacrifice Nalathni Dragon at the beginning of the next end step.|
Fireball|Media Inserts|4|U|{X}{R}|Sorcery|||Fireball deals X damage divided evenly, rounded down, among any number of target creatures and/or players.$Fireball costs {1} more to cast for each target beyond the first.|
Blue Elemental Blast|Media Inserts|5|Special|{U}|Instant|||Choose one - Counter target red spell; or destroy target red permanent.|
Mana Crypt|Media Inserts|6|Special|{0}|Artifact|||At the beginning of your upkeep, flip a coin. If you lose the flip, Mana Crypt deals 3 damage to you.${tap}: Add {2} to your mana pool.|
Windseeker Centaur|Media Inserts|7|Special|{1}{R}{R}|Creature - Centaur|2|2|Vigilance|
Giant Badger|Media Inserts|8|Special|{1}{G}{G}|Creature - Badger|2|2|Whenever Giant Badger blocks, it gets +2/+2 until end of turn.|
Scent of Cinder|Media Inserts|9|Special|{1}{R}|Sorcery|||Reveal any number of red cards in your hand. Scent of Cinder deals X damage to target creature or player, where X is the number of cards revealed this way.|
Lightning Hounds|Media Inserts|10|Special|{2}{R}{R}|Creature - Hound|3|2|First strike|
Spined Wurm|Media Inserts|11|Special|{4}{G}|Creature - Wurm|5|4||
Warmonger|Media Inserts|12|Special|{3}{R}|Creature - Minotaur Monger|3|3|{2}: Warmonger deals 1 damage to each creature without flying and each player. Any player may activate this ability.|
Silver Drake|Media Inserts|13|Special|{1}{W}{U}|Creature - Drake|3|3|Flying$When Silver Drake enters the battlefield, return a white or blue creature you control to its owner's hand.|
Phyrexian Rager|Media Inserts|14|Special|{2}{B}|Creature - Horror|2|2|When Phyrexian Rager enters the battlefield, you draw a card and you lose 1 life.|
Jace Beleren|Media Inserts|15|Special|{1}{U}{U}|Planeswalker - Jace|||+2: Each player draws a card.$-1: Target player draws a card.$-10: Target player puts the top twenty cards of his or her library into his or her graveyard.|
Garruk Wildspeaker|Media Inserts|16|Special|{2}{G}{G}|Planeswalker - Garruk|||+1: Untap two target lands.$-1: Put a 3/3 green Beast creature token onto the battlefield.$-4: Creatures you control get +3/+3 and gain trample until end of turn.|
Brion Stoutarm|Media Inserts|17|Special|{2}{R}{W}|Legendary Creature - Giant Warrior|4|4|Lifelink${R}, {tap}, Sacrifice a creature other than Brion Stoutarm: Brion Stoutarm deals damage equal to the sacrificed creature's power to target player.|
Jaya Ballard, Task Mage|Media Inserts|18|Special|{1}{R}{R}|Legendary Creature - Human Spellshaper|2|2|{R}, {tap}, Discard a card: Destroy target blue permanent.${1}{R}, {tap}, Discard a card: Jaya Ballard, Task Mage deals 3 damage to target creature or player. A creature dealt damage this way can't be regenerated this turn.${5}{R}{R}, {tap}, Discard a card: Jaya Ballard deals 6 damage to each creature and each player.|
Broodmate Dragon|Media Inserts|19|R|{3}{B}{R}{G}|Creature - Dragon|4|4|Flying$When Broodmate Dragon enters the battlefield, put a 4/4 red Dragon creature token with flying onto the battlefield.|
Honor of the Pure|Media Inserts|20|Special|{1}{W}|Enchantment|||White creatures you control get +1/+1.|
Steward of Valeron|Media Inserts|21|Special|{G}{W}|Creature - Human Druid Knight|2|2|Vigilance${tap}: Add {G} to your mana pool.|
Day of Judgment|Media Inserts|22|Special|{2}{W}{W}|Sorcery|||Destroy all creatures.|
Celestial Colonnade|Media Inserts|23|Special||Land|||Celestial Colonnade enters the battlefield tapped.${tap}: Add {W} or {U} to your mana pool.${3}{W}{U}: Until end of turn, Celestial Colonnade becomes a 4/4 white and blue Elemental creature with flying and vigilance. It's still a land.|
Retaliator Griffin|Media Inserts|24|Special|{1}{R}{G}{W}|Creature - Griffin|2|2|Flying$Whenever a source an opponent controls deals damage to you, you may put that many +1/+1 counters on Retaliator Griffin.|
Kor Skyfisher|Media Inserts|25|Special|{1}{W}|Creature - Kor Soldier|2|3|Flying$When Kor Skyfisher enters the battlefield, return a permanent you control to its owner's hand.|
Guul Draz Assassin|Media Inserts|26|Special|{B}|Creature - Vampire Assassin|1|1|Level up {1}{B} <i>({1}{B}: Put a level counter on this. Level up only as a sorcery.)</i>$LEVEL 2-3$2/2${B}, {tap}: Target creature gets -2/-2 until end of turn.$LEVEL 4+$4/4${B}, {tap}: Target creature gets -4/-4 until end of turn.|
Nissa Revane|Media Inserts|27|Special|{2}{G}{G}|Planeswalker - Nissa|||+1: Search your library for a card named Nissa's Chosen and put it onto the battlefield. Then shuffle your library.$+1: You gain 2 life for each Elf you control.$-7: Search your library for any number of Elf creature cards and put them onto the battlefield. Then shuffle your library.|
Birds of Paradise|Media Inserts|28|Special|{G}|Creature - Bird|0|1|Flying${tap}: Add one mana of any color to your mana pool.|
Memoricide|Media Inserts|29|Special|{3}{B}|Sorcery|||Name a nonland card. Search target player's graveyard, hand, and library for any number of cards with that name and exile them. Then that player shuffles his or her library.|
Liliana Vess|Media Inserts|30|Special|{3}{B}{B}|Planeswalker - Liliana||5|+1: Target player discards a card.$-2: Search your library for a card, then shuffle your library and put that card on top of it.$-8: Put all creature cards from all graveyards onto the battlefield under your control.|
Bloodthrone Vampire|Media Inserts|31|Special|{1}{B}|Creature - Vampire|1|1|Sacrifice a creature: Bloodthrone Vampire gets +2/+2 until end of turn.|
Mirran Crusader|Media Inserts|32|Special|{1}{W}{W}|Creature - Human Knight|2|2|Double strike, protection from black and from green|
Surgical Extraction|Media Inserts|33|Special|{BP}|Instant|||<i>({BP} can be paid with either {B} or 2 life.)</i>$Choose target card in a graveyard other than a basic land card. Search its owner's graveyard, hand, and library for any number of cards with the same name as that card and exile them. Then that player shuffles his or her library.|
Frost Titan|Media Inserts|34|Special|{4}{U}{U}|Creature - Giant|6|6|Whenever Frost Titan becomes the target of a spell or ability an opponent controls, counter that spell or ability unless its controller pays {2}.$Whenever Frost Titan enters the battlefield or attacks, tap target permanent. It doesn't untap during its controller's next untap step.|
Grave Titan|Media Inserts|35|Special|{4}{B}{B}|Creature - Giant|6|6|Deathtouch$Whenever Grave Titan enters the battlefield or attacks, put two 2/2 black Zombie creature tokens onto the battlefield.|
Inferno Titan|Media Inserts|36|Special|{4}{R}{R}|Creature - Giant|6|6|{R}: Inferno Titan gets +1/+0 until end of turn.$Whenever Inferno Titan enters the battlefield or attacks, it deals 3 damage divided as you choose among one, two, or three target creatures and/or players.|
Chandra's Phoenix|Media Inserts|37|R|{1}{R}{R}|Creature - Phoenix|2|2|Flying, haste$Whenever an opponent is dealt damage by a red instant or sorcery spell you control or by a red planeswalker you control, return Chandra's Phoenix from your graveyard to your hand.|
Treasure Hunt|Media Inserts|38|Special|{1}{U}|Sorcery|||Reveal cards from the top of your library until you reveal a nonland card, then put all cards revealed this way into your hand.|
Faithless Looting|Media Inserts|39|Special|{R}|Sorcery|||Draw two cards, then discard two cards.$Flashback {2}{R} <i>(You may cast this card from your graveyard for its flashback cost. Then exile it.)</i>|
Devil's Play|Media Inserts|40|Special|{X}{R}|Sorcery|||Devil's Play deals X damage to target creature or player.$Flashback {X}{R}{R}{R} <i>(You may cast this card from your graveyard for its flashback cost. Then exile it.)</i>|
Gravecrawler|Media Inserts|41|Special|{B}|Creature - Zombie|2|1|Gravecrawler can't block.$You may cast Gravecrawler from your graveyard as long as you control a Zombie.|
Electrolyze|Media Inserts|42|Special|{1}{U}{R}|Instant|||Electrolyze deals 2 damage divided as you choose among one or two target creatures and/or players.$Draw a card.|
Feast of Blood|Media Inserts|43|U|{1}{B}|Sorcery|||Cast Feast of Blood only if you control two or more Vampires.$Destroy target creature. You gain 4 life.|
Silverblade Paladin|Media Inserts|44|Special|{1}{W}{W}|Creature - Human Knight|2|2|Soulbond <i>(You may pair this creature with another unpaired creature when either enters the battlefield. They remain paired for as long as you control both of them.)</i>$As long as Silverblade Paladin is paired with another creature, both creatures have double strike.|
Merfolk Mesmerist|Media Inserts|45|Special|{1}{U}|Creature - Merfolk Wizard|1|2|{U}, {tap}: Target player puts the top two cards of his or her library into his or her graveyard.|
Knight Exemplar|Media Inserts|46|Special|{1}{W}{W}|Creature - Human Knight|2|2|First strike <i>(This creature deals combat damage before creatures without first strike.)</i>$Other Knight creatures you control get +1/+1 and are indestructible. <i>(Lethal damage and effects that say "destroy" don't destroy them.)</i>|
Sunblast Angel|Media Inserts|47|Special|{4}{W}{W}|Creature - Angel|4|5|Flying$When Sunblast Angel enters the battlefield, destroy all tapped creatures.|
Serra Avatar|Media Inserts|48|Special|{4}{W}{W}{W}|Creature - Avatar|*|*|Serra Avatar's power and toughness are each equal to your life total.$When Serra Avatar is put into a graveyard from anywhere, shuffle it into its owner's library.|
Primordial Hydra|Media Inserts|49|Special|{X}{G}{G}|Creature - Hydra|0|0|Primordial Hydra enters the battlefield with X +1/+1 counters on it.$At the beginning of your upkeep, double the number of +1/+1 counters on Primordial Hydra.$Primordial Hydra has trample as long as it has ten or more +1/+1 counters on it.|
Vampire Nocturnus|Media Inserts|50|Special|{1}{B}{B}{B}|Creature - Vampire|3|3|Play with the top card of your library revealed.$As long as the top card of your library is black, Vampire Nocturnus and other Vampire creatures you control get +2/+1 and have flying.|
Cathedral of War|Media Inserts|51|Special||Land|||Cathedral of War enters the battlefield tapped.$Exalted <i>(Whenever a creature you control attacks alone, that creature gets +1/+1 until end of turn.)</i>${tap}: Add {1} to your mana pool.|
Terastodon|Media Inserts|52|Special|{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.|
Arrest|Media Inserts|53|C|{2}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack or block, and its activated abilities can't be activated.|
Consume Spirit|Media Inserts|54|Special|{X}{1}{B}|Sorcery|||Spend only black mana on X.$Consume Spirit deals X damage to target creature or player and you gain X life.|
Dreg Mangler|Media Inserts|55|Special|{1}{B}{G}|Creature - Plant Zombie|3|3|Haste$Scavenge {3}{B}{G} <i>({3}{B}{G}, Exile this card from your graveyard: Put a number of +1/+1 counters equal to this card's power on target creature. Scavenge only as a sorcery.)</i>|
Supreme Verdict|Media Inserts|56|R|{1}{W}{W}{U}|Sorcery|||Supreme Verdict can't be countered.$Destroy all creatures.|
Standstill|Media Inserts|57|Special|{1}{U}|Enchantment|||When a player casts a spell, sacrifice Standstill. If you do, each of that player's opponents draws three cards.|
Breath of Malfegor|Media Inserts|58|Special|{3}{B}{R}|Instant|||Breath of Malfegor deals 5 damage to each opponent.|
Angel of Glory's Rise|Media Inserts|59|Special|{5}{W}{W}|Creature - Angel|4|6|Flying$When Angel of Glory's Rise enters the battlefield, exile all Zombies, then return all Human creature cards from your graveyard to the battlefield.|
Turnabout|Media Inserts|60|Special|{2}{U}{U}|Instant|||Choose artifact, creature, or land. Tap all untapped permanents of the chosen type target player controls, or untap all tapped permanents of that type that player controls.|
Nightveil Specter|Media Inserts|61|Special|{UB}{UB}{UB}|Creature - Specter|2|3|Flying$Whenever Nightveil Specter deals combat damage to a player, that player exiles the top card of his or her library.$You may play cards exiled with Nightveil Specter.|
Voidmage Husher|Media Inserts|62|Special|{3}{U}|Creature - Human Wizard|2|2|Flash <i>(You may cast this spell any time you could cast an instant.)</i>$When Voidmage Husher enters the battlefield, counter target activated ability. <i>(Mana abilities can't be targeted.)</i>$Whenever you cast a spell, you may return Voidmage Husher to its owner's hand.|
Ogre Arsonist|Media Inserts|63|Special|{4}{R}|Creature - Ogre|3|3|When Ogre Arsonist enters the battlefield, destroy target land.|
Corrupt|Media Inserts|64|Special|{5}{B}|Sorcery|||Corrupt deals damage equal to the number of Swamps you control to target creature or player. You gain life equal to the damage dealt this way.|
Chandra's Fury|Media Inserts|65|Special|{4}{R}|Instant|||Chandra's Fury deals 4 damage to target player and 1 damage to each creature that player controls.|
Render Silent|Media Inserts|66|Special|{W}{U}{U}|Instant|||Counter target spell. Its controller can't cast spells this turn.|
Ratchet Bomb|Media Inserts|67|Special|{2}|Artifact|||{T}: Put a charge counter on Ratchet Bomb.${T}, Sacrifice Ratchet Bomb: Destroy each nonland permanent with converted mana cost equal to the number of charge counters on Ratchet Bomb.|
Bonescythe Sliver|Media Inserts|68|Special|{3}{W}|Creature - Sliver|2|2|Sliver creatures you control have double strike.|
Ogre Battledriver|Media Inserts|69|Special|{2}{R}{R}|Creature - Ogre Warrior|3|3|Whenever another creature enters the battlefield under your control, that creature gets +2/+0 and gains haste until end of turn. <i>(It can attack and {tap} this turn.)</i>|
Scavenging Ooze|Media Inserts|70|Special|{1}{G}|Creature - Ooze|2|2|{G}: Exile target card from a graveyard. If it was a creature card, put a +1/+1 counter on Scavenging Ooze and you gain 1 life.|
Hamletback Goliath|Media Inserts|71|Special|{6}{R}|Creature - Giant Warrior|6|6|Whenever another creature enters the battlefield, you may put X +1/+1 counters on Hamletback Goliath, where X is that creature's power.|
Ajani, Caller of the Pride|Media Inserts|72|Special|{1}{W}{W}|Planeswalker - Ajani|4|+1: Put a +1/+1 counter on up to one target creature.$-3: Target creature gains flying and double strike until end of turn.$-8: Put X 2/2 white Cat creature tokens onto the battlefield, where X is your life total.|
Jace, Memory Adept|Meda Inserts|73|Special|{3}{U}{U}|Planeswalker - Jace|4|+1: Draw a card. Target player puts the top card of his or her library into his or her graveyard.$0: Target player puts the top ten cards of his or her library into his or her graveyard.$-7: Any number of target players each draw twenty cards.|
Liliana of the Dark Realms|Media Inserts|74|Special|{2}{B}{B}|Planeswalker - Liliana|3|+1: Search your library for a Swamp card, reveal it, and put it into your hand. Then shuffle your library.$-3: Target creature gets +X/+X or -X/-X until end of turn, where X is the number of Swamps you control.$-6: You get an emblem with "Swamps you control have Tap: Add {B}{B}{B}{B} to your mana pool.'"|
Chandra, Pyromaster|Media Inserts|75|Special|{2}{R}{R}|Planeswalker - Chandra||4|+1: Chandra, Pyromaster deals 1 damage to target player and 1 damage to up to one target creature that player controls. That creature can't block this turn.$0: Exile the top card of your library. You may play it this turn.$-7: Exile the top ten cards of your library. Choose an instant or sorcery card exiled this way and copy it three times. You may cast the copies without paying their mana costs.|
Garruk, Caller of Beasts|Media Inserts|76|Special|{4}{G}{G}|Planeswalker - Garruk|4|+1: Reveal the top 5 cards of your library. Put all creature cards revealed this way into your hand and the rest on the bottom of your library in any order.$-3: You may put a green creature card from your hand onto the battlefield.$-7: You get an emblem with "Whenever you cast a creature spell, you may search your library for a creature card, put it onto the battlefield, then shuffle your library."|
Sylvan Caryatid|Media Inserts|77|Special|{1}{G}|Creature - Plant|0|3|Defender, hexproof${tap}: Add one mana of any color to your mana pool.|
Karametra's Acolyte|Media Inserts|78|Special|{3}{G}|Creature - Human Druid|1|4|{tap}: Add an amount of {G} to your mana pool equal to your devotion to green. <i>(Each {G} in the mana costs of permanents you control counts toward your devotion to green.)</i>|
Fated Conflagration|Media Inserts|79|R|{1}{R}{R}{R}|Instant|||Fated Conflagration deals 5 damage to target creature or planewalker. If it's your turn, scry 2.|
High Tide|Media Inserts|80|Special|{U}|Instant|||Until end of turn, whenever a player taps an Island for mana, that player adds {U} to his or her mana pool <i>(in addition to the mana the land produces)</i>.|
Gaze of Granite|Media Inserts|81|R|{X}{B}{B}{G}|Sorcery|||Destroy each nonland permanent with converted mana cost X or less.|
Wash Out|Media Inserts|82|Special|{3}{U}|Sorcery|||Return all permanents of the color of your choice to their owners' hands.|
Acquire|Media Inserts|83|Special|{3}{U}{U}|Sorcery|||Search target opponent's library for an artifact card and put that card onto the battlefield under your control. Then that player shuffles his or her library.|
Duress|Media Inserts|84|C|{B}|Sorcery|||Target opponent reveals his or her hand. You choose a noncreature, nonland card from it. That player discards that card.|
Eidolon of Blossoms|Media Inserts|85|Special|{2}{G}{G}|Enchantment Creature - Spirit|2|2|Constellation - Whenever Eidolon of Blossoms or another enchantment enters the battlefield under your control, draw a card.|
Magister of Worth|Media Inserts|86|Special|{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.|
Soul of Ravnica|Media Inserts|87|Special|{4}{U}{U}|Creature - Avatar|6|6|Flying${5}{U}{U}: Draw a card for each color among permanents you control.${5}{U}{U}, Exile Soul of Ravnica from your graveyard: Draw a card for each color among permanents you control.|
Soul of Zendikar|Mmedia Inserts|88|Special|{4}{G}{G}|Creature - Avatar|6|6|Reach${3}{G}{G}: Put a 3/3 green Beast creature token onto the battlefield.${3}{G}{G}, Exile Soul of Zendikar from your graveyard: Put a 3/3 green Beast creature token onto the battlefield.|
Stealer of Secrets|Media Inserts|89|Special|{2}{U}|Creature - Human Rogue|2|2|Whenever Stealer of Secrets deals combat damage to a player, draw a card.|
Angelic Skirmisher|Media Inserts|90|Special|{4}{W}{W}|Creature - Angel|4|4|Flying$At the beginning of each combat, choose first strike, vigilance, or lifelink. Creatures you control gain that ability until end of turn.|
Xathrid Necromancer|Media Inserts|91|Special|{2}{B}|Creature - Human Wizard|2|2|Whenever Xathrid Necromancer or another Human creature you control dies, put a 2/2 black Zombie creature token onto the battlefield tapped.|
Rattleclaw Mystic|Media Inserts|92|Special|{1}{G}|Creature - Human Shaman|2|1|{tap}: Add {G}, {U}, or {R} to your mana pool.$Morph {2} <i>(You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)</i>$When Rattleclaw Mystic is turned face up, add {G}{U}{R} to your mana pool.|
Ankle Shanker|Media Inserts|93|Special|{2}{R}{W}{B}|Creature - Goblin Berserker|2|2|Haste$Whenever Ankle Shanker attacks, creatures you control gain first strike and deathtouch until end of turn.|
Ivorytusk Fortress|Media Inserts|94|Special|{2}{W}{B}{G}|Creature - Elephant|5|7|Untap each creature you control with a +1/+1 counter on it during each other player's untap step.|
Rakshasa Vizier|Media Inserts|95|Special|{2}{B}{G}{U}|Creature - Cat Demon|4|4|Whenever one or more cards are put into exile from your graveyard, put that many +1/+1 counters on Rakshasa Vizier.|
Sage of the Inward Eye|Media Inserts|97|Special|{2}{U}{R}{W}|Creature - Djinn Wizard|3|4|Flying$Whenever you cast a noncreature spell, creatures you control gain lifelink until end of turn.|
Goblin Rabblemaster|Media Inserts|98|Special|{2}{R}|Creature - Goblin Warrior|2|2|Other Goblin creatures you control attack each turn if able.$At the beginning of combat on your turn, put a 1/1 red Goblin creature token with haste onto the battlefield.$When Goblin Rabblemaster attacks, it gets +1/+0 until end of turn for each other attacking Goblin.|
Ajani Steadfast|Media Inserts|99|Special|{3}{W}|Planeswalker - Ajani||4|+1: Until end of turn, up to one target creature gets +1/+1 and gains first strike, vigilance, and lifelink.$-2: Put a +1/+1 counter on each creature you control and a loyalty counter on each other planeswalker you control.$-7: You get an emblem with "If a source would deal damage to you or a planeswalker you control, prevent all but 1 of that damage."|
Jace, the Living Guildpact|Media Inserts|100|Special|{2}{U}{U}|Planeswalker - Jace||5|+1: Look at the top two cards of your library. Put one of them into your graveyard.$-3: Return another target nonland permanent to its owner's hand. $-8: Each player shuffles his or her hand and graveyard into his or her library. You draw seven cards.|
Liliana Vess|Media Inserts|101|Special|{3}{B}{B}|Planeswalker - Liliana||5|+1: Target player discards a card.$-2: Search your library for a card, then shuffle your library and put that card on top of it.$-8: Put all creature cards from all graveyards onto the battlefield under your control.|
Chandra, Pyromaster|Media Inserts|102|Special|{2}{R}{R}|Planeswalker - Chandra||4|+1: Chandra, Pyromaster deals 1 damage to target player and 1 damage to up to one target creature that player controls. That creature can't block this turn.$0: Exile the top card of your library. You may play it this turn.$-7: Exile the top ten cards of your library. Choose an instant or sorcery card exiled this way and copy it three times. You may cast the copies without paying their mana costs.|
Nissa, Worldwaker|Media Inserts|103|Special|{3}{G}{G}|Planeswalker - Nissa||3|+1: Target land you control becomes a 4/4 Elemental creature with trample. It's still a land.$+1: Untap up to four target Forests.$-7: Search your library for any number of basic land cards, put them onto the battlefield, then shuffle your library. Those lands become 4/4 Elemental creatures with trample. They're still lands.|
Garruk, Apex Predator|Media Inserts|104|Special|{5}{B}{G}|Planeswalker - Garruk||5|+1: Destroy another target planeswalker.$+1: Put a 3/3 black Beast creature token with deathtouch onto the battlefield.$-3: Destroy target creature. You gain life equal to its toughness.$-8: Target opponent gets an emblem with "Whenever a creature attacks you, it gets +5/+5 and gains trample until end of turn."|

View file

@ -81,6 +81,7 @@ Magic 2014|M14|
Magic 2015|M15|
Magic: The Gathering-Commander|CMD|
Magic: The Gathering-Conspiracy|CNS|
Media Inserts|MBP|
Masters Edition II|ME2|
Masters Edition III|ME3|
Masters Edition IV|ME4|