aboutsummaryrefslogtreecommitdiffstats
path: root/test/eu
diff options
context:
space:
mode:
Diffstat (limited to 'test/eu')
-rw-r--r--test/eu/equalparts/cardbase/CardbaseSortTest.java (renamed from test/eu/equalparts/test/cardbase/CardbaseSortTest.java)46
-rw-r--r--test/eu/equalparts/cardbase/CardbaseTest.java (renamed from test/eu/equalparts/test/cardbase/CardbaseTest.java)108
-rw-r--r--test/eu/equalparts/cardbase/cli/CardbaseCLITest.java (renamed from test/eu/equalparts/test/ui/CardbaseCLITest.java)27
-rw-r--r--test/eu/equalparts/cardbase/cli/testbase.cb (renamed from test/eu/equalparts/test/decks/testbase.cb)0
-rw-r--r--test/eu/equalparts/cardbase/decks/DeckTest.java (renamed from test/eu/equalparts/test/decks/DeckTest.java)20
-rw-r--r--test/eu/equalparts/cardbase/decks/StatisticsTest.java (renamed from test/eu/equalparts/test/decks/StatisticsTest.java)34
-rw-r--r--test/eu/equalparts/cardbase/decks/deck.cbd (renamed from test/eu/equalparts/test/decks/deck.cbd)0
-rw-r--r--test/eu/equalparts/cardbase/decks/testbase.cb1
-rw-r--r--test/eu/equalparts/cardbase/notjson.txt (renamed from test/eu/equalparts/test/cardbase/notjson.txt)0
-rw-r--r--test/eu/equalparts/cardbase/shivandragon.json (renamed from test/eu/equalparts/test/cardbase/shivandragon.json)0
-rw-r--r--test/eu/equalparts/cardbase/testbase.cb (renamed from test/eu/equalparts/test/cardbase/testbase.cb)0
-rw-r--r--test/eu/equalparts/cardbase/testcards.json (renamed from test/eu/equalparts/test/cardbase/testcards.json)0
12 files changed, 129 insertions, 107 deletions
diff --git a/test/eu/equalparts/test/cardbase/CardbaseSortTest.java b/test/eu/equalparts/cardbase/CardbaseSortTest.java
index 96c08d6..298872a 100644
--- a/test/eu/equalparts/test/cardbase/CardbaseSortTest.java
+++ b/test/eu/equalparts/cardbase/CardbaseSortTest.java
@@ -1,4 +1,4 @@
-package eu.equalparts.test.cardbase;
+package eu.equalparts.cardbase;
import static org.junit.Assert.assertTrue;
@@ -24,7 +24,7 @@ import eu.equalparts.cardbase.cards.Card;
*/
public class CardbaseSortTest {
- private Cardbase cardbase;
+ private Cardbase uut;
private static List<Card> testCards;
@BeforeClass
@@ -39,15 +39,15 @@ public class CardbaseSortTest {
@Before
public void setUp() throws Exception {
- cardbase = new Cardbase();
+ uut = new Cardbase();
for (Card card : testCards) {
- cardbase.addCard(card);
+ uut.addCard(card);
}
}
@Test
public void sortByName() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("name");
+ Collection<Card> sortedCards = uut.sort("name");
int i = 0;
String[] names = {
"Callow Jushi",
@@ -67,7 +67,7 @@ public class CardbaseSortTest {
@Test
public void sortByLayout() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("layout");
+ Collection<Card> sortedCards = uut.sort("layout");
int i = 0;
String[] layouts = {
"flip",
@@ -87,7 +87,7 @@ public class CardbaseSortTest {
@Test
public void sortByManaCost() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("manaCost");
+ Collection<Card> sortedCards = uut.sort("manaCost");
int i = 0;
String[] costs = {
"{1}{U}{U}",
@@ -107,7 +107,7 @@ public class CardbaseSortTest {
@Test
public void sortByCMC() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("cmc");
+ Collection<Card> sortedCards = uut.sort("cmc");
int i = 0;
Integer[] cmcs = {2, 3, 4, 5, 6, 6, 6, 8};
for (Card card : sortedCards) {
@@ -118,7 +118,7 @@ public class CardbaseSortTest {
@Test
public void sortByType() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("type");
+ Collection<Card> sortedCards = uut.sort("type");
int i = 0;
String[] types = {
"Artifact Creature — Construct",
@@ -138,7 +138,7 @@ public class CardbaseSortTest {
@Test
public void sortByRarity() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("rarity");
+ Collection<Card> sortedCards = uut.sort("rarity");
int i = 0;
String[] rarities = {
"Uncommon",
@@ -158,7 +158,7 @@ public class CardbaseSortTest {
@Test
public void sortByText() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("text");
+ Collection<Card> sortedCards = uut.sort("text");
int i = 0;
String[] texts = {
"+2: Sorin Markov deals 2 damage to target creature or player and you gain 2 life.\n−3: Target opponent's life total becomes 10.\n−7: You control target player during that player's next turn.",
@@ -178,7 +178,7 @@ public class CardbaseSortTest {
@Test
public void sortByFlavor() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("flavor");
+ Collection<Card> sortedCards = uut.sort("flavor");
int i = 0;
String[] flavors = {
"",
@@ -199,7 +199,7 @@ public class CardbaseSortTest {
@Test
public void sortByArtist() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("artist");
+ Collection<Card> sortedCards = uut.sort("artist");
int i = 0;
String[] artists = {
"Donato Giancola",
@@ -219,7 +219,7 @@ public class CardbaseSortTest {
@Test
public void sortByNumber() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("number");
+ Collection<Card> sortedCards = uut.sort("number");
int i = 0;
String[] numbers = {
"31a",
@@ -239,7 +239,7 @@ public class CardbaseSortTest {
@Test
public void sortByPower() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("power");
+ Collection<Card> sortedCards = uut.sort("power");
int i = 0;
String[] powers = {
"",
@@ -260,7 +260,7 @@ public class CardbaseSortTest {
@Test
public void sortByToughness() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("power");
+ Collection<Card> sortedCards = uut.sort("power");
int i = 0;
String[] toughnesses = {
"",
@@ -281,7 +281,7 @@ public class CardbaseSortTest {
@Test
public void sortByLoyalty() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("loyalty");
+ Collection<Card> sortedCards = uut.sort("loyalty");
int i = 0;
Integer[] loyalties = {0, 0, 0, 0, 0, 0, 0, 4};
for (Card card : sortedCards) {
@@ -293,7 +293,7 @@ public class CardbaseSortTest {
@Test
public void sortByMultiverseID() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("multiverseid");
+ Collection<Card> sortedCards = uut.sort("multiverseid");
int i = 0;
Integer[] ids = {74128, 74489, 193551, 238330, 366408, 383168, 383172, 391949 };
for (Card card : sortedCards) {
@@ -305,7 +305,7 @@ public class CardbaseSortTest {
@Test
public void sortByImageName() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("imageName");
+ Collection<Card> sortedCards = uut.sort("imageName");
int i = 0;
String[] names = {
"callow jushi",
@@ -325,7 +325,7 @@ public class CardbaseSortTest {
@Test
public void sortByWatermark() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("watermark");
+ Collection<Card> sortedCards = uut.sort("watermark");
int i = 0;
String[] watermarks = {
"",
@@ -346,7 +346,7 @@ public class CardbaseSortTest {
@Test
public void sortBySetCode() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("setCode");
+ Collection<Card> sortedCards = uut.sort("setCode");
int i = 0;
String[] sets = {
"BOK",
@@ -365,7 +365,7 @@ public class CardbaseSortTest {
}
public void sortByImageCode() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("imageCode");
+ Collection<Card> sortedCards = uut.sort("imageCode");
int i = 0;
String[] codes = {
"bok",
@@ -385,7 +385,7 @@ public class CardbaseSortTest {
@Test
public void sortByCount() throws Exception {
- Collection<Card> sortedCards = cardbase.sort("count");
+ Collection<Card> sortedCards = uut.sort("count");
int i = 0;
Integer[] counts = {1, 1, 1, 1, 2, 3, 8, 15 };
for (Card card : sortedCards) {
diff --git a/test/eu/equalparts/test/cardbase/CardbaseTest.java b/test/eu/equalparts/cardbase/CardbaseTest.java
index 6ff98b1..c8f81ff 100644
--- a/test/eu/equalparts/test/cardbase/CardbaseTest.java
+++ b/test/eu/equalparts/cardbase/CardbaseTest.java
@@ -1,4 +1,4 @@
-package eu.equalparts.test.cardbase;
+package eu.equalparts.cardbase;
import static org.junit.Assert.*;
@@ -30,8 +30,8 @@ import eu.equalparts.cardbase.cards.Card;
*/
public class CardbaseTest {
- private Cardbase cardbase;
- private static Card shivanDragon;
+ private Cardbase uut;
+ private static Card testCard;
@Rule
public final ExpectedException exception = ExpectedException.none();
@@ -39,7 +39,7 @@ public class CardbaseTest {
@BeforeClass
public static void setUpBeforeClass() throws Exception {
ObjectMapper mapper = new ObjectMapper();
- shivanDragon = mapper.readValue(CardbaseTest.class.getResourceAsStream("shivandragon.json"), Card.class);
+ testCard = mapper.readValue(CardbaseTest.class.getResourceAsStream("shivandragon.json"), Card.class);
}
@AfterClass
@@ -48,7 +48,7 @@ public class CardbaseTest {
@Before
public void setUp() throws Exception {
- cardbase = new Cardbase();
+ uut = new Cardbase();
}
/***********************************************************************************
@@ -56,14 +56,14 @@ public class CardbaseTest {
***********************************************************************************/
@Test
public void cleanCardbaseIsInitialised() throws Exception {
- assertEquals("Card collection is not empty.", 0, cardbase.getCards().size());
+ assertEquals("Card collection is not empty.", 0, uut.getCards().size());
}
@Test
public void fileCardbaseIsInitialised() throws Exception {
- cardbase = new Cardbase(new File(getClass().getResource("testbase.cb").toURI()));
+ uut = new Cardbase(new File(getClass().getResource("testbase.cb").toURI()));
- assertEquals("Card collection contains the wrong number of card entries.", 6, cardbase.getCards().size());
+ assertEquals("Card collection contains the wrong number of card entries.", 6, uut.getCards().size());
class CardInfo {
String setCode, number;
@@ -83,7 +83,7 @@ public class CardbaseTest {
new CardInfo("M12", "152", 1)};
for (CardInfo ci : testCards) {
- Card card = cardbase.getCard(ci.setCode, ci.number);
+ Card card = uut.getCard(ci.setCode, ci.number);
assertNotNull("Missing card, set " + ci.setCode + ", " + ci.number, card);
assertEquals("Wrong card count, set " + ci.setCode + ", " + ci.number, ci.count, card.count);
}
@@ -95,25 +95,25 @@ public class CardbaseTest {
@Test
public void loadFileIsNull() throws Exception {
exception.expect(NullPointerException.class);
- cardbase = new Cardbase(null);
+ uut = new Cardbase(null);
}
@Test
public void loadFileDoesNotExist() throws Exception {
exception.expect(IOException.class);
- cardbase = new Cardbase(new File("not a file"));
+ uut = new Cardbase(new File("not a file"));
}
@Test
public void loadFileHasWrongStructure() throws Exception {
exception.expect(JsonMappingException.class);
- cardbase = new Cardbase(new File(getClass().getResource("testcards.json").toURI()));
+ uut = new Cardbase(new File(getClass().getResource("testcards.json").toURI()));
}
@Test
public void loadFileIsNotJson() throws Exception {
exception.expect(JsonParseException.class);
- cardbase = new Cardbase(new File(getClass().getResource("notjson.txt").toURI()));
+ uut = new Cardbase(new File(getClass().getResource("notjson.txt").toURI()));
}
/***********************************************************************************
@@ -141,16 +141,16 @@ public class CardbaseTest {
File testFile = new File("savetest.cb");
validateSaveFile(testFile);
try {
- cardbase.writeCollection(testFile);
- cardbase = new Cardbase(testFile);
- assertEquals("Cardbase should contain no cards.", 0, cardbase.getCards().size());
+ uut.writeCollection(testFile);
+ uut = new Cardbase(testFile);
+ assertEquals("Cardbase should contain no cards.", 0, uut.getCards().size());
- cardbase.addCard(shivanDragon);
+ uut.addCard(testCard);
- cardbase.writeCollection(testFile);
- cardbase = new Cardbase(testFile);
- assertEquals("Cardbase should contain one card.", 1, cardbase.getCards().size());
- Card card = cardbase.getCard("M15", "281");
+ uut.writeCollection(testFile);
+ uut = new Cardbase(testFile);
+ assertEquals("Cardbase should contain one card.", 1, uut.getCards().size());
+ Card card = uut.getCard("M15", "281");
assertNotNull("Cardbase should contain a Shivan Dragon.", card);
assertEquals("Cardbase should contain only one Shivan Dragon", new Integer(1), card.count);
} finally {
@@ -168,7 +168,7 @@ public class CardbaseTest {
testFile.setWritable(false);
try {
exception.expect(IOException.class);
- cardbase.writeCollection(testFile);
+ uut.writeCollection(testFile);
} finally {
testFile.delete();
}
@@ -177,7 +177,7 @@ public class CardbaseTest {
@Test
public void saveFileIsNull() throws Exception {
exception.expect(NullPointerException.class);
- cardbase = new Cardbase(null);
+ uut = new Cardbase(null);
}
/***********************************************************************************
@@ -185,22 +185,22 @@ public class CardbaseTest {
***********************************************************************************/
@Test
public void newCardIsAdded() throws Exception {
- cardbase.addCard(shivanDragon);
- Card addedCard = cardbase.getCard("M15", "281");
+ uut.addCard(testCard);
+ Card addedCard = uut.getCard("M15", "281");
assertNotNull("Card was not found in cardbase.", addedCard);
- assertEquals(shivanDragon, addedCard);
+ assertEquals(testCard, addedCard);
}
@Test
public void existingCardIsIncremented() throws Exception {
- Card shivanClone = shivanDragon.clone();
- cardbase.addCard(shivanClone);
- Card shivanClone2 = shivanDragon.clone();
+ Card shivanClone = testCard.clone();
+ uut.addCard(shivanClone);
+ Card shivanClone2 = testCard.clone();
shivanClone2.count = 2;
- cardbase.addCard(shivanClone2);
+ uut.addCard(shivanClone2);
- Card addedCard = cardbase.getCard("M15", "281");
+ Card addedCard = uut.getCard("M15", "281");
assertNotNull("Card was not found in cardbase.", addedCard);
assertEquals("Card count was not updated correctly.", new Integer(3), addedCard.count);
}
@@ -211,7 +211,7 @@ public class CardbaseTest {
@Test
public void cardAddedIsNull() throws Exception {
exception.expect(NullPointerException.class);
- cardbase.addCard(null);
+ uut.addCard(null);
}
/***********************************************************************************
@@ -219,13 +219,13 @@ public class CardbaseTest {
***********************************************************************************/
@Test
public void cardRemoveCountIsLessThanCardCount() throws Exception {
- Card shivanClone = shivanDragon.clone();
+ Card shivanClone = testCard.clone();
shivanClone.count = 5;
- cardbase.addCard(shivanClone);
+ uut.addCard(shivanClone);
- int removed = cardbase.removeCard(shivanDragon);
+ int removed = uut.removeCard(testCard);
- Card removedCard = cardbase.getCard("M15", "281");
+ Card removedCard = uut.getCard("M15", "281");
assertNotNull("Card was not found in cardbase.", removedCard);
assertEquals("Card count was not updated correctly.", new Integer(4), removedCard.count);
assertEquals("Cardbase reports wrong removed count.", 1, removed);
@@ -233,27 +233,27 @@ public class CardbaseTest {
@Test
public void cardRemoveCountIsEqualToCardCount() throws Exception {
- Card shivanClone = shivanDragon.clone();
- cardbase.addCard(shivanClone);
+ Card shivanClone = testCard.clone();
+ uut.addCard(shivanClone);
- int removed = cardbase.removeCard(shivanDragon);
+ int removed = uut.removeCard(testCard);
- Card removedCard = cardbase.getCard("M15", "281");
+ Card removedCard = uut.getCard("M15", "281");
assertNull("Card was not removed from cardbase.", removedCard);
assertEquals("Cardbase reports wrong removed count.", 1, removed);
}
@Test
public void cardRemoveCountIsGreaterThanCardCount() throws Exception {
- Card shivanClone = shivanDragon.clone();
+ Card shivanClone = testCard.clone();
shivanClone.count = 3;
- cardbase.addCard(shivanClone);
+ uut.addCard(shivanClone);
- Card shivanClone2 = shivanDragon.clone();
+ Card shivanClone2 = testCard.clone();
shivanClone2.count = 5;
- int removed = cardbase.removeCard(shivanClone2);
+ int removed = uut.removeCard(shivanClone2);
- Card removedCard = cardbase.getCard("M15", "281");
+ Card removedCard = uut.getCard("M15", "281");
assertNull("Card was not removed from cardbase.", removedCard);
assertEquals("Cardbase reports wrong removed count.", 3, removed);
}
@@ -264,12 +264,12 @@ public class CardbaseTest {
@Test
public void removedCardIsNull() throws Exception {
exception.expect(NullPointerException.class);
- cardbase.removeCard(null);
+ uut.removeCard(null);
}
@Test
public void removedCardIsNotInCardbase() throws Exception {
- int removed = cardbase.removeCard(shivanDragon);
+ int removed = uut.removeCard(testCard);
assertEquals("Removed count should be 0.", 0, removed);
}
@@ -279,21 +279,21 @@ public class CardbaseTest {
***********************************************************************************/
@Test
public void correctCardIsReturnedByGetter() throws Exception {
- cardbase.addCard(shivanDragon.clone());
+ uut.addCard(testCard.clone());
- Card card = cardbase.getCard("M15", "281");
+ Card card = uut.getCard("M15", "281");
for (Field field : Card.class.getFields()) {
- assertEquals("Field " + field.getName(), field.get(shivanDragon), field.get(card));
+ assertEquals("Field " + field.getName(), field.get(testCard), field.get(card));
}
}
@Test
public void correctCardCollectionIsReturnedByGetter() throws Exception {
- cardbase = new Cardbase(new File(getClass().getResource("testbase.cb").toURI()));
+ uut = new Cardbase(new File(getClass().getResource("testbase.cb").toURI()));
Map<Integer, Card> cards = new ObjectMapper().readValue(getClass().getResourceAsStream("testbase.cb"), new TypeReference<Map<Integer, Card>>() {});
- assertTrue("Not all cards were returned by the getter.", cardbase.getCards().containsAll(cards.values()));
+ assertTrue("Not all cards were returned by the getter.", uut.getCards().containsAll(cards.values()));
}
/*
@@ -301,11 +301,11 @@ public class CardbaseTest {
*/
@Test
public void getCardIsNotInCardbase() throws Exception {
- assertNull("Method should have returned null", cardbase.getCard("M15", "281"));
+ assertNull("Method should have returned null", uut.getCard("M15", "281"));
}
@Test
public void cardCollectionWhenCardbaseIsEmpty() throws Exception {
- assertEquals("Returned collection size should have been 0.", 0, cardbase.getCards().size());
+ assertEquals("Returned collection size should have been 0.", 0, uut.getCards().size());
}
}
diff --git a/test/eu/equalparts/test/ui/CardbaseCLITest.java b/test/eu/equalparts/cardbase/cli/CardbaseCLITest.java
index 19662e1..5a9aca4 100644
--- a/test/eu/equalparts/test/ui/CardbaseCLITest.java
+++ b/test/eu/equalparts/cardbase/cli/CardbaseCLITest.java
@@ -1,17 +1,35 @@
-package eu.equalparts.test.ui;
+package eu.equalparts.cardbase.cli;
import static org.junit.Assert.*;
+import java.io.File;
+import java.io.IOException;
+import java.io.OutputStream;
+import java.io.OutputStreamWriter;
+import java.io.PrintStream;
+import java.io.StringReader;
+
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
+import eu.equalparts.cardbase.cli.CardbaseCLI;
+
public class CardbaseCLITest {
+ private CardbaseCLI uut;
+ private static StringBuilder output = new StringBuilder();
+
@BeforeClass
public static void setUpBeforeClass() throws Exception {
+ System.setOut(new PrintStream(new OutputStream() {
+ @Override
+ public void write(int b) throws IOException {
+ output.append((char) b);
+ }
+ }, true));
}
@AfterClass
@@ -30,8 +48,11 @@ public class CardbaseCLITest {
* Constructor tests, happy path
***********************************************************************************/
@Test
- public void test() {
- fail("Not yet implemented");
+ public void initialiseWithCardbaseFile() throws Exception {
+ uut = new CardbaseCLI(getClass().getResource("testbase.cb").getPath());
+
+
+
}
}
diff --git a/test/eu/equalparts/test/decks/testbase.cb b/test/eu/equalparts/cardbase/cli/testbase.cb
index 7c2ae07..7c2ae07 100644
--- a/test/eu/equalparts/test/decks/testbase.cb
+++ b/test/eu/equalparts/cardbase/cli/testbase.cb
diff --git a/test/eu/equalparts/test/decks/DeckTest.java b/test/eu/equalparts/cardbase/decks/DeckTest.java
index 55a8e80..a35bc32 100644
--- a/test/eu/equalparts/test/decks/DeckTest.java
+++ b/test/eu/equalparts/cardbase/decks/DeckTest.java
@@ -1,4 +1,4 @@
-package eu.equalparts.test.decks;
+package eu.equalparts.cardbase.decks;
import static org.junit.Assert.*;
@@ -33,18 +33,18 @@ public class DeckTest {
ObjectMapper mapper = new ObjectMapper();
StandaloneDeck standaloneDeck = mapper.readValue(getClass().getResourceAsStream("deck.cbd"), StandaloneDeck.class);
- ReferenceDeck referenceDeck = new ReferenceDeck(standaloneDeck);
+ ReferenceDeck uut = new ReferenceDeck(standaloneDeck);
- boolean condition = referenceDeck.name == standaloneDeck.name &&
- referenceDeck.plains == standaloneDeck.plains &&
- referenceDeck.islands == standaloneDeck.islands &&
- referenceDeck.swamps == standaloneDeck.swamps &&
- referenceDeck.mountains == standaloneDeck.mountains &&
- referenceDeck.forests == standaloneDeck.forests;
+ boolean condition = uut.name == standaloneDeck.name &&
+ uut.plains == standaloneDeck.plains &&
+ uut.islands == standaloneDeck.islands &&
+ uut.swamps == standaloneDeck.swamps &&
+ uut.mountains == standaloneDeck.mountains &&
+ uut.forests == standaloneDeck.forests;
assertTrue("Metadata was not correctly set.", condition);
- assertEquals("Wrong number of cards.", referenceDeck.cardReferences.size(), standaloneDeck.cards.size());
+ assertEquals("Wrong number of cards.", uut.cardReferences.size(), standaloneDeck.cards.size());
for (Card card : standaloneDeck.cards) {
- Integer count = referenceDeck.cardReferences.get(card.hashCode());
+ Integer count = uut.cardReferences.get(card.hashCode());
assertNotNull("Reference missing in deck.", count);
assertEquals("Card count is wrong.", card.count, count);
}
diff --git a/test/eu/equalparts/test/decks/StatisticsTest.java b/test/eu/equalparts/cardbase/decks/StatisticsTest.java
index f846903..6210f89 100644
--- a/test/eu/equalparts/test/decks/StatisticsTest.java
+++ b/test/eu/equalparts/cardbase/decks/StatisticsTest.java
@@ -1,4 +1,4 @@
-package eu.equalparts.test.decks;
+package eu.equalparts.cardbase.decks;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
@@ -15,12 +15,12 @@ import eu.equalparts.cardbase.decks.Statistics;
public class StatisticsTest {
- private static StandaloneDeck testDeck;
+ private static StandaloneDeck uut;
@BeforeClass
public static void setUpBeforeClass() throws Exception {
ObjectMapper mapper = new ObjectMapper();
- testDeck = mapper.readValue(StatisticsTest.class.getResourceAsStream("deck.cbd"), StandaloneDeck.class);
+ uut = mapper.readValue(StatisticsTest.class.getResourceAsStream("deck.cbd"), StandaloneDeck.class);
}
@AfterClass
@@ -33,77 +33,77 @@ public class StatisticsTest {
@Test
public void test_totalLandCountIsComputedCorrectly() throws Exception {
- int count = Statistics.count(testDeck, "Land");
+ int count = Statistics.count(uut, "Land");
assertEquals(23, count);
}
@Test
public void test_basicLandCountIsComputedCorrectly() throws Exception {
- int count = Statistics.count(testDeck, "Basic Land");
+ int count = Statistics.count(uut, "Basic Land");
assertEquals(20, count);
}
@Test
public void test_cardCountIsComputedCorrectly() throws Exception {
- int count = Statistics.count(testDeck);
+ int count = Statistics.count(uut);
assertEquals(60, count);
}
@Test
public void test_landPercentageIsComputedCorrectly() throws Exception {
- double percentage = Statistics.calculatePercentage(testDeck, "Land");
+ double percentage = Statistics.calculatePercentage(uut, "Land");
assertTrue("Land percentage should be " + (23.0 / 60.0) + ", is " + percentage, percentage == (23.0 / 60.0));
}
@Test
public void test_creaturePercentageIsComputedCorrectly() throws Exception {
- double percentage = Statistics.calculatePercentage(testDeck, "Creature");
+ double percentage = Statistics.calculatePercentage(uut, "Creature");
assertTrue("Creature percentage should be " + (24.0 / 60.0) + ", is " + percentage, percentage == (24.0 / 60.0));
}
@Test
public void test_creatureCountIsComputedCorrectly() throws Exception {
- int count = Statistics.count(testDeck, "Creature");
+ int count = Statistics.count(uut, "Creature");
assertEquals(24, count);
}
@Test
public void test_sorceryCountIsComputedCorrectly() throws Exception {
- int count = Statistics.count(testDeck, "Sorcery");
+ int count = Statistics.count(uut, "Sorcery");
assertEquals(1, count);
}
@Test
public void test_instantCountIsComputedCorrectly() throws Exception {
- int count = Statistics.count(testDeck, "Instant");
+ int count = Statistics.count(uut, "Instant");
assertEquals(6, count);
}
@Test
public void test_planeswalkerCountIsComputedCorrectly() throws Exception {
- int count = Statistics.count(testDeck, "Planeswalker");
+ int count = Statistics.count(uut, "Planeswalker");
assertEquals(0, count);
}
@Test
public void test_elfCountIsComputedCorrectly() throws Exception {
- int count = Statistics.count(testDeck, "Elf");
+ int count = Statistics.count(uut, "Elf");
assertEquals(2, count);
}
@Test
public void test_overallCostDistributionIsComputedCorrectly() throws Exception {
- int[] actualCosts = Statistics.computeDistribution(testDeck);
+ int[] actualCosts = Statistics.computeDistribution(uut);
int[] expectedCosts = {0, 8, 11, 3, 4, 7, 4};
assertEquals("Array lengths do not match.", expectedCosts.length, actualCosts.length);
@@ -114,7 +114,7 @@ public class StatisticsTest {
@Test
public void test_creatureCostDistributionIsComputedCorrectly() throws Exception {
- int[] actualCosts = Statistics.computeDistribution(testDeck, "Creature");
+ int[] actualCosts = Statistics.computeDistribution(uut, "Creature");
int[] expectedCosts = {0, 3, 6, 2, 2, 7, 4};
assertEquals("Array lengths do not match.", expectedCosts.length, actualCosts.length);
@@ -125,7 +125,7 @@ public class StatisticsTest {
@Test
public void test_instantCostDistributionIsComputedCorrectly() throws Exception {
- int[] actualCosts = Statistics.computeDistribution(testDeck, "Instant");
+ int[] actualCosts = Statistics.computeDistribution(uut, "Instant");
int[] expectedCosts = {0, 2, 4};
assertEquals("Array lengths do not match.", expectedCosts.length, actualCosts.length);
@@ -136,7 +136,7 @@ public class StatisticsTest {
@Test
public void test_planeswalkerCostDistributionIsComputedCorrectly() throws Exception {
- int[] actualCosts = Statistics.computeDistribution(testDeck, "Planeswalker");
+ int[] actualCosts = Statistics.computeDistribution(uut, "Planeswalker");
int[] expectedCosts = {};
assertEquals("Array lengths do not match.", expectedCosts.length, actualCosts.length);
diff --git a/test/eu/equalparts/test/decks/deck.cbd b/test/eu/equalparts/cardbase/decks/deck.cbd
index 57d479a..57d479a 100644
--- a/test/eu/equalparts/test/decks/deck.cbd
+++ b/test/eu/equalparts/cardbase/decks/deck.cbd
diff --git a/test/eu/equalparts/cardbase/decks/testbase.cb b/test/eu/equalparts/cardbase/decks/testbase.cb
new file mode 100644
index 0000000..7c2ae07
--- /dev/null
+++ b/test/eu/equalparts/cardbase/decks/testbase.cb
@@ -0,0 +1 @@
+{"1583131":{"name":"Wildfire Cerberus","layout":"normal","manaCost":"{4}{R}","cmc":5,"type":"Creature — Hound","rarity":"Uncommon","text":"{5}{R}{R}: Monstrosity 1. (If this creature isn't monstrous, put a +1/+1 counter on it and it becomes monstrous.)\nWhen Wildfire Cerberus becomes monstrous, it deals 2 damage to each opponent and each creature your opponents control.","flavor":null,"artist":"Slawomir Maniak","number":"116","power":"4","toughness":"3","loyalty":null,"multiverseid":380527,"imageName":"wildfire cerberus","watermark":null,"setCode":"JOU","imageCode":"jou","count":1},"68612":{"name":"Elite Skirmisher","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Creature — Human Soldier","rarity":"Common","text":"Heroic — Whenever you cast a spell that targets Elite Skirmisher, you may tap target creature.","flavor":"Some adopted the tactics of the leonin to combat the ferocity of the minotaurs.","artist":"Mark Winters","number":"8","power":"3","toughness":"1","loyalty":null,"multiverseid":378380,"imageName":"elite skirmisher","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"70662":{"name":"Aven Tactician","layout":"normal","manaCost":"{4}{W}","cmc":5,"type":"Creature — Bird Soldier","rarity":"Common","text":"Flying\nWhen Aven Tactician enters the battlefield, bolster 1. (Choose a creature with the least toughness among creatures you control and put a +1/+1 counter on it.)","flavor":"The aven are admired, for they are able to fly with the dragons.","artist":"Christopher Moeller","number":"6","power":"2","toughness":"3","loyalty":null,"multiverseid":394505,"imageName":"aven tactician","watermark":"Dromoka","setCode":"DTK","imageCode":"dtk","count":1},"1584144":{"name":"Dragon-Scarred Bear","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Creature — Bear","rarity":"Common","text":"Formidable — {1}{G}: Regenerate Dragon-Scarred Bear. Activate this ability only if creatures you control have total power 8 or greater.","flavor":"Bears are a delicacy for the Atarka. The few that remain are the toughest of their species.","artist":"Lars Grant-West","number":"183","power":"3","toughness":"2","loyalty":null,"multiverseid":394553,"imageName":"dragon-scarred bear","watermark":"Atarka","setCode":"DTK","imageCode":"dtk","count":1},"131081":{"name":"Necropolis Fiend","layout":"normal","manaCost":"{7}{B}{B}","cmc":9,"type":"Creature — Demon","rarity":"Rare","text":"Delve (Each card you exile from your graveyard while casting this spell pays for {1}.)\nFlying\n{X}, {T}, Exile X cards from your graveyard: Target creature gets -X/-X until end of turn.","flavor":null,"artist":"Seb McKinnon","number":"82","power":"4","toughness":"5","loyalty":null,"multiverseid":386618,"imageName":"necropolis fiend","watermark":"Sultai","setCode":"KTK","imageCode":"ktk","count":2},"130058":{"name":"Disowned Ancestor","layout":"normal","manaCost":"{B}","cmc":1,"type":"Creature — Spirit Warrior","rarity":"Common","text":"Outlast {1}{B} ({1}{B}, {T}: Put a +1/+1 counter on this creature. Outlast only as a sorcery.)","flavor":"Long after death, the spirits of the Disowned continue to seek redemption among their Abzan kin.","artist":"Zack Stella","number":"70","power":"0","toughness":"4","loyalty":null,"multiverseid":386521,"imageName":"disowned ancestor","watermark":"Abzan","setCode":"KTK","imageCode":"ktk","count":2},"132112":{"name":"Child of Night","layout":"normal","manaCost":"{1}{B}","cmc":2,"type":"Creature — Vampire","rarity":"Common","text":"Lifelink (Damage dealt by this creature also causes you to gain that much life.)","flavor":"Sins that would be too gruesome in the light of day are made more pleasing in the dark of night.","artist":"Ash Wood","number":"89","power":"2","toughness":"1","loyalty":null,"multiverseid":370823,"imageName":"child of night","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1583116":{"name":"Grim Contest","layout":"normal","manaCost":"{1}{B}{G}","cmc":3,"type":"Instant","rarity":"Common","text":"Choose target creature you control and target creature an opponent controls. Each of those creatures deals damage equal to its toughness to the other.","flavor":"The invader hoped he could survive the beast's jaws and emerge through its rotting skin.","artist":"Phill Simmer","number":"153","power":null,"toughness":null,"loyalty":null,"multiverseid":391849,"imageName":"grim contest","watermark":null,"setCode":"FRF","imageCode":"frf","count":2},"118805":{"name":"Pacifism","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nEnchanted creature can't attack or block.","flavor":"\"If I fight, I might step on a butterfly. That would be sad.\"\n—Krowg of Qal Sisma","artist":"Mark Zug","number":"29","power":null,"toughness":null,"loyalty":null,"multiverseid":394645,"imageName":"pacifism","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"1595405":{"name":"Two-Headed Cerberus","layout":"normal","manaCost":"{1}{R}{R}","cmc":3,"type":"Creature — Hound","rarity":"Common","text":"Double strike (This creature deals both first-strike and regular combat damage.)","flavor":"The left head keeps the right head starved as motivation to track new prey.","artist":"Karl Kopinski","number":"146","power":"1","toughness":"2","loyalty":null,"multiverseid":373540,"imageName":"two-headed cerberus","watermark":null,"setCode":"THS","imageCode":"ths","count":2},"115732":{"name":"Loyal Pegasus","layout":"normal","manaCost":"{W}","cmc":1,"type":"Creature — Pegasus","rarity":"Common","text":"Flying\nLoyal Pegasus can't attack or block alone.","flavor":"\"Even if I should die in the saddle, she will not let me fall to the ground.\"\n—Hypatia of the Winged Horse","artist":"John Severin Brassell","number":"19","power":"2","toughness":"1","loyalty":null,"multiverseid":378391,"imageName":"loyal pegasus","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"1586190":{"name":"Hooting Mandrills","layout":"normal","manaCost":"{5}{G}","cmc":6,"type":"Creature — Ape","rarity":"Common","text":"Delve (Each card you exile from your graveyard while casting this spell pays for {1}.)\nTrample","flavor":"Interlopers in Sultai territory usually end up as crocodile chow or baboon bait.","artist":"Mike Bierek","number":"137","power":"4","toughness":"4","loyalty":null,"multiverseid":386558,"imageName":"hooting mandrills","watermark":"Sultai","setCode":"KTK","imageCode":"ktk","count":1},"1585167":{"name":"Valley Dasher","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Creature — Human Berserker","rarity":"Common","text":"Haste\nValley Dasher attacks each turn if able.","flavor":"Mardu riders' greatest fear is that a battle might end before their weapons draw blood.","artist":"Matt Stewart","number":"125","power":"2","toughness":"2","loyalty":null,"multiverseid":386712,"imageName":"valley dasher","watermark":"Mardu","setCode":"KTK","imageCode":"ktk","count":1},"117782":{"name":"Fate Forgotten","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Instant","rarity":"Common","text":"Exile target artifact or enchantment.","flavor":"When Sarkhan saved Ugin in Tarkir's past, it changed Tarkir's future. The Sultai no longer exist, having been supplanted by the dragonlord Silumgar and his clan.","artist":"Cliff Childs","number":"17","power":null,"toughness":null,"loyalty":null,"multiverseid":394570,"imageName":"fate forgotten","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"1587205":{"name":"Psychic Strike","layout":"normal","manaCost":"{1}{U}{B}","cmc":3,"type":"Instant","rarity":"Common","text":"Counter target spell. Its controller puts the top two cards of his or her library into his or her graveyard.","flavor":"Until more information could be gleaned about Niv-Mizzet's intentions, Lazav took every opportunity to stall his experiments.","artist":"Mathias Kollros","number":"189","power":null,"toughness":null,"loyalty":null,"multiverseid":366296,"imageName":"psychic strike","watermark":"Dimir","setCode":"GTC","imageCode":"gtc","count":1},"1614904":{"name":"Sliver Construct","layout":"normal","manaCost":"{3}","cmc":3,"type":"Artifact Creature — Sliver Construct","rarity":"Common","text":null,"flavor":"Slivers destroy those who come close to the Skep, the central hive. Shards of torn metal litter the ground as a warning to any artificers inquisitive about the hive's inner workings.","artist":"Mathias Kollros","number":"218","power":"2","toughness":"2","loyalty":null,"multiverseid":370643,"imageName":"sliver construct","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"68643":{"name":"Ephara's Radiance","layout":"normal","manaCost":"{W}","cmc":1,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nEnchanted creature has \"{1}{W}, {T}: You gain 3 life.\"","flavor":"\"Civilization is the sum of Ephara's gifts.\"\n—Olexa of the Twelve","artist":"James Ryman","number":"9","power":null,"toughness":null,"loyalty":null,"multiverseid":378381,"imageName":"ephara's radiance","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"70693":{"name":"Battle Mastery","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Enchantment — Aura","rarity":"Uncommon","text":"Enchant creature\nEnchanted creature has double strike. (It deals both first-strike and regular combat damage.)","flavor":"\"There is elegance in all the Ojutai do—even their killing.\"\n—Kirada, Silumgar enforcer","artist":"Viktor Titov","number":"7","power":null,"toughness":null,"loyalty":null,"multiverseid":394506,"imageName":"battle mastery","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"132135":{"name":"Act of Treason","layout":"normal","manaCost":"{2}{R}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn.","flavor":"\"The Sultai take our dead, so we shall take their living!\"\n—Taklai, Mardu ragesinger","artist":"Min Yum","number":"95","power":null,"toughness":null,"loyalty":null,"multiverseid":386470,"imageName":"act of treason","watermark":null,"setCode":"KTK","imageCode":"ktk","count":3},"1614896":{"name":"Lens of Clarity","layout":"normal","manaCost":"{1}","cmc":1,"type":"Artifact","rarity":"Common","text":"You may look at the top card of your library and at face-down creatures you don't control. (You may do this at any time.)","flavor":"\"Water shifts and confuses, but as ice it holds the stillness of truth.\"\n—Arel the Whisperer","artist":"Raymond Swanland","number":"223","power":null,"toughness":null,"loyalty":null,"multiverseid":386587,"imageName":"lens of clarity","watermark":null,"setCode":"KTK","imageCode":"ktk","count":2},"1583152":{"name":"Ainok Survivalist","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Creature — Hound Shaman","rarity":"Uncommon","text":"Megamorph {1}{G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)\nWhen Ainok Survivalist is turned face up, destroy target artifact or enchantment an opponent controls.","flavor":null,"artist":"Craig J Spearing","number":"172","power":"2","toughness":"1","loyalty":null,"multiverseid":394488,"imageName":"ainok survivalist","watermark":"Atarka","setCode":"DTK","imageCode":"dtk","count":1},"132142":{"name":"Sunspire Griffin","layout":"normal","manaCost":"{1}{W}{W}","cmc":3,"type":"Creature — Griffin","rarity":"Common","text":"Flying","flavor":"\"For each griffin wounded by an arrow, there's a corpse with a bow nearby.\"\n—Pel Javya, Wojek investigator","artist":"Johannes Voss","number":"25","power":"2","toughness":"3","loyalty":null,"multiverseid":253554,"imageName":"sunspire griffin","watermark":null,"setCode":"RTR","imageCode":"rtr","count":1},"1580085":{"name":"Golgari Guildgate","layout":"normal","manaCost":null,"cmc":null,"type":"Land — Gate","rarity":"Common","text":"Golgari Guildgate enters the battlefield tapped.\n{T}: Add {B} or {G} to your mana pool.","flavor":"Every part of the gate was reclaimed from forgotten ruins and imbued with new purpose by the Swarm.","artist":"Eytan Zana","number":"149","power":null,"toughness":null,"loyalty":null,"multiverseid":368960,"imageName":"golgari guildgate","watermark":"Golgari","setCode":"DGM","imageCode":"dgm","count":1},"1584183":{"name":"Nightwing Shade","layout":"normal","manaCost":"{4}{B}","cmc":5,"type":"Creature — Shade","rarity":"Common","text":"Flying\n{1}{B}: Nightwing Shade gets +1/+1 until end of turn.","flavor":"\"There is one hour of the night even we do not watch.\"\n—Sedva, captain of the watch","artist":"Lucas Graciano","number":"109","power":"2","toughness":"2","loyalty":null,"multiverseid":370705,"imageName":"nightwing shade","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"133165":{"name":"Doorkeeper","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Creature — Homunculus","rarity":"Common","text":"Defender\n{2}{U}, {T}: Target player puts the top X cards of his or her library into his or her graveyard, where X is the number of creatures with defender you control.","flavor":"One piercing stare usually convinces thieves to go elsewhere.","artist":"Kev Walker","number":"37","power":"0","toughness":"4","loyalty":null,"multiverseid":265417,"imageName":"doorkeeper","watermark":null,"setCode":"RTR","imageCode":"rtr","count":2},"130097":{"name":"Opportunity","layout":"normal","manaCost":"{4}{U}{U}","cmc":6,"type":"Instant","rarity":"Uncommon","text":"Target player draws four cards.","flavor":"\"Opportunity isn't something you wait for. It's something you create.\"","artist":"Allen Williams","number":"66","power":null,"toughness":null,"loyalty":null,"multiverseid":370751,"imageName":"opportunity","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"130098":{"name":"Kapsho Kitefins","layout":"normal","manaCost":"{4}{U}{U}","cmc":6,"type":"Creature — Fish","rarity":"Uncommon","text":"Flying\nWhenever Kapsho Kitefins or another creature enters the battlefield under your control, tap target creature an opponent controls.","flavor":"\"It's a truly disconcerting sight to see their shadows cast upon the deck.\"\n—Captain Triff","artist":"Ryan Yee","number":"66","power":"3","toughness":"3","loyalty":null,"multiverseid":383291,"imageName":"kapsho kitefins","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"117813":{"name":"Glaring Aegis","layout":"normal","manaCost":"{W}","cmc":1,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nWhen Glaring Aegis enters the battlefield, tap target creature an opponent controls.\nEnchanted creature gets +1/+3.","flavor":null,"artist":"Anthony Palumbo","number":"18","power":null,"toughness":null,"loyalty":null,"multiverseid":394581,"imageName":"glaring aegis","watermark":null,"setCode":"DTK","imageCode":"dtk","count":2},"127028":{"name":"Sentinel Sliver","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Creature — Sliver","rarity":"Common","text":"Sliver creatures you control have vigilance. (Attacking doesn't cause them to tap.)","flavor":"Through its watchful gaze, all slivers may see.","artist":"Maciej Kuciara","number":"30","power":"2","toughness":"2","loyalty":null,"multiverseid":370813,"imageName":"sentinel sliver","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1592367":{"name":"Akroan Crusader","layout":"normal","manaCost":"{R}","cmc":1,"type":"Creature — Human Soldier","rarity":"Common","text":"Heroic — Whenever you cast a spell that targets Akroan Crusader, put a 1/1 red Soldier creature token with haste onto the battlefield.","flavor":"An Akroan soldier's worth is measured by the number of swords raised by his battle cry.","artist":"Johann Bodin","number":"111","power":"1","toughness":"1","loyalty":null,"multiverseid":373578,"imageName":"akroan crusader","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"131143":{"name":"Rakshasa's Secret","layout":"normal","manaCost":"{2}{B}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Target opponent discards two cards. Put the top two cards of your library into your graveyard.","flavor":"The voice of a rakshasa is soft, its breath sweet. But every word is the murmur of madness.","artist":"Magali Villeneuve","number":"84","power":null,"toughness":null,"loyalty":null,"multiverseid":386633,"imageName":"rakshasa's secret","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"70724":{"name":"Center Soul","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Instant","rarity":"Common","text":"Target creature you control gains protection from the color of your choice until end of turn.\nRebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast this card from exile without paying its mana cost.)","flavor":null,"artist":"Igor Kieryluk","number":"8","power":null,"toughness":null,"loyalty":null,"multiverseid":394514,"imageName":"center soul","watermark":"Ojutai","setCode":"DTK","imageCode":"dtk","count":2},"1613904":{"name":"Warden of the Eye","layout":"normal","manaCost":"{2}{U}{R}{W}","cmc":5,"type":"Creature — Djinn Wizard","rarity":"Uncommon","text":"When Warden of the Eye enters the battlefield, return target noncreature, nonland card from your graveyard to your hand.","flavor":"The wardens guard the sacred documents of Tarkir's history, though they are forbidden to read the words.","artist":"Howard Lyon","number":"212","power":"3","toughness":"3","loyalty":null,"multiverseid":386716,"imageName":"warden of the eye","watermark":"Jeskai","setCode":"KTK","imageCode":"ktk","count":1},"1582160":{"name":"Tail Slash","layout":"normal","manaCost":"{2}{R}","cmc":3,"type":"Instant","rarity":"Common","text":"Target creature you control deals damage equal to its power to target creature you don't control.","flavor":"\"Kneel before a dragon and you will be spared when it turns to leave.\"\n—Yikaro, Atarka warrior","artist":"Efrem Palacios","number":"161","power":null,"toughness":null,"loyalty":null,"multiverseid":394727,"imageName":"tail slash","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"131151":{"name":"Warden of Evos Isle","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Creature — Bird Wizard","rarity":"Uncommon","text":"Flying\nCreature spells with flying you cast cost {1} less to cast.","flavor":"On Evos Isle, the swift and formidable aven enforce the will of the ruling sphinxes.","artist":"Nils Hamm","number":"79","power":"2","toughness":"2","loyalty":null,"multiverseid":370815,"imageName":"warden of evos isle","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1577047":{"name":"Voice of Resurgence","layout":"normal","manaCost":"{G}{W}","cmc":2,"type":"Creature — Elemental","rarity":"Mythic Rare","text":"Whenever an opponent casts a spell during your turn or when Voice of Resurgence dies, put a green and white Elemental creature token onto the battlefield with \"This creature's power and toughness are each equal to the number of creatures you control.\"","flavor":null,"artist":"Winona Nelson","number":"114","power":"2","toughness":"2","loyalty":null,"multiverseid":368951,"imageName":"voice of resurgence","watermark":"Selesnya","setCode":"DGM","imageCode":"dgm","count":1},"1582152":{"name":"Scab-Clan Charger","layout":"normal","manaCost":"{3}{G}","cmc":4,"type":"Creature — Centaur Warrior","rarity":"Common","text":"Bloodrush — {1}{G}, Discard Scab-Clan Charger: Target attacking creature gets +2/+4 until end of turn.","flavor":"\"The only roads I wish to see are those beaten flat by wild hooves.\"","artist":"Nils Hamm","number":"131","power":"2","toughness":"4","loyalty":null,"multiverseid":366410,"imageName":"scab-clan charger","watermark":"Gruul","setCode":"GTC","imageCode":"gtc","count":1},"128082":{"name":"Archaeomancer","layout":"normal","manaCost":"{2}{U}{U}","cmc":4,"type":"Creature — Human Wizard","rarity":"Common","text":"When Archaeomancer enters the battlefield, return target instant or sorcery card from your graveyard to your hand.","flavor":"\"Words of power never disappear. They sleep, awaiting those with the will to rouse them.\"","artist":"Zoltan Boros","number":"43","power":"1","toughness":"2","loyalty":null,"multiverseid":370753,"imageName":"archaeomancer","watermark":null,"setCode":"M14","imageCode":"m14","count":3},"129106":{"name":"Frost Lynx","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Creature — Elemental Cat","rarity":"Common","text":"When Frost Lynx enters the battlefield, tap target creature an opponent controls. That creature doesn't untap during its controller's next untap step.","flavor":"It readily attacks much larger prey, knowing retaliation is impossible.","artist":"Izzy","number":"55","power":"2","toughness":"2","loyalty":null,"multiverseid":383248,"imageName":"frost lynx","watermark":null,"setCode":"M15","imageCode":"m15","count":3},"1595467":{"name":"Agent of Horizons","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Creature — Human Rogue","rarity":"Common","text":"{2}{U}: Agent of Horizons can't be blocked this turn.","flavor":"The light in the woods just before dawn reveals a glimmering network of branches, roots, and spiderwebs. The acolytes of Kruphix walk this lattice unseen.","artist":"Clint Cearley","number":"148","power":"3","toughness":"2","loyalty":null,"multiverseid":373712,"imageName":"agent of horizons","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1586252":{"name":"Kin-Tree Warden","layout":"normal","manaCost":"{G}","cmc":1,"type":"Creature — Human Warrior","rarity":"Common","text":"{2}: Regenerate Kin-Tree Warden.\nMorph {G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)","flavor":"\"The amber of the tree and the blood of my veins are the same.\"","artist":"Volkan Baga","number":"139","power":"1","toughness":"1","loyalty":null,"multiverseid":386584,"imageName":"kin-tree warden","watermark":"Abzan","setCode":"KTK","imageCode":"ktk","count":1},"1585229":{"name":"Revealing Wind","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Instant","rarity":"Common","text":"Prevent all combat damage that would be dealt this turn. You may look at each face-down creature that's attacking or blocking.","flavor":"\"The sands obscure the vision of others, but clarify ours.\"\n—Faiso, Dromoka commander","artist":"Phill Simmer","number":"197","power":null,"toughness":null,"loyalty":null,"multiverseid":394665,"imageName":"revealing wind","watermark":null,"setCode":"DTK","imageCode":"dtk","count":2},"117844":{"name":"Gleam of Authority","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Enchantment — Aura","rarity":"Rare","text":"Enchant creature\nEnchanted creature gets +1/+1 for each +1/+1 counter on other creatures you control.\nEnchanted creature has vigilance and \"{W}, {T}: Bolster 1.\" (To bolster 1, choose a creature with the least toughness among creatures you control and put a +1/+1 counter on it.)","flavor":null,"artist":"Jakub Kasper","number":"19","power":null,"toughness":null,"loyalty":null,"multiverseid":394582,"imageName":"gleam of authority","watermark":"Dromoka","setCode":"DTK","imageCode":"dtk","count":1},"1583183":{"name":"Bring Low","layout":"normal","manaCost":"{3}{R}","cmc":4,"type":"Instant","rarity":"Common","text":"Bring Low deals 3 damage to target creature. If that creature has a +1/+1 counter on it, Bring Low deals 5 damage to it instead.","flavor":"\"People are often humbled by the elements. But the elements, too, can be humbled.\"\n—Surrak, khan of the Temur","artist":"Slawomir Maniak","number":"103","power":null,"toughness":null,"loyalty":null,"multiverseid":386499,"imageName":"bring low","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"1623119":{"name":"Traveler's Amulet","layout":"normal","manaCost":"{1}","cmc":1,"type":"Artifact","rarity":"Common","text":"{1}, Sacrifice Traveler's Amulet: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.","flavor":"\"What we call magic is nothing more than hope crystallized into a destination.\"\n—Perisophia the philosopher","artist":"Franz Vohwinkel","number":"221","power":null,"toughness":null,"loyalty":null,"multiverseid":373690,"imageName":"traveler's amulet","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1591375":{"name":"Pharika's Cure","layout":"normal","manaCost":"{B}{B}","cmc":2,"type":"Instant","rarity":"Common","text":"Pharika's Cure deals 2 damage to target creature and you gain 2 life.","flavor":"\"The venom cleanses the sickness from your body, but it will not be pleasant, and you may not survive. Pharika's blessings are fickle.\"\n—Solon, acolyte of Pharika","artist":"Igor Kieryluk","number":"100","power":null,"toughness":null,"loyalty":null,"multiverseid":373722,"imageName":"pharika's cure","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"84061":{"name":"Avenging Arrow","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Instant","rarity":"Common","text":"Destroy target creature that dealt damage this turn.","flavor":"\"Forgive the theft. Punish the deception.\"\n—Alcarus, Selesnya archer","artist":"James Ryman","number":"4","power":null,"toughness":null,"loyalty":null,"multiverseid":265410,"imageName":"avenging arrow","watermark":null,"setCode":"RTR","imageCode":"rtr","count":1},"70755":{"name":"Champion of Arashin","layout":"normal","manaCost":"{3}{W}","cmc":4,"type":"Creature — Hound Warrior","rarity":"Common","text":"Lifelink (Damage dealt by this creature also causes you to gain that much life.)","flavor":"\"The blood of Dromoka and the blood of my veins are the same.\"","artist":"Joseph Meehan","number":"9","power":"3","toughness":"2","loyalty":null,"multiverseid":394515,"imageName":"champion of arashin","watermark":"Dromoka","setCode":"DTK","imageCode":"dtk","count":1},"138343":{"name":"Triton Shorethief","layout":"normal","manaCost":"{U}","cmc":1,"type":"Creature — Merfolk Rogue","rarity":"Common","text":null,"flavor":"At sunrise, the Champion and her companions awoke to find their supplies gone and Brygus, their sentry, dead. Carefully arranged piles of ornamental shells gave a clear warning: go no further.\n—The Theriad","artist":"Howard Lyon","number":"70","power":"1","toughness":"2","loyalty":null,"multiverseid":373551,"imageName":"triton shorethief","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1581168":{"name":"Rending Volley","layout":"normal","manaCost":"{R}","cmc":1,"type":"Instant","rarity":"Uncommon","text":"Rending Volley can't be countered by spells or abilities.\nRending Volley deals 4 damage to target white or blue creature.","flavor":"The sky offers few hiding places.","artist":"Lucas Graciano","number":"150","power":null,"toughness":null,"loyalty":null,"multiverseid":394663,"imageName":"rending volley","watermark":null,"setCode":"DTK","imageCode":"dtk","count":2},"1584232":{"name":"Dismal Backwater","layout":"normal","manaCost":null,"cmc":null,"type":"Land","rarity":"Common","text":"Dismal Backwater enters the battlefield tapped.\nWhen Dismal Backwater enters the battlefield, you gain 1 life.\n{T}: Add {U} or {B} to your mana pool.","flavor":null,"artist":"Sam Burley","number":"168","power":null,"toughness":null,"loyalty":null,"multiverseid":391820,"imageName":"dismal backwater","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"129136":{"name":"Frost Breath","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Instant","rarity":"Common","text":"Tap up to two target creatures. Those creatures don't untap during their controller's next untap step.","flavor":"\"I'll make ice chimes of your bones.\"","artist":"Mike Bierek","number":"56","power":null,"toughness":null,"loyalty":null,"multiverseid":370678,"imageName":"frost breath","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"126067":{"name":"Griffin Sentinel","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Creature — Griffin","rarity":"Common","text":"Flying\nVigilance (Attacking doesn't cause this creature to tap.)","flavor":"Once a griffin sentinel adopts a territory as its own, only death can force it to betray its post.","artist":"Warren Mahy","number":"20","power":"1","toughness":"3","loyalty":null,"multiverseid":370792,"imageName":"griffin sentinel","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"127090":{"name":"Serra Angel","layout":"normal","manaCost":"{3}{W}{W}","cmc":5,"type":"Creature — Angel","rarity":"Uncommon","text":"Flying (This creature can't be blocked except by creatures with flying or reach.)\nVigilance (Attacking doesn't cause this creature to tap.)","flavor":"Follow the light. In its absence, follow her.","artist":"Greg Staples","number":"32","power":"4","toughness":"4","loyalty":null,"multiverseid":370602,"imageName":"serra angel","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1585260":{"name":"Salt Road Ambushers","layout":"normal","manaCost":"{3}{G}","cmc":4,"type":"Creature — Hound Warrior","rarity":"Uncommon","text":"Whenever another permanent you control is turned face up, if it's a creature, put two +1/+1 counters on it.\nMegamorph {3}{G}{G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)","flavor":null,"artist":"Joseph Meehan","number":"198","power":"3","toughness":"3","loyalty":null,"multiverseid":394670,"imageName":"salt road ambushers","watermark":"Dromoka","setCode":"DTK","imageCode":"dtk","count":1},"1593452":{"name":"Ill-Tempered Cyclops","layout":"normal","manaCost":"{3}{R}","cmc":4,"type":"Creature — Cyclops","rarity":"Common","text":"Trample\n{5}{R}: Monstrosity 3. (If this creature isn't monstrous, put three +1/+1 counters on it and it becomes monstrous.)","flavor":"A cyclops has two moods: angry and asleep.","artist":"Peter Mohrbacher","number":"125","power":"3","toughness":"3","loyalty":null,"multiverseid":373545,"imageName":"ill-tempered cyclops","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1584237":{"name":"Mardu Heart-Piercer","layout":"normal","manaCost":"{3}{R}","cmc":4,"type":"Creature — Human Archer","rarity":"Uncommon","text":"Raid — When Mardu Heart-Piercer enters the battlefield, if you attacked with a creature this turn, Mardu Heart-Piercer deals 2 damage to target creature or player.","flavor":"\"Those who have never ridden before the wind do not know the true joy of war.\"","artist":"Karl Kopinski","number":"116","power":"2","toughness":"3","loyalty":null,"multiverseid":386595,"imageName":"mardu heart-piercer","watermark":"Mardu","setCode":"KTK","imageCode":"ktk","count":1},"1614958":{"name":"Sultai Banner","layout":"normal","manaCost":"{3}","cmc":3,"type":"Artifact","rarity":"Common","text":"{T}: Add {B}, {G}, or {U} to your mana pool.\n{B}{G}{U}, {T}, Sacrifice Sultai Banner: Draw a card.","flavor":"Power to dominate, cruelty to rule.","artist":"Daniel Ljunggren","number":"225","power":null,"toughness":null,"loyalty":null,"multiverseid":386675,"imageName":"sultai banner","watermark":"Sultai","setCode":"KTK","imageCode":"ktk","count":2},"1583214":{"name":"Atarka Beastbreaker","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Creature — Human Warrior","rarity":"Common","text":"Formidable — {4}{G}: Atarka Beastbreaker gets +4/+4 until end of turn. Activate this ability only if creatures you control have total power 8 or greater.","flavor":"He scorns the heavy winter garb of lesser warriors, trusting his anger to keep him warm.","artist":"Johannes Voss","number":"174","power":"2","toughness":"2","loyalty":null,"multiverseid":394498,"imageName":"atarka beastbreaker","watermark":"Atarka","setCode":"DTK","imageCode":"dtk","count":2},"1591406":{"name":"Read the Bones","layout":"normal","manaCost":"{2}{B}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Scry 2, then draw two cards. You lose 2 life. (To scry 2, look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)","flavor":"The dead know lessons the living haven't learned.","artist":"Lars Grant-West","number":"101","power":null,"toughness":null,"loyalty":null,"multiverseid":373725,"imageName":"read the bones","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"128128":{"name":"Firefist Striker","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Creature — Human Soldier","rarity":"Uncommon","text":"Battalion — Whenever Firefist Striker and at least two other creatures attack, target creature can't block this turn.","flavor":"The flaming fist of Boros holds the promise of both protection and destruction in its grasp.","artist":"Tyler Jacobson","number":"90","power":"2","toughness":"1","loyalty":null,"multiverseid":366311,"imageName":"firefist striker","watermark":"Boros","setCode":"GTC","imageCode":"gtc","count":1},"132228":{"name":"Arrow Storm","layout":"normal","manaCost":"{3}{R}{R}","cmc":5,"type":"Sorcery","rarity":"Common","text":"Arrow Storm deals 4 damage to target creature or player.\nRaid — If you attacked with a creature this turn, instead Arrow Storm deals 5 damage to that creature or player and the damage can't be prevented.","flavor":"First the thunder, then the rain.","artist":"Steve Prescott","number":"98","power":null,"toughness":null,"loyalty":null,"multiverseid":386481,"imageName":"arrow storm","watermark":"Mardu","setCode":"KTK","imageCode":"ktk","count":2},"128136":{"name":"Quiet Contemplation","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Enchantment","rarity":"Uncommon","text":"Whenever you cast a noncreature spell, you may pay {1}. If you do, tap target creature an opponent controls and it doesn't untap during its controller's next untap step.","flavor":null,"artist":"Magali Villeneuve","number":"50","power":null,"toughness":null,"loyalty":null,"multiverseid":386629,"imageName":"quiet contemplation","watermark":"Jeskai","setCode":"KTK","imageCode":"ktk","count":1},"1611912":{"name":"Gruul Keyrune","layout":"normal","manaCost":"{3}","cmc":3,"type":"Artifact","rarity":"Uncommon","text":"{T}: Add {R} or {G} to your mana pool.\n{R}{G}: Gruul Keyrune becomes a 3/2 red and green Beast artifact creature with trample until end of turn.","flavor":"As perilous and unpredictable as the wilds themselves.","artist":"Daniel Ljunggren","number":"230","power":null,"toughness":null,"loyalty":null,"multiverseid":366443,"imageName":"gruul keyrune","watermark":"Gruul","setCode":"GTC","imageCode":"gtc","count":1},"128144":{"name":"Cancel","layout":"normal","manaCost":"{1}{U}{U}","cmc":3,"type":"Instant","rarity":"Common","text":"Counter target spell.","flavor":null,"artist":"David Palumbo","number":"45","power":null,"toughness":null,"loyalty":null,"multiverseid":370755,"imageName":"cancel","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1581194":{"name":"Hunt the Weak","layout":"normal","manaCost":"{3}{G}","cmc":4,"type":"Sorcery","rarity":"Common","text":"Put a +1/+1 counter on target creature you control. Then that creature fights target creature you don't control. (Each deals damage equal to its power to the other.)","flavor":"Dragons scorn the weak, even among their own kind.","artist":"Lars Grant-West","number":"133","power":null,"toughness":null,"loyalty":null,"multiverseid":391858,"imageName":"hunt the weak","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"126098":{"name":"Hive Stirrings","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Put two 1/1 colorless Sliver creature tokens onto the battlefield.","flavor":"Sliver young are sorted into clutches according to their potential and their future role. Human scholars can only guess how those are determined.","artist":"Maciej Kuciara","number":"21","power":null,"toughness":null,"loyalty":null,"multiverseid":370817,"imageName":"hive stirrings","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1585291":{"name":"Awaken the Bear","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Instant","rarity":"Common","text":"Target creature gets +3/+3 and gains trample until end of turn.","flavor":"When Temur warriors enter the battle trance known as \"awakening the bear,\" they lose all sense of enemy or friend, seeing only threats to the wilderness.","artist":"Svetlin Velinov","number":"129","power":null,"toughness":null,"loyalty":null,"multiverseid":386484,"imageName":"awaken the bear","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"1583245":{"name":"Canyon Lurkers","layout":"normal","manaCost":"{4}{R}","cmc":5,"type":"Creature — Human Rogue","rarity":"Common","text":"Morph {3}{R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)","flavor":"The broken Qal Sisma foothills make poor terrain for cavalry, but a perfect setting for ambushes.","artist":"Cynthia Sheppard","number":"105","power":"5","toughness":"2","loyalty":null,"multiverseid":386503,"imageName":"canyon lurkers","watermark":"Mardu","setCode":"KTK","imageCode":"ktk","count":1},"1579149":{"name":"Ragemonger","layout":"normal","manaCost":"{1}{B}{R}","cmc":3,"type":"Creature — Minotaur Shaman","rarity":"Uncommon","text":"Minotaur spells you cast cost {B}{R} less to cast. This effect reduces only the amount of colored mana you pay. (For example, if you cast a Minotaur spell with mana cost {2}{R}, it costs {2} to cast.)","flavor":null,"artist":"Karl Kopinski","number":"153","power":"2","toughness":"3","loyalty":null,"multiverseid":378525,"imageName":"ragemonger","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"1591437":{"name":"Rescue from the Underworld","layout":"normal","manaCost":"{4}{B}","cmc":5,"type":"Instant","rarity":"Uncommon","text":"As an additional cost to cast Rescue from the Underworld, sacrifice a creature.\nChoose target creature card in your graveyard. Return that card and the sacrificed card to the battlefield under your control at the beginning of your next upkeep. Exile Rescue from the Underworld.","flavor":null,"artist":"Raymond Swanland","number":"102","power":null,"toughness":null,"loyalty":null,"multiverseid":373532,"imageName":"rescue from the underworld","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1582222":{"name":"Tormenting Voice","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Sorcery","rarity":"Common","text":"As an additional cost to cast Tormenting Voice, discard a card.\nDraw two cards.","flavor":"A mocking laughter echoed in Ugin's mind. How many centuries had he slumbered, stricken, while Nicol Bolas moved unchallenged among the planes?","artist":"Volkan Baga","number":"163","power":null,"toughness":null,"loyalty":null,"multiverseid":394731,"imageName":"tormenting voice","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"1581199":{"name":"Roast","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Sorcery","rarity":"Uncommon","text":"Roast deals 5 damage to target creature without flying.","flavor":"\"Intruders in the lands of Atarka have but two choices: be consumed by fire, or be consumed by maw.\"\n—Ulnok, Atarka shaman","artist":"Zoltan Boros","number":"151","power":null,"toughness":null,"loyalty":null,"multiverseid":394667,"imageName":"roast","watermark":null,"setCode":"DTK","imageCode":"dtk","count":2},"1584260":{"name":"Drakewing Krasis","layout":"normal","manaCost":"{1}{G}{U}","cmc":3,"type":"Creature — Lizard Drake","rarity":"Common","text":"Flying, trample","flavor":"Cautious not to repeat Vig's mistakes, the Simic fuse life essences using magic alone. Each result is called a krasis.","artist":"Johann Bodin","number":"157","power":"3","toughness":"1","loyalty":null,"multiverseid":366292,"imageName":"drakewing krasis","watermark":"Simic","setCode":"GTC","imageCode":"gtc","count":1},"1584263":{"name":"Jungle Hollow","layout":"normal","manaCost":null,"cmc":null,"type":"Land","rarity":"Common","text":"Jungle Hollow enters the battlefield tapped.\nWhen Jungle Hollow enters the battlefield, you gain 1 life.\n{T}: Add {B} or {G} to your mana pool.","flavor":null,"artist":"Eytan Zana","number":"169","power":null,"toughness":null,"loyalty":null,"multiverseid":391865,"imageName":"jungle hollow","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"140451":{"name":"March of the Returned","layout":"normal","manaCost":"{3}{B}","cmc":4,"type":"Sorcery","rarity":"Common","text":"Return up to two target creature cards from your graveyard to your hand.","flavor":"The Returned have no memory of the Underworld or of their former lives. The golden masks they wear are the last gifts of the selves they left behind.","artist":"Mark Zug","number":"96","power":null,"toughness":null,"loyalty":null,"multiverseid":373579,"imageName":"march of the returned","watermark":null,"setCode":"THS","imageCode":"ths","count":2},"128167":{"name":"Riverwheel Aerialists","layout":"normal","manaCost":"{5}{U}","cmc":6,"type":"Creature — Djinn Monk","rarity":"Uncommon","text":"Flying\nProwess (Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)","flavor":"Adepts of the Riverwheel Stronghold can run through rain and never get wet; masters use the raindrops as stepping stones.","artist":"Jack Wang","number":"51","power":"4","toughness":"5","loyalty":null,"multiverseid":386638,"imageName":"riverwheel aerialists","watermark":"Jeskai","setCode":"KTK","imageCode":"ktk","count":1},"138405":{"name":"Vaporkin","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Creature — Elemental","rarity":"Common","text":"Flying\nVaporkin can block only creatures with flying.","flavor":"\"Mists are carefree. They drift where they will, unencumbered by rocks and river beds.\"\n—Thrasios, triton hero","artist":"Seb McKinnon","number":"72","power":"2","toughness":"1","loyalty":null,"multiverseid":373547,"imageName":"vaporkin","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"129190":{"name":"Whirlwind Adept","layout":"normal","manaCost":"{4}{U}","cmc":5,"type":"Creature — Djinn Monk","rarity":"Common","text":"Hexproof (This creature can't be the target of spells or abilities your opponents control.)\nProwess (Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)","flavor":null,"artist":"Steve Argyle","number":"63","power":"4","toughness":"2","loyalty":null,"multiverseid":386722,"imageName":"whirlwind adept","watermark":"Jeskai","setCode":"KTK","imageCode":"ktk","count":2},"1594537":{"name":"Satyr Rambler","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Creature — Satyr","rarity":"Common","text":"Trample","flavor":"A satyr is bound by nothing—not home, not family, not loyalty.","artist":"John Stanko","number":"139","power":"2","toughness":"1","loyalty":null,"multiverseid":373737,"imageName":"satyr rambler","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1581225":{"name":"Map the Wastes","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Search your library for a basic land card, put it onto the battlefield tapped, then shuffle your library. Bolster 1. (Choose a creature with the least toughness among creatures you control and put a +1/+1 counter on it.)","flavor":null,"artist":"Volkan Baga","number":"134","power":null,"toughness":null,"loyalty":null,"multiverseid":391871,"imageName":"map the wastes","watermark":"Abzan","setCode":"FRF","imageCode":"frf","count":1},"1580202":{"name":"Ambush Krotiq","layout":"normal","manaCost":"{5}{G}","cmc":6,"type":"Creature — Insect","rarity":"Common","text":"Trample\nWhen Ambush Krotiq enters the battlefield, return another creature you control to its owner's hand.","flavor":"The Abzan merchants soon discovered why this route was clear of dragons.","artist":"Filip Burburan","number":"122","power":"5","toughness":"5","loyalty":null,"multiverseid":391789,"imageName":"ambush krotiq","watermark":"Abzan","setCode":"FRF","imageCode":"frf","count":1},"1593514":{"name":"Lightning Strike","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Instant","rarity":"Common","text":"Lightning Strike deals 3 damage to target creature or player.","flavor":"\"The hand of Keranos can be seen in every rumbling storm cloud. Best not to stand where he points.\"\n—Rakleia of Shrine Peak","artist":"Adam Paquette","number":"127","power":null,"toughness":null,"loyalty":null,"multiverseid":373651,"imageName":"lightning strike","watermark":null,"setCode":"THS","imageCode":"ths","count":3},"1584299":{"name":"Glade Watcher","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Creature — Elemental","rarity":"Common","text":"Defender\nFormidable — {G}: Glade Watcher can attack this turn as though it didn't have defender. Activate this ability only if creatures you control have total power 8 or greater.","flavor":null,"artist":"Jesper Ejsing","number":"188","power":"3","toughness":"3","loyalty":null,"multiverseid":394580,"imageName":"glade watcher","watermark":"Atarka","setCode":"DTK","imageCode":"dtk","count":2},"1579179":{"name":"Outpost Siege","layout":"normal","manaCost":"{3}{R}","cmc":4,"type":"Enchantment","rarity":"Rare","text":"As Outpost Siege enters the battlefield, choose Khans or Dragons.\n• Khans — At the beginning of your upkeep, exile the top card of your library. Until end of turn, you may play that card.\n• Dragons — Whenever a creature you control leaves the battlefield, Outpost Siege deals 1 damage to target creature or player.","flavor":null,"artist":"Daarken","number":"110","power":null,"toughness":null,"loyalty":null,"multiverseid":391891,"imageName":"outpost siege","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"1583276":{"name":"Circle of Elders","layout":"normal","manaCost":"{2}{G}{G}","cmc":4,"type":"Creature — Human Shaman","rarity":"Uncommon","text":"Vigilance\nFormidable — {T}: Add {3} to your mana pool. Activate this ability only if creatures you control have total power 8 or greater.","flavor":"They whisper of an ancient hero who saved the dragons of their world.","artist":"Jakub Kasper","number":"176","power":"2","toughness":"4","loyalty":null,"multiverseid":394516,"imageName":"circle of elders","watermark":"Atarka","setCode":"DTK","imageCode":"dtk","count":3},"1613997":{"name":"Abzan Banner","layout":"normal","manaCost":"{3}","cmc":3,"type":"Artifact","rarity":"Common","text":"{T}: Add {W}, {B}, or {G} to your mana pool.\n{W}{B}{G}, {T}, Sacrifice Abzan Banner: Draw a card.","flavor":"Stone to endure, roots to remember.","artist":"Daniel Ljunggren","number":"215","power":null,"toughness":null,"loyalty":null,"multiverseid":386465,"imageName":"abzan banner","watermark":"Abzan","setCode":"KTK","imageCode":"ktk","count":1},"1578157":{"name":"Swordwise Centaur","layout":"normal","manaCost":"{G}{G}","cmc":2,"type":"Creature — Centaur Warrior","rarity":"Common","text":null,"flavor":"The girl who would become the Champion of the Sun hacked furiously at the practice dummy. At last she stopped, breathing heavily, and looked up at her instructor.\n\"So much anger,\" said the centaur. \"I will teach you the ways of war, child. But first you must make peace with yourself.\"\n—The Theriad","artist":"Slawomir Maniak","number":"142","power":"3","toughness":"2","loyalty":null,"multiverseid":378514,"imageName":"swordwise centaur","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"1581230":{"name":"Sabertooth Outrider","layout":"normal","manaCost":"{3}{R}","cmc":4,"type":"Creature — Human Warrior","rarity":"Common","text":"Trample\nFormidable — Whenever Sabertooth Outrider attacks, if creatures you control have total power 8 or greater, Sabertooth Outrider gains first strike until end of turn.","flavor":null,"artist":"Winona Nelson","number":"152","power":"4","toughness":"2","loyalty":null,"multiverseid":394669,"imageName":"sabertooth outrider","watermark":"Atarka","setCode":"DTK","imageCode":"dtk","count":2},"1621166":{"name":"Psychic Intrusion","layout":"normal","manaCost":"{3}{U}{B}","cmc":5,"type":"Sorcery","rarity":"Rare","text":"Target opponent reveals his or her hand. You choose a nonland card from that player's graveyard or hand and exile it. You may cast that card for as long as it remains exiled, and you may spend mana as though it were mana of any color to cast that spell.","flavor":null,"artist":"Jaime Jones","number":"200","power":null,"toughness":null,"loyalty":null,"multiverseid":373695,"imageName":"psychic intrusion","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1580207":{"name":"Impact Tremors","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Enchantment","rarity":"Common","text":"Whenever a creature enters the battlefield under your control, Impact Tremors deals 1 damage to each opponent.","flavor":"\"If their ears are to the ground, we will make them bleed!\"\n—Taklai, Kolaghan warrior","artist":"Lake Hurwitz","number":"140","power":null,"toughness":null,"loyalty":null,"multiverseid":394600,"imageName":"impact tremors","watermark":null,"setCode":"DTK","imageCode":"dtk","count":3},"1583268":{"name":"Biovisionary","layout":"normal","manaCost":"{1}{G}{U}","cmc":3,"type":"Creature — Human Wizard","rarity":"Rare","text":"At the beginning of the end step, if you control four or more creatures named Biovisionary, you win the game.","flavor":"He tired of his fellow researchers and their useless prattling, so he decided to make a network of scholars with whom he could carry a conversation.","artist":"Ryan Barger","number":"146","power":"2","toughness":"3","loyalty":null,"multiverseid":366414,"imageName":"biovisionary","watermark":"Simic","setCode":"GTC","imageCode":"gtc","count":1},"1612966":{"name":"Gruul Guildgate","layout":"normal","manaCost":null,"cmc":null,"type":"Land — Gate","rarity":"Common","text":"Gruul Guildgate enters the battlefield tapped.\n{T}: Add {R} or {G} to your mana pool.","flavor":"Enter and leave the shackles of society behind.","artist":"Randy Gallegos","number":"243","power":null,"toughness":null,"loyalty":null,"multiverseid":366253,"imageName":"gruul guildgate","watermark":"Gruul","setCode":"GTC","imageCode":"gtc","count":1},"127167":{"name":"Syndicate Enforcer","layout":"normal","manaCost":"{3}{B}","cmc":4,"type":"Creature — Human Rogue","rarity":"Common","text":"Extort (Whenever you cast a spell, you may pay {W/B}. If you do, each opponent loses 1 life and you gain that much life.)","flavor":"Even the darkest corners of Ravnica still lie in the shadow of the Church.","artist":"Steven Belledin","number":"80","power":"3","toughness":"2","loyalty":null,"multiverseid":366243,"imageName":"syndicate enforcer","watermark":"Orzhov","setCode":"GTC","imageCode":"gtc","count":1},"128190":{"name":"Foundry Street Denizen","layout":"normal","manaCost":"{R}","cmc":1,"type":"Creature — Goblin Warrior","rarity":"Common","text":"Whenever another red creature enters the battlefield under your control, Foundry Street Denizen gets +1/+0 until end of turn.","flavor":"After the Foundry Street riot, Arrester Hulbein tried to ban bludgeons. Which, inevitably, resulted in another riot.","artist":"Raoul Vitale","number":"92","power":"1","toughness":"1","loyalty":null,"multiverseid":366472,"imageName":"foundry street denizen","watermark":null,"setCode":"GTC","imageCode":"gtc","count":1},"131267":{"name":"Ruthless Ripper","layout":"normal","manaCost":"{B}","cmc":1,"type":"Creature — Human Assassin","rarity":"Uncommon","text":"Deathtouch\nMorph—Reveal a black card in your hand. (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)\nWhen Ruthless Ripper is turned face up, target player loses 2 life.","flavor":null,"artist":"Clint Cearley","number":"88","power":"1","toughness":"1","loyalty":null,"multiverseid":386643,"imageName":"ruthless ripper","watermark":"Sultai","setCode":"KTK","imageCode":"ktk","count":1},"130244":{"name":"Kheru Dreadmaw","layout":"normal","manaCost":"{4}{B}","cmc":5,"type":"Creature — Zombie Crocodile","rarity":"Common","text":"Defender\n{1}{G}, Sacrifice another creature: You gain life equal to the sacrificed creature's toughness.","flavor":"Its hunting instincts have long since rotted away. Its hunger, however, remains.","artist":"Ryan Yee","number":"76","power":"4","toughness":"4","loyalty":null,"multiverseid":386579,"imageName":"kheru dreadmaw","watermark":"Sultai","setCode":"KTK","imageCode":"ktk","count":3},"138436":{"name":"Voyage's End","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Instant","rarity":"Common","text":"Return target creature to its owner's hand. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)","flavor":"Philosophers say those lost at sea ascended to a more perfect realm. Sailors say they drowned.","artist":"Chris Rahn","number":"73","power":null,"toughness":null,"loyalty":null,"multiverseid":373527,"imageName":"voyage's end","watermark":null,"setCode":"THS","imageCode":"ths","count":2},"128198":{"name":"Scaldkin","layout":"normal","manaCost":"{3}{U}","cmc":4,"type":"Creature — Elemental","rarity":"Common","text":"Flying\n{2}{R}, Sacrifice Scaldkin: Scaldkin deals 2 damage to target creature or player.","flavor":"The Temur believe that scaldkin are born when eruptions melt the frozen whispers of sleeping ancestors.","artist":"Cliff Childs","number":"52","power":"2","toughness":"2","loyalty":null,"multiverseid":386653,"imageName":"scaldkin","watermark":"Temur","setCode":"KTK","imageCode":"ktk","count":1},"125137":{"name":"Capashen Knight","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Creature — Human Knight","rarity":"Common","text":"First strike (This creature deals combat damage before creatures without first strike.)\n{1}{W}: Capashen Knight gets +1/+0 until end of turn.","flavor":"He protects Benalia as much with his reputation as with his force of arms.","artist":"Jasper Sandner","number":"11","power":"1","toughness":"1","loyalty":null,"multiverseid":370821,"imageName":"capashen knight","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"127184":{"name":"Soulmender","layout":"normal","manaCost":"{W}","cmc":1,"type":"Creature — Human Cleric","rarity":"Common","text":"{T}: You gain 1 life.","flavor":"\"Healing is more art than magic. Well, there is still quite a bit of magic.\"","artist":"James Ryman","number":"35","power":"1","toughness":"1","loyalty":null,"multiverseid":383393,"imageName":"soulmender","watermark":null,"setCode":"M15","imageCode":"m15","count":2},"1582284":{"name":"Vandalize","layout":"normal","manaCost":"{4}{R}","cmc":5,"type":"Sorcery","rarity":"Common","text":"Choose one or both —\n• Destroy target artifact.\n• Destroy target land.","flavor":"\"As we have learned from Kolaghan, to ruin is to rule.\"\n—Shensu, Kolaghan rider","artist":"Ryan Barger","number":"165","power":null,"toughness":null,"loyalty":null,"multiverseid":394737,"imageName":"vandalize","watermark":null,"setCode":"DTK","imageCode":"dtk","count":2},"1581261":{"name":"Sarkhan's Rage","layout":"normal","manaCost":"{4}{R}","cmc":5,"type":"Instant","rarity":"Common","text":"Sarkhan's Rage deals 5 damage to target creature or player. If you control no Dragons, Sarkhan's Rage deals 2 damage to you.","flavor":"The people of Tarkir speak of an ancient legend, of the dragon-man called Sarkhan who was greatest of all khans.","artist":"Chris Rahn","number":"153","power":null,"toughness":null,"loyalty":null,"multiverseid":394676,"imageName":"sarkhan's rage","watermark":null,"setCode":"DTK","imageCode":"dtk","count":2},"128221":{"name":"Furious Resistance","layout":"normal","manaCost":"{R}","cmc":1,"type":"Instant","rarity":"Common","text":"Target blocking creature gets +3/+0 and gains first strike until end of turn.","flavor":"\"At least the Gateless rebels have ideals. Rakdos just mocks, defiles, and kills all we hold dear.\"\n—Libuse, Boros sergeant","artist":"Slawomir Maniak","number":"93","power":null,"toughness":null,"loyalty":null,"multiverseid":366309,"imageName":"furious resistance","watermark":null,"setCode":"GTC","imageCode":"gtc","count":1},"1582279":{"name":"Winds of Qal Sisma","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Instant","rarity":"Uncommon","text":"Prevent all combat damage that would be dealt this turn.\nFerocious — If you control a creature with power 4 or greater, instead prevent all combat damage that would be dealt this turn by creatures your opponents control.","flavor":null,"artist":"Howard Lyon","number":"147","power":null,"toughness":null,"loyalty":null,"multiverseid":391962,"imageName":"winds of qal sisma","watermark":"Temur","setCode":"FRF","imageCode":"frf","count":1},"138467":{"name":"Wavecrash Triton","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Creature — Merfolk Wizard","rarity":"Common","text":"Heroic — Whenever you cast a spell that targets Wavecrash Triton, tap target creature an opponent controls. That creature doesn't untap during its controller's next untap step.","flavor":null,"artist":"Ryan Barger","number":"74","power":"1","toughness":"4","loyalty":null,"multiverseid":373534,"imageName":"wavecrash triton","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"130275":{"name":"Krumar Bond-Kin","layout":"normal","manaCost":"{3}{B}{B}","cmc":5,"type":"Creature — Orc Warrior","rarity":"Common","text":"Morph {4}{B} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)","flavor":"\"The Abzan replaced my savagery with a noble heritage. I would give my life for my House.\"","artist":"Kev Walker","number":"77","power":"5","toughness":"3","loyalty":null,"multiverseid":386585,"imageName":"krumar bond-kin","watermark":"Abzan","setCode":"KTK","imageCode":"ktk","count":1},"129252":{"name":"Bitter Revelation","layout":"normal","manaCost":"{3}{B}","cmc":4,"type":"Sorcery","rarity":"Common","text":"Look at the top four cards of your library. Put two of them into your hand and the rest into your graveyard. You lose 2 life.","flavor":"\"Here you lie then, Ugin. The corpses of worlds will join you in the tomb.\"\n—Sorin Markov","artist":"Viktor Titov","number":"65","power":null,"toughness":null,"loyalty":null,"multiverseid":386489,"imageName":"bitter revelation","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"127206":{"name":"Glacial Stalker","layout":"normal","manaCost":"{5}{U}","cmc":6,"type":"Creature — Elemental","rarity":"Common","text":"Morph {4}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)","flavor":"\"Have you spent a winter high in the mountains, where the ice walks and speaks to the wind? It is not a place for those who have not learned respect.\"\n—Ulnok, Temur shaman","artist":"Daarken","number":"41","power":"4","toughness":"5","loyalty":null,"multiverseid":386546,"imageName":"glacial stalker","watermark":"Temur","setCode":"KTK","imageCode":"ktk","count":1},"136421":{"name":"Griptide","layout":"normal","manaCost":"{3}{U}","cmc":4,"type":"Instant","rarity":"Common","text":"Put target creature on top of its owner's library.","flavor":"When the sea god Thassa wishes to speak with a mortal, she does not issue a summons or grant a vision requesting a visit. The sea simply brings her guest before her.","artist":"Adam Paquette","number":"50","power":null,"toughness":null,"loyalty":null,"multiverseid":373519,"imageName":"griptide","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"126191":{"name":"Master of Diversion","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Creature — Human Scout","rarity":"Common","text":"Whenever Master of Diversion attacks, tap target creature defending player controls.","flavor":"Choose your battles carefully. For example, avoid the big guy.","artist":"Michael Komarck","number":"24","power":"2","toughness":"2","loyalty":null,"multiverseid":370708,"imageName":"master of diversion","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"121070":{"name":"Armored Wolf-Rider","layout":"normal","manaCost":"{3}{G}{W}","cmc":5,"type":"Creature — Elf Knight","rarity":"Common","text":null,"flavor":"Wolf-riders of Selesnya apprentice from a young age. Each rider raises a wolf pup from birth to serve as a mount, hoping that one day the two will share the honor of guarding the Great Concourse.","artist":"Matt Stewart","number":"52","power":"4","toughness":"6","loyalty":null,"multiverseid":369082,"imageName":"armored wolf-rider","watermark":"Selesnya","setCode":"DGM","imageCode":"dgm","count":1},"1580264":{"name":"Archers of Qarsi","layout":"normal","manaCost":"{3}{G}","cmc":4,"type":"Creature — Naga Archer","rarity":"Common","text":"Defender\nReach (This creature can block creatures with flying.)","flavor":"\"We think of the naga as creeping cutthroats, slitherers in the swamps. But they are equally at home in the trees.\"\n—Goton, Qal Sisma shaman","artist":"Alejandro Mirabal","number":"124","power":"5","toughness":"2","loyalty":null,"multiverseid":391794,"imageName":"archers of qarsi","watermark":"Sultai","setCode":"FRF","imageCode":"frf","count":1},"1593576":{"name":"Messenger's Speed","layout":"normal","manaCost":"{R}","cmc":1,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nEnchanted creature has trample and haste.","flavor":"\"He outran arrows. He outran even the archers' insults.\"\n—Bayma, storyteller of Lagonna Band","artist":"Clint Cearley","number":"129","power":null,"toughness":null,"loyalty":null,"multiverseid":373699,"imageName":"messenger's speed","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1615082":{"name":"Bloodfell Caves","layout":"normal","manaCost":null,"cmc":null,"type":"Land","rarity":"Common","text":"Bloodfell Caves enters the battlefield tapped.\nWhen Bloodfell Caves enters the battlefield, you gain 1 life.\n{T}: Add {B} or {R} to your mana pool.","flavor":null,"artist":"Adam Paquette","number":"229","power":null,"toughness":null,"loyalty":null,"multiverseid":386491,"imageName":"bloodfell caves","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"1591530":{"name":"Scourgemark","layout":"normal","manaCost":"{1}{B}","cmc":2,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nWhen Scourgemark enters the battlefield, draw a card.\nEnchanted creature gets +1/+0.","flavor":"To members of the cult of Erebos, gold-infused tattoos symbolize the inevitable grasp of the god of death.","artist":"Franz Vohwinkel","number":"105","power":null,"toughness":null,"loyalty":null,"multiverseid":373652,"imageName":"scourgemark","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"124147":{"name":"Oreskos Swiftclaw","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Creature — Cat Warrior","rarity":"Common","text":null,"flavor":"After the Battle of Pharagax Bridge, the Champion spent many months among the leonin of Oreskos. She found that they were quick to take offense, not because they were thin-skinned, but because they were always eager for a fight.\n—The Theriad","artist":"James Ryman","number":"20","power":"3","toughness":"1","loyalty":null,"multiverseid":380466,"imageName":"oreskos swiftclaw","watermark":null,"setCode":"JOU","imageCode":"jou","count":1},"1582315":{"name":"Volcanic Rush","layout":"normal","manaCost":"{4}{R}","cmc":5,"type":"Instant","rarity":"Common","text":"Attacking creatures get +2/+0 and gain trample until end of turn.","flavor":"\"The bravest warriors take the shortest path to victory, whatever that path may be.\"\n—Sakta, Atarka hunter","artist":"Ryan Barger","number":"166","power":null,"toughness":null,"loyalty":null,"multiverseid":394741,"imageName":"volcanic rush","watermark":null,"setCode":"DTK","imageCode":"dtk","count":2},"125170":{"name":"Cloaked Siren","layout":"normal","manaCost":"{3}{U}","cmc":4,"type":"Creature — Siren","rarity":"Common","text":"Flash (You may cast this spell any time you could cast an instant.)\nFlying","flavor":"\"That is not the voice of the wind singing on the stones.\"\n—Callaphe the mariner","artist":"Mark Zug","number":"32","power":"3","toughness":"2","loyalty":null,"multiverseid":380385,"imageName":"cloaked siren","watermark":null,"setCode":"JOU","imageCode":"jou","count":1},"1577196":{"name":"Peregrination","layout":"normal","manaCost":"{3}{G}","cmc":4,"type":"Sorcery","rarity":"Uncommon","text":"Search your library for up to two basic land cards, reveal those cards, and put one onto the battlefield tapped and the other into your hand. Shuffle your library, then scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)","flavor":null,"artist":"Jonas De Ro","number":"132","power":null,"toughness":null,"loyalty":null,"multiverseid":378504,"imageName":"peregrination","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"126209":{"name":"Sibsig Host","layout":"normal","manaCost":"{4}{B}","cmc":5,"type":"Creature — Zombie","rarity":"Common","text":"When Sibsig Host enters the battlefield, each player puts the top three cards of his or her library into his or her graveyard.","flavor":"\"They were your friends, your family, your clan. They want only to welcome you.\"\n—Tasigur, the Golden Fang","artist":"Steve Prescott","number":"82","power":"2","toughness":"6","loyalty":null,"multiverseid":391922,"imageName":"sibsig host","watermark":"Sultai","setCode":"FRF","imageCode":"frf","count":1},"78080":{"name":"Ajani's Pridemate","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Creature — Cat Soldier","rarity":"Uncommon","text":"Whenever you gain life, you may put a +1/+1 counter on Ajani's Pridemate.","flavor":"\"When one of us prospers, the pride prospers.\"\n—Jazal Goldmane","artist":"Svetlin Velinov","number":"2","power":"2","toughness":"2","loyalty":null,"multiverseid":383181,"imageName":"ajani's pridemate","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"140544":{"name":"Ordeal of Erebos","layout":"normal","manaCost":"{1}{B}","cmc":2,"type":"Enchantment — Aura","rarity":"Uncommon","text":"Enchant creature\nWhenever enchanted creature attacks, put a +1/+1 counter on it. Then if it has three or more +1/+1 counters on it, sacrifice Ordeal of Erebos.\nWhen you sacrifice Ordeal of Erebos, target player discards two cards.","flavor":null,"artist":"Tyler Jacobson","number":"99","power":null,"toughness":null,"loyalty":null,"multiverseid":373646,"imageName":"ordeal of erebos","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"130306":{"name":"Mardu Skullhunter","layout":"normal","manaCost":"{1}{B}","cmc":2,"type":"Creature — Human Warrior","rarity":"Common","text":"Mardu Skullhunter enters the battlefield tapped.\nRaid — When Mardu Skullhunter enters the battlefield, if you attacked with a creature this turn, target opponent discards a card.","flavor":null,"artist":"Jason Rainville","number":"78","power":"2","toughness":"1","loyalty":null,"multiverseid":386598,"imageName":"mardu skullhunter","watermark":"Mardu","setCode":"KTK","imageCode":"ktk","count":1},"126214":{"name":"Watcher of the Roost","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Creature — Bird Soldier","rarity":"Uncommon","text":"Flying\nMorph—Reveal a white card in your hand. (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)\nWhen Watcher of the Roost is turned face up, you gain 2 life.","flavor":null,"artist":"Jack Wang","number":"30","power":"2","toughness":"1","loyalty":null,"multiverseid":386718,"imageName":"watcher of the roost","watermark":"Abzan","setCode":"KTK","imageCode":"ktk","count":1},"127245":{"name":"Soulmender","layout":"normal","manaCost":"{W}","cmc":1,"type":"Creature — Human Cleric","rarity":"Common","text":"{T}: You gain 1 life.","flavor":"\"Healing is more art than magic. Well, there is still quite a bit of magic.\"","artist":"James Ryman","number":"37","power":"1","toughness":"1","loyalty":null,"multiverseid":370587,"imageName":"soulmender","watermark":null,"setCode":"M14","imageCode":"m14","count":2},"128269":{"name":"Coral Barrier","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Creature — Wall","rarity":"Common","text":"Defender (This creature can't attack.)\nWhen Coral Barrier enters the battlefield, put a 1/1 blue Squid creature token with islandwalk onto the battlefield. (It can't be blocked as long as defending player controls an Island.)","flavor":null,"artist":"Florian de Gesincourt","number":"49","power":"1","toughness":"3","loyalty":null,"multiverseid":383216,"imageName":"coral barrier","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"126222":{"name":"Pacifism","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nEnchanted creature can't attack or block.","flavor":"For the first time in his life, Grakk felt a little warm and fuzzy inside.","artist":"Robert Bliss","number":"25","power":null,"toughness":null,"loyalty":null,"multiverseid":370812,"imageName":"pacifism","watermark":null,"setCode":"M14","imageCode":"m14","count":2},"120078":{"name":"Battering Krasis","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Creature — Fish Beast","rarity":"Common","text":"Trample\nEvolve (Whenever a creature enters the battlefield under your control, if that creature has greater power or toughness than this creature, put a +1/+1 counter on this creature.)","flavor":null,"artist":"Jack Wang","number":"41","power":"2","toughness":"1","loyalty":null,"multiverseid":368984,"imageName":"battering krasis","watermark":"Simic","setCode":"DGM","imageCode":"dgm","count":1},"1583369":{"name":"Conifer Strider","layout":"normal","manaCost":"{3}{G}","cmc":4,"type":"Creature — Elemental","rarity":"Common","text":"Hexproof (This creature can't be the target of spells or abilities your opponents control.)","flavor":"Atarka's presence thaws the glaciers of Qal Sisma, forcing its elementals to migrate or adapt.","artist":"YW Tang","number":"179","power":"5","toughness":"1","loyalty":null,"multiverseid":394522,"imageName":"conifer strider","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"126224":{"name":"Pin to the Earth","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nEnchanted creature gets -6/-0.","flavor":"\"Mortal strength, like mortal hope, is so easily crushed.\"\n—Thassa, god of the sea","artist":"Johann Bodin","number":"45","power":null,"toughness":null,"loyalty":null,"multiverseid":380473,"imageName":"pin to the earth","watermark":null,"setCode":"JOU","imageCode":"jou","count":1},"1614090":{"name":"Cranial Archive","layout":"normal","manaCost":"{2}","cmc":2,"type":"Artifact","rarity":"Uncommon","text":"{2}, Exile Cranial Archive: Target player shuffles his or her graveyard into his or her library. Draw a card.","flavor":"The greatest idea the zombie ever had in its head wasn't even its own.","artist":"Volkan Baga","number":"218","power":null,"toughness":null,"loyalty":null,"multiverseid":386508,"imageName":"cranial archive","watermark":null,"setCode":"KTK","imageCode":"ktk","count":2},"1622282":{"name":"Flamecast Wheel","layout":"normal","manaCost":"{1}","cmc":1,"type":"Artifact","rarity":"Uncommon","text":"{5}, {T}, Sacrifice Flamecast Wheel: Flamecast Wheel deals 3 damage to target creature.","flavor":"Beware the gifts of an ill-tempered forge god.","artist":"Jasper Sandner","number":"215","power":null,"toughness":null,"loyalty":null,"multiverseid":373514,"imageName":"flamecast wheel","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1613067":{"name":"Surrak Dragonclaw","layout":"normal","manaCost":"{2}{G}{U}{R}","cmc":5,"type":"Legendary Creature — Human Warrior","rarity":"Mythic Rare","text":"Flash\nSurrak Dragonclaw can't be countered.\nCreature spells you control can't be countered.\nOther creatures you control have trample.","flavor":"Both his rank and his scars were earned in single combat against a cave bear.","artist":"Jaime Jones","number":"206","power":"6","toughness":"6","loyalty":null,"multiverseid":386681,"imageName":"surrak dragonclaw","watermark":"Temur","setCode":"KTK","imageCode":"ktk","count":1},"1581323":{"name":"Screamreach Brawler","layout":"normal","manaCost":"{2}{R}","cmc":3,"type":"Creature — Orc Berserker","rarity":"Common","text":"Dash {1}{R} (You may cast this spell for its dash cost. If you do, it gains haste, and it's returned from the battlefield to its owner's hand at the beginning of the next end step.)","flavor":"\"My dragonlord's lightning will dance upon your bones!\"","artist":"Slawomir Maniak","number":"155","power":"2","toughness":"3","loyalty":null,"multiverseid":394682,"imageName":"screamreach brawler","watermark":"Kolaghan","setCode":"DTK","imageCode":"dtk","count":1},"1580300":{"name":"Kolaghan Aspirant","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Creature — Human Warrior","rarity":"Common","text":"Whenever Kolaghan Aspirant becomes blocked by a creature, Kolaghan Aspirant deals 1 damage to that creature.","flavor":"She answers the call of the Crave, the desire for battle sated only by bloodshed.","artist":"Aaron Miller","number":"143","power":"2","toughness":"1","loyalty":null,"multiverseid":394608,"imageName":"kolaghan aspirant","watermark":"Kolaghan","setCode":"DTK","imageCode":"dtk","count":2},"1609998":{"name":"Keeper of the Lens","layout":"normal","manaCost":"{1}","cmc":1,"type":"Artifact Creature — Golem","rarity":"Common","text":"You may look at face-down creatures you don't control. (You may do this at any time.)","flavor":"\"It sees all, but it reveals what it sees only to a chosen few.\"\n—Taigam, Ojutai master","artist":"Ryan Barger","number":"240","power":"1","toughness":"2","loyalty":null,"multiverseid":394606,"imageName":"keeper of the lens","watermark":null,"setCode":"DTK","imageCode":"dtk","count":2},"127263":{"name":"Collateral Damage","layout":"normal","manaCost":"{R}","cmc":1,"type":"Instant","rarity":"Common","text":"As an additional cost to cast Collateral Damage, sacrifice a creature.\nCollateral Damage deals 3 damage to target creature or player.","flavor":"It is much easier to create fire than to contain it.","artist":"Ryan Barger","number":"95","power":null,"toughness":null,"loyalty":null,"multiverseid":391811,"imageName":"collateral damage","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"78110":{"name":"Angelic Accord","layout":"normal","manaCost":"{3}{W}","cmc":4,"type":"Enchantment","rarity":"Uncommon","text":"At the beginning of each end step, if you gained 4 or more life this turn, put a 4/4 white Angel creature token with flying onto the battlefield.","flavor":"As demons are drawn to suffering, angels are drawn to acts of benevolence.","artist":"Michael C. Hayes","number":"3","power":null,"toughness":null,"loyalty":null,"multiverseid":370612,"imageName":"angelic accord","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"130337":{"name":"Mer-Ek Nightblade","layout":"normal","manaCost":"{3}{B}","cmc":4,"type":"Creature — Orc Assassin","rarity":"Uncommon","text":"Outlast {B} ({B}, {T}: Put a +1/+1 counter on this creature. Outlast only as a sorcery.)\nEach creature you control with a +1/+1 counter on it has deathtouch.","flavor":null,"artist":"Lucas Graciano","number":"79","power":"2","toughness":"3","loyalty":null,"multiverseid":386603,"imageName":"mer-ek nightblade","watermark":"Abzan","setCode":"KTK","imageCode":"ktk","count":1},"136483":{"name":"Lost in a Labyrinth","layout":"normal","manaCost":"{U}","cmc":1,"type":"Instant","rarity":"Common","text":"Target creature gets -3/-0 until end of turn. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)","flavor":"Even those who leave the labyrinth never escape it, forever dreaming of their time trapped within.","artist":"Winona Nelson","number":"52","power":null,"toughness":null,"loyalty":null,"multiverseid":373629,"imageName":"lost in a labyrinth","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"128291":{"name":"Singing Bell Strike","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nWhen Singing Bell Strike enters the battlefield, tap enchanted creature.\nEnchanted creature doesn't untap during its controller's untap step.\nEnchanted creature has \"{6}: Untap this creature.\"","flavor":null,"artist":"Chase Stone","number":"55","power":null,"toughness":null,"loyalty":null,"multiverseid":386668,"imageName":"singing bell strike","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"123178":{"name":"Korozda Gorgon","layout":"normal","manaCost":"{3}{B}{G}","cmc":5,"type":"Creature — Gorgon","rarity":"Uncommon","text":"Deathtouch\n{2}, Remove a +1/+1 counter from a creature you control: Target creature gets -1/-1 until end of turn.","flavor":"\"Welcome to my collection.\"","artist":"Volkan Baga","number":"78","power":"2","toughness":"5","loyalty":null,"multiverseid":369064,"imageName":"korozda gorgon","watermark":"Golgari","setCode":"DGM","imageCode":"dgm","count":1},"127277":{"name":"Sungrace Pegasus","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Creature — Pegasus","rarity":"Common","text":"Flying (This creature can't be blocked except by creatures with flying or reach.)\nLifelink (Damage dealt by this creature also causes you to gain that much life.)","flavor":"The sacred feathers of the pegasus are said to have healing powers.","artist":"Phill Simmer","number":"38","power":"1","toughness":"2","loyalty":null,"multiverseid":383407,"imageName":"sungrace pegasus","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"120109":{"name":"Kraul Warrior","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Creature — Insect Warrior","rarity":"Common","text":"{5}{G}: Kraul Warrior gets +3/+3 until end of turn.","flavor":"The insectile kraul lurk in the tunnels below street level. Many are loyal to the Golgari Swarm, but others follow their own esoteric caste system.","artist":"David Rapoza","number":"42","power":"2","toughness":"2","loyalty":null,"multiverseid":369059,"imageName":"kraul warrior","watermark":null,"setCode":"DGM","imageCode":"dgm","count":2},"127276":{"name":"Steelform Sliver","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Creature — Sliver","rarity":"Uncommon","text":"Sliver creatures you control get +0/+1.","flavor":"\"Though the slivers may sometimes resemble us, they are not human. Anyone who fights them must remember this.\"\n—Sarlena, paladin of the Northern Verge","artist":"Chase Stone","number":"38","power":"2","toughness":"2","loyalty":null,"multiverseid":370597,"imageName":"steelform sliver","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"125231":{"name":"Heliod's Pilgrim","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Creature — Human Cleric","rarity":"Common","text":"When Heliod's Pilgrim enters the battlefield, you may search your library for an Aura card, reveal it, put it into your hand, then shuffle your library.","flavor":"The blessings of Heliod are apparent for all to see.","artist":"Izzy","number":"14","power":"1","toughness":"2","loyalty":null,"multiverseid":383265,"imageName":"heliod's pilgrim","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"126254":{"name":"Raise the Alarm","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Instant","rarity":"Common","text":"Put two 1/1 white Soldier creature tokens onto the battlefield.","flavor":"Like blinking or breathing, responding to an alarm is an involuntary reflex.","artist":"Zoltan Boros","number":"26","power":null,"toughness":null,"loyalty":null,"multiverseid":383356,"imageName":"raise the alarm","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"125230":{"name":"Congregate","layout":"normal","manaCost":"{3}{W}","cmc":4,"type":"Instant","rarity":"Uncommon","text":"Target player gains 2 life for each creature on the battlefield.","flavor":"\"In the gathering there is strength for all who founder, renewal for all who languish, love for all who sing.\"\n—Song of All, canto 642","artist":"Mark Zug","number":"14","power":null,"toughness":null,"loyalty":null,"multiverseid":370804,"imageName":"congregate","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1578280":{"name":"Goblin Heelcutter","layout":"normal","manaCost":"{3}{R}","cmc":4,"type":"Creature — Goblin Berserker","rarity":"Common","text":"Whenever Goblin Heelcutter attacks, target creature can't block this turn.\nDash {2}{R} (You may cast this spell for its dash cost. If you do, it gains haste, and it's returned from the battlefield to its owner's hand at the beginning of the next end step.)","flavor":null,"artist":"Jesper Ejsing","number":"102","power":"3","toughness":"2","loyalty":null,"multiverseid":391845,"imageName":"goblin heelcutter","watermark":"Mardu","setCode":"FRF","imageCode":"frf","count":1},"1591593":{"name":"Hunter's Ambush","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Instant","rarity":"Common","text":"Prevent all combat damage that would be dealt by nongreen creatures this turn.","flavor":"First you lose your enemy's trail. Then you lose all sense of direction. Then you hear the growls . . .","artist":"David Palumbo","number":"180","power":null,"toughness":null,"loyalty":null,"multiverseid":383271,"imageName":"hunter's ambush","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1622313":{"name":"Fleetfeather Sandals","layout":"normal","manaCost":"{2}","cmc":2,"type":"Artifact — Equipment","rarity":"Common","text":"Equipped creature has flying and haste.\nEquip {2} ({2}: Attach to target creature you control. Equip only as a sorcery.)","flavor":"\"The gods gave us no wings to fly, but they gave us an even greater gift: imagination.\"\n—Daxos of Meletis","artist":"Steve Prescott","number":"216","power":null,"toughness":null,"loyalty":null,"multiverseid":373501,"imageName":"fleetfeather sandals","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1612067":{"name":"Razortip Whip","layout":"normal","manaCost":"{2}","cmc":2,"type":"Artifact","rarity":"Common","text":"{1}, {T}: Razortip Whip deals 1 damage to target opponent.","flavor":"\"It no longer surprises me what shows up in our raid of a Rakdos revue.\"\n—Janik Bara, Wojek captain","artist":"James Paick","number":"235","power":null,"toughness":null,"loyalty":null,"multiverseid":366405,"imageName":"razortip whip","watermark":null,"setCode":"GTC","imageCode":"gtc","count":1},"1579300":{"name":"Mugging","layout":"normal","manaCost":"{R}","cmc":1,"type":"Sorcery","rarity":"Common","text":"Mugging deals 2 damage to target creature. That creature can't block this turn.","flavor":"Scream: muffled. Pockets: emptied. Neck function: never the same again.","artist":"Greg Staples","number":"102","power":null,"toughness":null,"loyalty":null,"multiverseid":366430,"imageName":"mugging","watermark":null,"setCode":"GTC","imageCode":"gtc","count":1},"125245":{"name":"Corpse Blockade","layout":"normal","manaCost":"{2}{B}","cmc":3,"type":"Creature — Zombie","rarity":"Common","text":"Defender\nSacrifice another creature: Corpse Blockade gains deathtouch until end of turn.","flavor":"There are laws against it, but the dead have no one to complain to and the living are too frightened to investigate.","artist":"Lucas Graciano","number":"60","power":"1","toughness":"4","loyalty":null,"multiverseid":366277,"imageName":"corpse blockade","watermark":null,"setCode":"GTC","imageCode":"gtc","count":1},"78141":{"name":"Angelic Wall","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Creature — Wall","rarity":"Common","text":"Defender (This creature can't attack.)\nFlying","flavor":"\"The air stirred as if fanned by angels' wings, and the enemy was turned aside.\"\n—Tales of Ikarov the Voyager","artist":"Allen Williams","number":"4","power":"0","toughness":"4","loyalty":null,"multiverseid":370789,"imageName":"angelic wall","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1592615":{"name":"Dragon Mantle","layout":"normal","manaCost":"{R}","cmc":1,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nWhen Dragon Mantle enters the battlefield, draw a card.\nEnchanted creature has \"{R}: This creature gets +1/+0 until end of turn.\"","flavor":null,"artist":"Anthony Palumbo","number":"119","power":null,"toughness":null,"loyalty":null,"multiverseid":373634,"imageName":"dragon mantle","watermark":null,"setCode":"THS","imageCode":"ths","count":2},"125248":{"name":"Gurmag Angler","layout":"normal","manaCost":"{6}{B}","cmc":7,"type":"Creature — Zombie Fish","rarity":"Common","text":"Delve (Each card you exile from your graveyard while casting this spell pays for {1}.)","flavor":"If everything in the Gurmag Swamp hungers for human flesh, what bait could be more effective?","artist":"YW Tang","number":"72","power":"5","toughness":"5","loyalty":null,"multiverseid":391850,"imageName":"gurmag angler","watermark":"Sultai","setCode":"FRF","imageCode":"frf","count":1},"127299":{"name":"Jeskai Windscout","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Creature — Bird Scout","rarity":"Common","text":"Flying\nProwess (Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)","flavor":"They range from Sage-Eye Stronghold to the farthest reaches of Tarkir.","artist":"Johann Bodin","number":"44","power":"2","toughness":"1","loyalty":null,"multiverseid":386576,"imageName":"jeskai windscout","watermark":"Jeskai","setCode":"KTK","imageCode":"ktk","count":2},"128322":{"name":"Stubborn Denial","layout":"normal","manaCost":"{U}","cmc":1,"type":"Instant","rarity":"Uncommon","text":"Counter target noncreature spell unless its controller pays {1}.\nFerocious — If you control a creature with power 4 or greater, counter that spell instead.","flavor":"The Temur have no patience for subtlety.","artist":"James Ryman","number":"56","power":null,"toughness":null,"loyalty":null,"multiverseid":386673,"imageName":"stubborn denial","watermark":"Temur","setCode":"KTK","imageCode":"ktk","count":3},"125253":{"name":"Sage-Eye Harrier","layout":"normal","manaCost":"{4}{W}","cmc":5,"type":"Creature — Bird Warrior","rarity":"Common","text":"Flying\nMorph {3}{W} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)","flavor":"These winged warriors meditate in flight, tracing mandalas in the clouds.","artist":"Chase Stone","number":"20","power":"1","toughness":"5","loyalty":null,"multiverseid":386645,"imageName":"sage-eye harrier","watermark":"Jeskai","setCode":"KTK","imageCode":"ktk","count":3},"122186":{"name":"Drown in Filth","layout":"normal","manaCost":"{B}{G}","cmc":2,"type":"Sorcery","rarity":"Common","text":"Choose target creature. Put the top four cards of your library into your graveyard, then that creature gets -1/-1 until end of turn for each land card in your graveyard.","flavor":"The rot farmer's first rite of passage is to craft a pair of work stilts.","artist":"Seb McKinnon","number":"67","power":null,"toughness":null,"loyalty":null,"multiverseid":369086,"imageName":"drown in filth","watermark":"Golgari","setCode":"DGM","imageCode":"dgm","count":1},"119117":{"name":"Awe for the Guilds","layout":"normal","manaCost":"{2}{R}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Monocolored creatures can't block this turn.","flavor":"When the guilds cooperate, the guildless celebrate their peaceful society. When the guilds clash, the guildless just try to keep out of the way.","artist":"Mathias Kollros","number":"31","power":null,"toughness":null,"loyalty":null,"multiverseid":369053,"imageName":"awe for the guilds","watermark":null,"setCode":"DGM","imageCode":"dgm","count":1},"125261":{"name":"Dawnstrike Paladin","layout":"normal","manaCost":"{3}{W}{W}","cmc":5,"type":"Creature — Human Knight","rarity":"Common","text":"Vigilance (Attacking doesn't cause this creature to tap.)\nLifelink (Damage dealt by this creature also causes you to gain that much life.)","flavor":"She crushes darkness beneath her charger's hooves.","artist":"Tyler Jacobson","number":"15","power":"2","toughness":"4","loyalty":null,"multiverseid":370721,"imageName":"dawnstrike paladin","watermark":null,"setCode":"M14","imageCode":"m14","count":2},"1622344":{"name":"Guardians of Meletis","layout":"normal","manaCost":"{3}","cmc":3,"type":"Artifact Creature — Golem","rarity":"Common","text":"Defender","flavor":"The histories speak of two feuding rulers whose deaths were celebrated and whose monuments symbolized the end of their wars. In truth they were peaceful lovers, their story lost to the ages.","artist":"Magali Villeneuve","number":"217","power":"0","toughness":"6","loyalty":null,"multiverseid":373605,"imageName":"guardians of meletis","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1581385":{"name":"Sprinting Warbrute","layout":"normal","manaCost":"{4}{R}","cmc":5,"type":"Creature — Ogre Berserker","rarity":"Common","text":"Sprinting Warbrute attacks each turn if able.\nDash {3}{R} (You may cast this spell for its dash cost. If you do, it gains haste, and it's returned from the battlefield to its owner's hand at the beginning of the next end step.)","flavor":null,"artist":"Lake Hurwitz","number":"157","power":"5","toughness":"4","loyalty":null,"multiverseid":394709,"imageName":"sprinting warbrute","watermark":"Kolaghan","setCode":"DTK","imageCode":"dtk","count":4},"1580362":{"name":"Kolaghan Stormsinger","layout":"normal","manaCost":"{R}","cmc":1,"type":"Creature — Human Shaman","rarity":"Common","text":"Haste\nMegamorph {R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)\nWhen Kolaghan Stormsinger is turned face up, target creature gains haste until end of turn.","flavor":null,"artist":"Scott Murphy","number":"145","power":"1","toughness":"1","loyalty":null,"multiverseid":394612,"imageName":"kolaghan stormsinger","watermark":"Kolaghan","setCode":"DTK","imageCode":"dtk","count":1},"1575243":{"name":"Searing Blood","layout":"normal","manaCost":"{R}{R}","cmc":2,"type":"Instant","rarity":"Uncommon","text":"Searing Blood deals 2 damage to target creature. When that creature dies this turn, Searing Blood deals 3 damage to the creature's controller.","flavor":"Purphoros's blessing: sometimes a boon, sometimes a bane. Always ablaze.","artist":"Daniel Ljunggren","number":"111","power":null,"toughness":null,"loyalty":null,"multiverseid":378483,"imageName":"searing blood","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"1610060":{"name":"Ojutai Monument","layout":"normal","manaCost":"{3}","cmc":3,"type":"Artifact","rarity":"Uncommon","text":"{T}: Add {W} or {U} to your mana pool.\n{4}{W}{U}: Ojutai Monument becomes a 4/4 white and blue Dragon artifact creature with flying until end of turn.","flavor":"Ojutai spends time at all his strongholds, but he most favors Cori Stronghold for his meditation.","artist":"Daniel Ljunggren","number":"242","power":null,"toughness":null,"loyalty":null,"multiverseid":394640,"imageName":"ojutai monument","watermark":"Ojutai","setCode":"DTK","imageCode":"dtk","count":1},"1581380":{"name":"Sudden Reclamation","layout":"normal","manaCost":"{3}{G}","cmc":4,"type":"Instant","rarity":"Uncommon","text":"Put the top four cards of your library into your graveyard, then return a creature card and a land card from your graveyard to your hand.","flavor":"\"There is no secret buried so deep that we will never find it.\"\n—Kurtar, Sultai necromancer","artist":"Jack Wang","number":"139","power":null,"toughness":null,"loyalty":null,"multiverseid":391929,"imageName":"sudden reclamation","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"78172":{"name":"Archangel of Thune","layout":"normal","manaCost":"{3}{W}{W}","cmc":5,"type":"Creature — Angel","rarity":"Mythic Rare","text":"Flying\nLifelink (Damage dealt by this creature also causes you to gain that much life.)\nWhenever you gain life, put a +1/+1 counter on each creature you control.","flavor":"Even the wicked have nightmares.","artist":"James Ryman","number":"5","power":"3","toughness":"4","loyalty":null,"multiverseid":370627,"imageName":"archangel of thune","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"125279":{"name":"Hooded Assassin","layout":"normal","manaCost":"{2}{B}","cmc":3,"type":"Creature — Human Assassin","rarity":"Common","text":"When Hooded Assassin enters the battlefield, choose one —\n• Put a +1/+1 counter on Hooded Assassin.\n• Destroy target creature that was dealt damage this turn.","flavor":null,"artist":"Matt Stewart","number":"73","power":"1","toughness":"2","loyalty":null,"multiverseid":391855,"imageName":"hooded assassin","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"1579334":{"name":"Smoldering Efreet","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Creature — Efreet Monk","rarity":"Common","text":"When Smoldering Efreet dies, it deals 2 damage to you.","flavor":"The efreet are drawn to the Kaisham Wanderers, a loosely organized Jeskai school where trickery is employed to challenge the status quo and upend the belief systems of others.","artist":"Chase Stone","number":"115","power":"2","toughness":"2","loyalty":null,"multiverseid":391925,"imageName":"smoldering efreet","watermark":"Jeskai","setCode":"FRF","imageCode":"frf","count":1},"1592646":{"name":"Rumbling Baloth","layout":"normal","manaCost":"{2}{G}{G}","cmc":4,"type":"Creature — Beast","rarity":"Common","text":null,"flavor":"In the dim light beneath the vast trees of Deepglade, baloths prowl in search of prey. Their guttural calls are more felt than heard, but their attack scream carries for miles.","artist":"Jesper Ejsing","number":"193","power":"4","toughness":"4","loyalty":null,"multiverseid":370764,"imageName":"rumbling baloth","watermark":null,"setCode":"M14","imageCode":"m14","count":2},"129376":{"name":"Despise","layout":"normal","manaCost":"{B}","cmc":1,"type":"Sorcery","rarity":"Uncommon","text":"Target opponent reveals his or her hand. You choose a creature or planeswalker card from it. That player discards that card.","flavor":"\"You have returned from fire, traitor. This time I will see you leave as ashes.\"\n—Zurgo, to Sarkhan Vol","artist":"Todd Lockwood","number":"69","power":null,"toughness":null,"loyalty":null,"multiverseid":386517,"imageName":"despise","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"126307":{"name":"Cancel","layout":"normal","manaCost":"{1}{U}{U}","cmc":3,"type":"Instant","rarity":"Common","text":"Counter target spell.","flavor":"\"Even the greatest inferno begins as a spark. And anyone can snuff out a spark.\"\n—Chanyi, mistfire sage","artist":"Slawomir Maniak","number":"33","power":null,"toughness":null,"loyalty":null,"multiverseid":386502,"imageName":"cancel","watermark":null,"setCode":"KTK","imageCode":"ktk","count":2},"123234":{"name":"Fall of the Hammer","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Instant","rarity":"Common","text":"Target creature you control deals damage equal to its power to another target creature.","flavor":"It is unwise to insult the god of the forge. It is also unwise to stand near anyone else who has insulted him.","artist":"Adam Paquette","number":"93","power":null,"toughness":null,"loyalty":null,"multiverseid":378465,"imageName":"fall of the hammer","watermark":null,"setCode":"BNG","imageCode":"bng","count":2},"125284":{"name":"Salt Road Patrol","layout":"normal","manaCost":"{3}{W}","cmc":4,"type":"Creature — Human Scout","rarity":"Common","text":"Outlast {1}{W} ({1}{W}, {T}: Put a +1/+1 counter on this creature. Outlast only as a sorcery.)","flavor":"\"Soldiers win battles, but supplies win wars.\"\n—Kadri, Abzan caravan master","artist":"Scott Murphy","number":"21","power":"2","toughness":"5","loyalty":null,"multiverseid":386648,"imageName":"salt road patrol","watermark":"Abzan","setCode":"KTK","imageCode":"ktk","count":3},"1581439":{"name":"Predator's Rapport","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Instant","rarity":"Common","text":"Choose target creature you control. You gain life equal to that creature's power plus its toughness.","flavor":"\"Other guilds say the Gruul are savages, no better than the beasts we live with. I say we've found friends who won't stab us in the back.\"\n—Domri Rade","artist":"Matt Stewart","number":"129","power":null,"toughness":null,"loyalty":null,"multiverseid":366233,"imageName":"predator's rapport","watermark":null,"setCode":"GTC","imageCode":"gtc","count":1},"125293":{"name":"Kinsbaile Skirmisher","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Creature — Kithkin Soldier","rarity":"Common","text":"When Kinsbaile Skirmisher enters the battlefield, target creature gets +1/+1 until end of turn.","flavor":"\"If a boggart even dares breathe near one of my kin, I'll know. And I'll not be happy.\"","artist":"Thomas Denmark","number":"16","power":"2","toughness":"2","loyalty":null,"multiverseid":383292,"imageName":"kinsbaile skirmisher","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"118125":{"name":"Wind Drake","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Creature — Drake","rarity":"Common","text":"Flying","flavor":"Air currents whip through the city corridors, creating wind tunnels that accelerate urban drakes toward their prey.","artist":"John Severin Brassell","number":"20","power":"2","toughness":"2","loyalty":null,"multiverseid":369037,"imageName":"wind drake","watermark":null,"setCode":"DGM","imageCode":"dgm","count":1},"1577320":{"name":"Satyr Wayfinder","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Creature — Satyr","rarity":"Common","text":"When Satyr Wayfinder enters the battlefield, reveal the top four cards of your library. You may put a land card from among them into your hand. Put the rest into your graveyard.","flavor":"The first satyr to wake after a revel must search for the site of the next one.","artist":"Steve Prescott","number":"136","power":"1","toughness":"1","loyalty":null,"multiverseid":378508,"imageName":"satyr wayfinder","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"1578347":{"name":"Silumgar Butcher","layout":"normal","manaCost":"{4}{B}","cmc":5,"type":"Creature — Zombie Djinn","rarity":"Common","text":"Exploit (When this creature enters the battlefield, you may sacrifice a creature.)\nWhen Silumgar Butcher exploits a creature, target creature gets -3/-3 until end of turn.","flavor":"Silumgar takes pride in the diversity of his sibsig.","artist":"Dave Kendall","number":"122","power":"3","toughness":"3","loyalty":null,"multiverseid":394701,"imageName":"silumgar butcher","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":3},"1610091":{"name":"Silumgar Monument","layout":"normal","manaCost":"{3}","cmc":3,"type":"Artifact","rarity":"Uncommon","text":"{T}: Add {U} or {B} to your mana pool.\n{4}{U}{B}: Silumgar Monument becomes a 4/4 blue and black Dragon artifact creature with flying until end of turn.","flavor":"Silumgar dominates his clan from a fortress on the Marang River, where he rests upon piles of treasure.","artist":"Daniel Ljunggren","number":"243","power":null,"toughness":null,"loyalty":null,"multiverseid":394702,"imageName":"silumgar monument","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":1},"1577324":{"name":"Mind Rot","layout":"normal","manaCost":"{2}{B}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Target player discards two cards.","flavor":"\"The Ojutai are my favorite victims. They have so much knowledge to lose.\"\n—Asmala, Silumgar sorcerer","artist":"Clint Cearley","number":"110","power":null,"toughness":null,"loyalty":null,"multiverseid":394623,"imageName":"mind rot","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"126333":{"name":"Sultai Runemark","layout":"normal","manaCost":"{2}{B}","cmc":3,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nEnchanted creature gets +2/+2.\nEnchanted creature has deathtouch as long as you control a green or blue permanent. (Any amount of damage it deals to a creature is enough to destroy it.)","flavor":null,"artist":"Volkan Baga","number":"86","power":null,"toughness":null,"loyalty":null,"multiverseid":391931,"imageName":"sultai runemark","watermark":"Sultai","setCode":"FRF","imageCode":"frf","count":1},"1580388":{"name":"Feral Krushok","layout":"normal","manaCost":"{4}{G}","cmc":5,"type":"Creature — Beast","rarity":"Common","text":null,"flavor":"In a stunning act of diplomacy, Yasova Dragonclaw ceded a portion of Temur lands to the Sultai. Her clan protested until they saw she had given the Sultai the breeding grounds of the krushoks. They hadn't realized she had a sense of humor.","artist":"Kev Walker","number":"128","power":"5","toughness":"4","loyalty":null,"multiverseid":391831,"imageName":"feral krushok","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"137599":{"name":"Thassa's Bounty","layout":"normal","manaCost":"{5}{U}","cmc":6,"type":"Sorcery","rarity":"Common","text":"Draw three cards. Target player puts the top three cards of his or her library into his or her graveyard.","flavor":"\"Was this gift cast adrift for any to find, or did Thassa guide the currents to bring it to me alone?\"\n—Kenessos, priest of Thassa","artist":"Ryan Yee","number":"67","power":null,"toughness":null,"loyalty":null,"multiverseid":373662,"imageName":"thassa's bounty","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"127356":{"name":"Fierce Invocation","layout":"normal","manaCost":"{4}{R}","cmc":5,"type":"Sorcery","rarity":"Common","text":"Manifest the top card of your library, then put two +1/+1 counters on it. (To manifest a card, put it onto the battlefield face down as a 2/2 creature. Turn it face up any time for its mana cost if it's a creature card.)","flavor":"Anger can empower those who embrace it.","artist":"Tyler Jacobson","number":"98","power":null,"toughness":null,"loyalty":null,"multiverseid":391832,"imageName":"fierce invocation","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"1579365":{"name":"Temur Battle Rage","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Instant","rarity":"Common","text":"Target creature gains double strike until end of turn. (It deals both first-strike and regular combat damage.)\nFerocious — That creature also gains trample until end of turn if you control a creature with power 4 or greater.","flavor":null,"artist":"Jaime Jones","number":"116","power":null,"toughness":null,"loyalty":null,"multiverseid":391940,"imageName":"temur battle rage","watermark":"Temur","setCode":"FRF","imageCode":"frf","count":2},"1592678":{"name":"Reclamation Sage","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Creature — Elf Shaman","rarity":"Uncommon","text":"When Reclamation Sage enters the battlefield, you may destroy target artifact or enchantment.","flavor":"\"What was once formed by masons, shaped by smiths, or given life by mages, I will return to the embrace of the earth.\"","artist":"Christopher Moeller","number":"194","power":"2","toughness":"1","loyalty":null,"multiverseid":383359,"imageName":"reclamation sage","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1578342":{"name":"Humble Defector","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Creature — Human Rogue","rarity":"Uncommon","text":"{T}: Draw two cards. Target opponent gains control of Humble Defector. Activate this ability only during your turn.","flavor":"\"You were once Mardu, so your body and will are strong. Now we must train your mind.\"\n—Houn, Jeskai elder","artist":"Slawomir Maniak","number":"104","power":"2","toughness":"1","loyalty":null,"multiverseid":391856,"imageName":"humble defector","watermark":"Jeskai","setCode":"FRF","imageCode":"frf","count":1},"1591654":{"name":"Kalonian Tusker","layout":"normal","manaCost":"{G}{G}","cmc":2,"type":"Creature — Beast","rarity":"Uncommon","text":null,"flavor":"\"And all this time I thought we were tracking it.\"\n—Juruk, Kalonian tracker","artist":"Svetlin Velinov","number":"182","power":"3","toughness":"3","loyalty":null,"multiverseid":370700,"imageName":"kalonian tusker","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1622375":{"name":"Opaline Unicorn","layout":"normal","manaCost":"{3}","cmc":3,"type":"Artifact Creature — Unicorn","rarity":"Common","text":"{T}: Add one mana of any color to your mana pool.","flavor":"Purphoros once loved Nylea, the god of the hunt. His passion inspired his most astounding works of art.","artist":"Christine Choi","number":"218","power":"1","toughness":"2","loyalty":null,"multiverseid":373611,"imageName":"opaline unicorn","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"121219":{"name":"Felhide Brawler","layout":"normal","manaCost":"{1}{B}","cmc":2,"type":"Creature — Minotaur","rarity":"Common","text":"Felhide Brawler can't block unless you control another Minotaur.","flavor":"Burial rites among the Felhide minotaurs involve devouring those who fell in battle, to remove their shame from memory and to fuel the survivors' revenge.","artist":"Nils Hamm","number":"70","power":"2","toughness":"2","loyalty":null,"multiverseid":378442,"imageName":"felhide brawler","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"124292":{"name":"Stratus Dancer","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Creature — Djinn Monk","rarity":"Rare","text":"Flying\nMegamorph {1}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)\nWhen Stratus Dancer is turned face up, counter target instant or sorcery spell.","flavor":null,"artist":"Anastasia Ovchinnikova","number":"80","power":"2","toughness":"1","loyalty":null,"multiverseid":394714,"imageName":"stratus dancer","watermark":"Ojutai","setCode":"DTK","imageCode":"dtk","count":2},"125323":{"name":"Divine Favor","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nWhen Divine Favor enters the battlefield, you gain 3 life.\nEnchanted creature gets +1/+3.","flavor":"With an armory of light, even the squire may champion her people.","artist":"Allen Williams","number":"17","power":null,"toughness":null,"loyalty":null,"multiverseid":370748,"imageName":"divine favor","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"126348":{"name":"Rise of Eagles","layout":"normal","manaCost":"{4}{U}{U}","cmc":6,"type":"Sorcery","rarity":"Common","text":"Put two 2/2 blue Bird enchantment creature tokens with flying onto the battlefield. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)","flavor":"An offering to the sea brings an insight from the stars.","artist":"Noah Bradley","number":"49","power":null,"toughness":null,"loyalty":null,"multiverseid":380486,"imageName":"rise of eagles","watermark":null,"setCode":"JOU","imageCode":"jou","count":1},"1621384":{"name":"Seismic Strike","layout":"normal","manaCost":"{2}{R}","cmc":3,"type":"Instant","rarity":"Common","text":"Seismic Strike deals damage to target creature equal to the number of Mountains you control.","flavor":"\"Life up here is simple. Adapt to the ways of the mountains and they will reward you. Fight them and they will end you.\"\n—Kezim, prodigal pyromancer","artist":"Christopher Moeller","number":"280","power":null,"toughness":null,"loyalty":null,"multiverseid":383169,"imageName":"seismic strike","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1576328":{"name":"Karametra's Favor","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nWhen Karametra's Favor enters the battlefield, draw a card.\nEnchanted creature has \"{T}: Add one mana of any color to your mana pool.\"","flavor":"The harvest god's cornucopia contains the fruits of the fields, the forest, and beyond.","artist":"Chase Stone","number":"125","power":null,"toughness":null,"loyalty":null,"multiverseid":378497,"imageName":"karametra's favor","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"1580424":{"name":"Lose Calm","layout":"normal","manaCost":"{3}{R}","cmc":4,"type":"Sorcery","rarity":"Common","text":"Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn and can't be blocked this turn except by two or more creatures.","flavor":"A lifetime of discipline forsaken in a moment of rage.","artist":"Jason A. Engle","number":"147","power":null,"toughness":null,"loyalty":null,"multiverseid":394618,"imageName":"lose calm","watermark":null,"setCode":"DTK","imageCode":"dtk","count":2},"1579401":{"name":"Dragon Fodder","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Sorcery","rarity":"Common","text":"Put two 1/1 red Goblin creature tokens onto the battlefield.","flavor":"Atarka goblins meet their demise as readily as their Temur counterparts did, but usually under big, winged shadows.","artist":"Volkan Baga","number":"135","power":null,"toughness":null,"loyalty":null,"multiverseid":394540,"imageName":"dragon fodder","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"1578378":{"name":"Ukud Cobra","layout":"normal","manaCost":"{3}{B}","cmc":4,"type":"Creature — Snake","rarity":"Uncommon","text":"Deathtouch","flavor":"\"The Silumgar hide behind the deadly wildlife of their swamps. They'd rather scheme in their jungle palaces than face us.\"\n—Khibat, Kolaghan warrior","artist":"Johann Bodin","number":"123","power":"2","toughness":"5","loyalty":null,"multiverseid":394734,"imageName":"ukud cobra","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"1577355":{"name":"Minister of Pain","layout":"normal","manaCost":"{2}{B}","cmc":3,"type":"Creature — Human Shaman","rarity":"Uncommon","text":"Exploit (When this creature enters the battlefield, you may sacrifice a creature.)\nWhen Minister of Pain exploits a creature, creatures your opponents control get -1/-1 until end of turn.","flavor":"Draconic words need not be shouted. A whisper will suffice.","artist":"Izzy","number":"111","power":"2","toughness":"3","loyalty":null,"multiverseid":394624,"imageName":"minister of pain","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":1},"1611137":{"name":"Armored Transport","layout":"normal","manaCost":"{3}","cmc":3,"type":"Artifact Creature — Construct","rarity":"Common","text":"Prevent all combat damage that would be dealt to Armored Transport by creatures blocking it.","flavor":"\"If only our jails were as secure.\"\n—Arrester Lavinia, Tenth Precinct","artist":"Cliff Childs","number":"226","power":"2","toughness":"1","loyalty":null,"multiverseid":366344,"imageName":"armored transport","watermark":null,"setCode":"GTC","imageCode":"gtc","count":1},"1580419":{"name":"Formless Nurturing","layout":"normal","manaCost":"{3}{G}","cmc":4,"type":"Sorcery","rarity":"Common","text":"Manifest the top card of your library, then put a +1/+1 counter on it. (To manifest a card, put it onto the battlefield face down as a 2/2 creature. Turn it face up any time for its mana cost if it's a creature card.)","flavor":null,"artist":"Cliff Childs","number":"129","power":null,"toughness":null,"loyalty":null,"multiverseid":391837,"imageName":"formless nurturing","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"125341":{"name":"Mardu Strike Leader","layout":"normal","manaCost":"{2}{B}","cmc":3,"type":"Creature — Human Warrior","rarity":"Rare","text":"Whenever Mardu Strike Leader attacks, put a 2/1 black Warrior creature token onto the battlefield.\nDash {3}{B} (You may cast this spell for its dash cost. If you do, it gains haste, and it's returned from the battlefield to its owner's hand at the beginning of the next end step.)","flavor":null,"artist":"Jason Rainville","number":"75","power":"3","toughness":"2","loyalty":null,"multiverseid":391876,"imageName":"mardu strike leader","watermark":"Mardu","setCode":"FRF","imageCode":"frf","count":1},"1579396":{"name":"Vaultbreaker","layout":"normal","manaCost":"{3}{R}","cmc":4,"type":"Creature — Orc Rogue","rarity":"Uncommon","text":"Whenever Vaultbreaker attacks, you may discard a card. If you do, draw a card.\nDash {2}{R} (You may cast this spell for its dash cost. If you do, it gains haste, and it's returned from the battlefield to its owner's hand at the beginning of the next end step.)","flavor":null,"artist":"Wayne Reynolds","number":"117","power":"4","toughness":"2","loyalty":null,"multiverseid":391951,"imageName":"vaultbreaker","watermark":"Mardu","setCode":"FRF","imageCode":"frf","count":1},"136607":{"name":"Nimbus Naiad","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Enchantment Creature — Nymph","rarity":"Common","text":"Bestow {4}{U} (If you cast this card for its bestow cost, it's an Aura spell with enchant creature. It becomes a creature again if it's not attached to a creature.)\nFlying\nEnchanted creature gets +2/+2 and has flying.","flavor":null,"artist":"David Palumbo","number":"56","power":"2","toughness":"2","loyalty":null,"multiverseid":373719,"imageName":"nimbus naiad","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"123295":{"name":"Shifting Loyalties","layout":"normal","manaCost":"{5}{U}","cmc":6,"type":"Sorcery","rarity":"Uncommon","text":"Exchange control of two target permanents that share a card type. (Artifact, creature, enchantment, land, and planeswalker are card types.)","flavor":"\"Show the enemy the true path, and the spirit will yearn to follow it.\"\n—Houn, Jeskai elder","artist":"James Ryman","number":"51","power":null,"toughness":null,"loyalty":null,"multiverseid":391919,"imageName":"shifting loyalties","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"128415":{"name":"Treasure Cruise","layout":"normal","manaCost":"{7}{U}","cmc":8,"type":"Sorcery","rarity":"Common","text":"Delve (Each card you exile from your graveyard while casting this spell pays for {1}.)\nDraw three cards.","flavor":"Countless delights drift on the surface while dark schemes run below.","artist":"Cynthia Sheppard","number":"59","power":null,"toughness":null,"loyalty":null,"multiverseid":386705,"imageName":"treasure cruise","watermark":"Sultai","setCode":"KTK","imageCode":"ktk","count":1},"1590663":{"name":"Charging Rhino","layout":"normal","manaCost":"{3}{G}{G}","cmc":5,"type":"Creature — Rhino","rarity":"Common","text":"Charging Rhino can't be blocked by more than one creature.","flavor":"The knights of Troinir Keep took the rhino as their emblem due to its intense focus when charging down a perceived threat—a trait they discovered on a hunting excursion.","artist":"Daren Bader","number":"171","power":"4","toughness":"4","loyalty":null,"multiverseid":383205,"imageName":"charging rhino","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"126369":{"name":"Crippling Chill","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Instant","rarity":"Common","text":"Tap target creature. It doesn't untap during its controller's next untap step.\nDraw a card.","flavor":"In the silence of the ice, even dreams become still.","artist":"Torstein Nordstrand","number":"35","power":null,"toughness":null,"loyalty":null,"multiverseid":386510,"imageName":"crippling chill","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"124323":{"name":"Firehoof Cavalry","layout":"normal","manaCost":"{W}","cmc":1,"type":"Creature — Human Berserker","rarity":"Common","text":"{3}{R}: Firehoof Cavalry gets +2/+0 and gains trample until end of turn.","flavor":"\"What warrior worth the name fears to leave a trail? If my enemies seek me, let them follow the ashes in my wake.\"","artist":"YW Tang","number":"11","power":"1","toughness":"1","loyalty":null,"multiverseid":386536,"imageName":"firehoof cavalry","watermark":"Mardu","setCode":"KTK","imageCode":"ktk","count":2},"121250":{"name":"Forlorn Pseudamma","layout":"normal","manaCost":"{3}{B}","cmc":4,"type":"Creature — Zombie","rarity":"Uncommon","text":"Intimidate\nInspired — Whenever Forlorn Pseudamma becomes untapped, you may pay {2}{B}. If you do, put a 2/2 black Zombie enchantment creature token onto the battlefield.","flavor":"\"More children taken. This is an evil we will track without mercy.\"\n—Anthousa of Setessa","artist":"Winona Nelson","number":"71","power":"2","toughness":"1","loyalty":null,"multiverseid":378443,"imageName":"forlorn pseudamma","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"125346":{"name":"Siegecraft","layout":"normal","manaCost":"{3}{W}","cmc":4,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nEnchanted creature gets +2/+4.","flavor":"\"They thought their fortress impregnable . . . until we marched up with ours, and blocked out the sun.\"\n—Golran, dragonscale captain","artist":"Viktor Titov","number":"23","power":null,"toughness":null,"loyalty":null,"multiverseid":386667,"imageName":"siegecraft","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"117164":{"name":"Wake the Reflections","layout":"normal","manaCost":"{W}","cmc":1,"type":"Sorcery","rarity":"Common","text":"Populate. (Put a token onto the battlefield that's a copy of a creature token you control.)","flavor":"\"You see a bird, an oak, a packbeast. I see the potential for an army.\"\n—Lalia, Selesnya dryad","artist":"Cynthia Sheppard","number":"10","power":null,"toughness":null,"loyalty":null,"multiverseid":369012,"imageName":"wake the reflections","watermark":"Selesnya","setCode":"DGM","imageCode":"dgm","count":1},"1574313":{"name":"Nyxborn Rollicker","layout":"normal","manaCost":"{R}","cmc":1,"type":"Enchantment Creature — Satyr","rarity":"Common","text":"Bestow {1}{R} (If you cast this card for its bestow cost, it's an Aura spell with enchant creature. It becomes a creature again if it's not attached to a creature.)\nEnchanted creature gets +1/+1.","flavor":null,"artist":"Seb McKinnon","number":"102","power":"1","toughness":"1","loyalty":null,"multiverseid":378474,"imageName":"nyxborn rollicker","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"1610153":{"name":"Stormrider Rig","layout":"normal","manaCost":"{2}","cmc":2,"type":"Artifact — Equipment","rarity":"Uncommon","text":"Equipped creature gets +1/+1.\nWhenever a creature enters the battlefield under your control, you may attach Stormrider Rig to it.\nEquip {2}","flavor":null,"artist":"Min Yum","number":"245","power":null,"toughness":null,"loyalty":null,"multiverseid":394712,"imageName":"stormrider rig","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"1578409":{"name":"Ultimate Price","layout":"normal","manaCost":"{1}{B}","cmc":2,"type":"Instant","rarity":"Uncommon","text":"Destroy target monocolored creature.","flavor":"\"The realization that one is dying is far more terrifying than death itself.\"\n—Sidisi, Silumgar vizier","artist":"Jack Wang","number":"124","power":null,"toughness":null,"loyalty":null,"multiverseid":394735,"imageName":"ultimate price","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"1609130":{"name":"Swift Warkite","layout":"normal","manaCost":"{4}{B}{R}","cmc":6,"type":"Creature — Dragon","rarity":"Uncommon","text":"Flying\nWhen Swift Warkite enters the battlefield, you may put a creature card with converted mana cost 3 or less from your hand or graveyard onto the battlefield. That creature gains haste. Return it to your hand at the beginning of the next end step.","flavor":null,"artist":"Izzy","number":"233","power":"4","toughness":"4","loyalty":null,"multiverseid":394725,"imageName":"swift warkite","watermark":"Kolaghan","setCode":"DTK","imageCode":"dtk","count":1},"1576363":{"name":"Flatten","layout":"normal","manaCost":"{3}{B}","cmc":4,"type":"Instant","rarity":"Common","text":"Target creature gets -4/-4 until end of turn.","flavor":"Like their dragonlord, the Kolaghan take no trophies. They find true fulfillment only in the battle itself, in clash of steel and thunder of hooves.","artist":"Raoul Vitale","number":"100","power":null,"toughness":null,"loyalty":null,"multiverseid":394571,"imageName":"flatten","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"1608107":{"name":"Dromoka's Command","layout":"normal","manaCost":"{G}{W}","cmc":2,"type":"Instant","rarity":"Rare","text":"Choose two —\n• Prevent all damage target instant or sorcery spell would deal this turn.\n• Target player sacrifices an enchantment.\n• Put a +1/+1 counter on target creature.\n• Target creature you control fights target creature you don't control.","flavor":null,"artist":"James Ryman","number":"221","power":null,"toughness":null,"loyalty":null,"multiverseid":394558,"imageName":"dromoka's command","watermark":"Dromoka","setCode":"DTK","imageCode":"dtk","count":1},"78265":{"name":"Blessing","layout":"normal","manaCost":"{W}{W}","cmc":2,"type":"Enchantment — Aura","rarity":"Uncommon","text":"Enchant creature\n{W}: Enchanted creature gets +1/+1 until end of turn.","flavor":"\"Virtue can't survive without strength.\"\n—Ardanna of the Angelic Council","artist":"Jason A. Engle","number":"8","power":null,"toughness":null,"loyalty":null,"multiverseid":370819,"imageName":"blessing","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"126392":{"name":"Shadow Alley Denizen","layout":"normal","manaCost":"{B}","cmc":1,"type":"Creature — Vampire Rogue","rarity":"Common","text":"Whenever another black creature enters the battlefield under your control, target creature gains intimidate until end of turn. (It can't be blocked except by artifact creatures and/or creatures that share a color with it.)","flavor":null,"artist":"Cynthia Sheppard","number":"76","power":"1","toughness":"1","loyalty":null,"multiverseid":366307,"imageName":"shadow alley denizen","watermark":null,"setCode":"GTC","imageCode":"gtc","count":1},"1592739":{"name":"Sporemound","layout":"normal","manaCost":"{3}{G}{G}","cmc":5,"type":"Creature — Fungus","rarity":"Common","text":"Whenever a land enters the battlefield under your control, put a 1/1 green Saproling creature token onto the battlefield.","flavor":"\"If you threaten its territory, it produces spores. Actually, no matter what you do, it produces spores.\"\n—Hadi Kasten, Calla Dale naturalist","artist":"Svetlin Velinov","number":"196","power":"3","toughness":"3","loyalty":null,"multiverseid":370605,"imageName":"sporemound","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1592740":{"name":"Roaring Primadox","layout":"normal","manaCost":"{3}{G}","cmc":4,"type":"Creature — Beast","rarity":"Uncommon","text":"At the beginning of your upkeep, return a creature you control to its owner's hand.","flavor":"\"They're easy enough to find. Question is, are you sure you want to find one?\"\n—Juruk, Kalonian tracker","artist":"James Ryman","number":"196","power":"4","toughness":"4","loyalty":null,"multiverseid":383364,"imageName":"roaring primadox","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"136638":{"name":"Omenspeaker","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Creature — Human Wizard","rarity":"Common","text":"When Omenspeaker enters the battlefield, scry 2. (Look at the top two cards of your library, then put any number of them on the bottom of your library and the rest on top in any order.)","flavor":"Her prophecies amaze her even as she speaks them.","artist":"Dallas Williams","number":"57","power":"1","toughness":"3","loyalty":null,"multiverseid":373693,"imageName":"omenspeaker","watermark":null,"setCode":"THS","imageCode":"ths","count":2},"1578404":{"name":"Lightning Shrieker","layout":"normal","manaCost":"{4}{R}","cmc":5,"type":"Creature — Dragon","rarity":"Common","text":"Flying, trample, haste\nAt the beginning of the end step, Lightning Shrieker's owner shuffles it into his or her library.","flavor":"Dragonslayers learned to keep silent about their deeds after seeing the terrible vengeance wrought by Kolaghan and her brood.","artist":"Slawomir Maniak","number":"106","power":"5","toughness":"5","loyalty":null,"multiverseid":391868,"imageName":"lightning shrieker","watermark":"Kolaghan","setCode":"FRF","imageCode":"frf","count":1},"1591716":{"name":"Manaweft Sliver","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Creature — Sliver","rarity":"Uncommon","text":"Sliver creatures you control have \"{T}: Add one mana of any color to your mana pool.\"","flavor":"\"I see in their interconnectedness a strange embodiment of the natural order.\"\n—Dionus, elvish archdruid","artist":"Trevor Claxton","number":"184","power":"1","toughness":"1","loyalty":null,"multiverseid":370599,"imageName":"manaweft sliver","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"122303":{"name":"Marang River Prowler","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Creature — Human Rogue","rarity":"Uncommon","text":"Marang River Prowler can't block and can't be blocked.\nYou may cast Marang River Prowler from your graveyard as long as you control a black or green permanent.","flavor":"The currents of the Marang wash away both tracks and blood.","artist":"Yefim Kligerman","number":"40","power":"2","toughness":"1","loyalty":null,"multiverseid":391872,"imageName":"marang river prowler","watermark":"Sultai","setCode":"FRF","imageCode":"frf","count":1},"127423":{"name":"Mystic of the Hidden Way","layout":"normal","manaCost":"{4}{U}","cmc":5,"type":"Creature — Human Monk","rarity":"Common","text":"Mystic of the Hidden Way can't be blocked.\nMorph {2}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)","flavor":"\"There are no obstacles, only different paths.\"","artist":"Ryan Alexander Lee","number":"48","power":"3","toughness":"2","loyalty":null,"multiverseid":386615,"imageName":"mystic of the hidden way","watermark":"Jeskai","setCode":"KTK","imageCode":"ktk","count":1},"1577382":{"name":"Setessan Oathsworn","layout":"normal","manaCost":"{1}{G}{G}","cmc":3,"type":"Creature — Satyr Warrior","rarity":"Common","text":"Heroic — Whenever you cast a spell that targets Setessan Oathsworn, put two +1/+1 counters on Setessan Oathsworn.","flavor":"\"Setessa is not the city of my birth, but it is the place I fight for, and the place I'm willing to die for. Does that not make it my home?\"","artist":"Scott Murphy","number":"138","power":"1","toughness":"1","loyalty":null,"multiverseid":378510,"imageName":"setessan oathsworn","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"1621415":{"name":"Shivan Dragon","layout":"normal","manaCost":"{4}{R}{R}","cmc":6,"type":"Creature — Dragon","rarity":"Rare","text":"Flying (This creature can't be blocked except by creatures with flying or reach.)\n{R}: Shivan Dragon gets +1/+0 until end of turn.","flavor":"The undisputed master of the mountains of Shiv.","artist":"Donato Giancola","number":"281","power":"5","toughness":"5","loyalty":null,"multiverseid":383172,"imageName":"shivan dragon","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"125377":{"name":"Deadly Wanderings","layout":"normal","manaCost":"{3}{B}{B}","cmc":5,"type":"Enchantment","rarity":"Uncommon","text":"As long as you control exactly one creature, that creature gets +2/+0 and has deathtouch and lifelink.","flavor":"\"Seclusion is only an option for the strong.\"\n—Sorin Markov","artist":"David Palumbo","number":"94","power":null,"toughness":null,"loyalty":null,"multiverseid":394530,"imageName":"deadly wanderings","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"134592":{"name":"Spear of Heliod","layout":"normal","manaCost":"{1}{W}{W}","cmc":3,"type":"Legendary Enchantment Artifact","rarity":"Rare","text":"Creatures you control get +1/+1.\n{1}{W}{W}, {T}: Destroy target creature that dealt damage to you this turn.","flavor":"Legend speaks of the Sun Spear, the mighty weapon that can strike any point in Theros, even the depths of the Underworld.","artist":"Yeong-Hao Han","number":"33","power":null,"toughness":null,"loyalty":null,"multiverseid":373717,"imageName":"spear of heliod","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1591770":{"name":"Ponyback Brigade","layout":"normal","manaCost":"{3}{R}{W}{B}","cmc":6,"type":"Creature — Goblin Warrior","rarity":"Common","text":"When Ponyback Brigade enters the battlefield or is turned face up, put three 1/1 red Goblin creature tokens onto the battlefield.\nMorph {2}{R}{W}{B} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)","flavor":null,"artist":"Mark Zug","number":"191","power":"2","toughness":"2","loyalty":null,"multiverseid":386628,"imageName":"ponyback brigade","watermark":"Mardu","setCode":"KTK","imageCode":"ktk","count":1},"123331":{"name":"Profaner of the Dead","layout":"normal","manaCost":"{3}{U}","cmc":4,"type":"Creature — Naga Wizard","rarity":"Rare","text":"Exploit (When this creature enters the battlefield, you may sacrifice a creature.)\nWhen Profaner of the Dead exploits a creature, return to their owners' hands all creatures your opponents control with toughness less than the exploited creature's toughness.","flavor":null,"artist":"Vincent Proce","number":"70","power":"3","toughness":"3","loyalty":null,"multiverseid":394654,"imageName":"profaner of the dead","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":1},"124354":{"name":"Updraft Elemental","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Creature — Elemental","rarity":"Common","text":"Flying","flavor":"\"It slips through the smallest cracks in the mountain, emerging whole and unfettered. There is nowhere it cannot go, for what can hold back the air itself?\"\n—Chanyi, Ojutai monk","artist":"Raf Sarmento","number":"82","power":"1","toughness":"4","loyalty":null,"multiverseid":394736,"imageName":"updraft elemental","watermark":"Ojutai","setCode":"DTK","imageCode":"dtk","count":1},"1610207":{"name":"Coerced Confession","layout":"normal","manaCost":"{4}{U/B}","cmc":5,"type":"Sorcery","rarity":"Uncommon","text":"Target player puts the top four cards of his or her library into his or her graveyard. You draw a card for each creature card put into that graveyard this way.","flavor":"\"Ask the right questions in the right way and truth is inevitable.\"\n—Lazav","artist":"Mathias Kollros","number":"217","power":null,"toughness":null,"loyalty":null,"multiverseid":366408,"imageName":"coerced confession","watermark":"Dimir","setCode":"GTC","imageCode":"gtc","count":1},"125385":{"name":"Fortify","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Instant","rarity":"Common","text":"Choose one —\n• Creatures you control get +2/+0 until end of turn.\n• Creatures you control get +0/+2 until end of turn.","flavor":"\"Where metal is tainted and wood is scarce, we are best armed by faith.\"\n—Tavalus, acolyte of Korlis","artist":"Christopher Moeller","number":"19","power":null,"toughness":null,"loyalty":null,"multiverseid":370712,"imageName":"fortify","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"125386":{"name":"Meditation Puzzle","layout":"normal","manaCost":"{3}{W}{W}","cmc":5,"type":"Instant","rarity":"Common","text":"Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.)\nYou gain 8 life.","flavor":"Find your center, and you will find your way.","artist":"Mark Winters","number":"19","power":null,"toughness":null,"loyalty":null,"multiverseid":383306,"imageName":"meditation puzzle","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1610184":{"name":"Tapestry of the Ages","layout":"normal","manaCost":"{4}","cmc":4,"type":"Artifact","rarity":"Uncommon","text":"{2}, {T}: Draw a card. Activate this ability only if you've cast a noncreature spell this turn.","flavor":"\"Abzan, Jeskai, Sultai, Mardu, Temur—names lost to history, yet worthy of further study.\"\n—Narset","artist":"Yeong-Hao Han","number":"246","power":null,"toughness":null,"loyalty":null,"multiverseid":394728,"imageName":"tapestry of the ages","watermark":null,"setCode":"DTK","imageCode":"dtk","count":3},"1609161":{"name":"Ancestral Statue","layout":"normal","manaCost":"{4}","cmc":4,"type":"Artifact Creature — Golem","rarity":"Common","text":"When Ancestral Statue enters the battlefield, return a nonland permanent you control to its owner's hand.","flavor":"The mage awakened the statue in hopes of learning the lost lore of her clan, but the statue was interested only in war.","artist":"Tomasz Jedruszek","number":"234","power":"3","toughness":"4","loyalty":null,"multiverseid":394491,"imageName":"ancestral statue","watermark":null,"setCode":"DTK","imageCode":"dtk","count":3},"1577417":{"name":"Qarsi Sadist","layout":"normal","manaCost":"{1}{B}","cmc":2,"type":"Creature — Human Cleric","rarity":"Common","text":"Exploit (When this creature enters the battlefield, you may sacrifice a creature.)\nWhen Qarsi Sadist exploits a creature, target opponent loses 2 life and you gain 2 life.","flavor":"Dying for the greater good still hurts.","artist":"Volkan Baga","number":"113","power":"1","toughness":"3","loyalty":null,"multiverseid":394658,"imageName":"qarsi sadist","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":5},"1607115":{"name":"Surrak, the Hunt Caller","layout":"normal","manaCost":"{2}{G}{G}","cmc":4,"type":"Legendary Creature — Human Warrior","rarity":"Rare","text":"Formidable — At the beginning of combat on your turn, if creatures you control have total power 8 or greater, target creature you control gains haste until end of turn.","flavor":"\"The greatest honor is to feed Atarka.\"","artist":"Wesley Burt","number":"210","power":"5","toughness":"4","loyalty":null,"multiverseid":394721,"imageName":"surrak, the hunt caller","watermark":"Atarka","setCode":"DTK","imageCode":"dtk","count":1},"126423":{"name":"Shadow Slice","layout":"normal","manaCost":"{4}{B}","cmc":5,"type":"Sorcery","rarity":"Common","text":"Target opponent loses 3 life.\nCipher (Then you may exile this spell card encoded on a creature you control. Whenever that creature deals combat damage to a player, its controller may cast a copy of the encoded card without paying its mana cost.)","flavor":null,"artist":"Raymond Swanland","number":"77","power":null,"toughness":null,"loyalty":null,"multiverseid":366455,"imageName":"shadow slice","watermark":"Dimir","setCode":"GTC","imageCode":"gtc","count":1},"125400":{"name":"Gateway Shade","layout":"normal","manaCost":"{2}{B}","cmc":3,"type":"Creature — Shade","rarity":"Uncommon","text":"{B}: Gateway Shade gets +1/+1 until end of turn.\nTap an untapped Gate you control: Gateway Shade gets +2/+2 until end of turn.","flavor":"Tireless and merciless, shades are harnessed as spies by the Dimir.","artist":"Ryan Yee","number":"65","power":"1","toughness":"1","loyalty":null,"multiverseid":366438,"imageName":"gateway shade","watermark":null,"setCode":"GTC","imageCode":"gtc","count":1},"1592770":{"name":"Trollhide","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nEnchanted creature gets +2/+2 and has \"{1}{G}: Regenerate this creature.\" (The next time the creature would be destroyed this turn, it isn't. Instead tap it, remove all damage from it, and remove it from combat.)","flavor":null,"artist":"Steven Belledin","number":"197","power":null,"toughness":null,"loyalty":null,"multiverseid":370664,"imageName":"trollhide","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"126426":{"name":"Typhoid Rats","layout":"normal","manaCost":"{B}","cmc":1,"type":"Creature — Rat","rarity":"Common","text":"Deathtouch (Any amount of damage this deals to a creature is enough to destroy it.)","flavor":"When Tasigur sent his ambassadors to the Abzan outpost, the true envoys were not the naga but the infectious rats they carried with them.","artist":"Dave Kendall","number":"89","power":"1","toughness":"1","loyalty":null,"multiverseid":391947,"imageName":"typhoid rats","watermark":"Sultai","setCode":"FRF","imageCode":"frf","count":1},"123354":{"name":"Leyline Phantom","layout":"normal","manaCost":"{4}{U}","cmc":5,"type":"Creature — Illusion","rarity":"Common","text":"When Leyline Phantom deals combat damage, return it to its owner's hand. (Return it only if it survived combat.)","flavor":"\"Is the maze itself a phantom? Or is one as real as the other? Perhaps I am as mad as the dragon.\"\n—Jace Beleren, journal","artist":"Ryan Yee","number":"41","power":"5","toughness":"5","loyalty":null,"multiverseid":366329,"imageName":"leyline phantom","watermark":null,"setCode":"GTC","imageCode":"gtc","count":1},"123357":{"name":"Sultai Skullkeeper","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Creature — Naga Shaman","rarity":"Common","text":"When Sultai Skullkeeper enters the battlefield, put the top two cards of your library into your graveyard.","flavor":"A skullkeeper is the first to arrive after the palace archers strike down intruders, probing their brains for choice bits of knowledge.","artist":"Ryan Barger","number":"53","power":"2","toughness":"1","loyalty":null,"multiverseid":391932,"imageName":"sultai skullkeeper","watermark":"Sultai","setCode":"FRF","imageCode":"frf","count":1},"1590725":{"name":"Elvish Mystic","layout":"normal","manaCost":"{G}","cmc":1,"type":"Creature — Elf Druid","rarity":"Common","text":"{T}: Add {G} to your mana pool.","flavor":"\"Life grows everywhere. My kin merely find those places where it grows strongest.\"\n—Nissa Revane","artist":"Wesley Burt","number":"173","power":"1","toughness":"1","loyalty":null,"multiverseid":383229,"imageName":"elvish mystic","watermark":null,"setCode":"M15","imageCode":"m15","count":2},"76252":{"name":"Banishing Light","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Enchantment","rarity":"Uncommon","text":"When Banishing Light enters the battlefield, exile target nonland permanent an opponent controls until Banishing Light leaves the battlefield. (That permanent returns under its owner's control.)","flavor":null,"artist":"Willian Murai","number":"5","power":null,"toughness":null,"loyalty":null,"multiverseid":380375,"imageName":"banishing light","watermark":null,"setCode":"JOU","imageCode":"jou","count":1},"1621446":{"name":"Centaur Courser","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Creature — Centaur Warrior","rarity":"Common","text":null,"flavor":"\"The centaurs are truly free. Never will they be tamed by temptation or controlled by fear. They live in total harmony, a feat not yet achieved by our kind.\"\n—Ramal, sage of Westgate","artist":"Vance Kovacs","number":"282","power":"3","toughness":"3","loyalty":null,"multiverseid":383162,"imageName":"centaur courser","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1579463":{"name":"Dragon Whisperer","layout":"normal","manaCost":"{R}{R}","cmc":2,"type":"Creature — Human Shaman","rarity":"Mythic Rare","text":"{R}: Dragon Whisperer gains flying until end of turn.\n{1}{R}: Dragon Whisperer gets +1/+0 until end of turn.\nFormidable — {4}{R}{R}: Put a 4/4 red Dragon creature token with flying onto the battlefield. Activate this ability only if creatures you control have total power 8 or greater.","flavor":null,"artist":"Chris Rallis","number":"137","power":"2","toughness":"2","loyalty":null,"multiverseid":394543,"imageName":"dragon whisperer","watermark":"Atarka","setCode":"DTK","imageCode":"dtk","count":1},"1620423":{"name":"Aegis Angel","layout":"normal","manaCost":"{4}{W}{W}","cmc":6,"type":"Creature — Angel","rarity":"Rare","text":"Flying (This creature can't be blocked except by creatures with flying or reach.)\nWhen Aegis Angel enters the battlefield, another target permanent gains indestructible for as long as you control Aegis Angel. (Effects that say \"destroy\" don't destroy it. A creature with indestructible can't be destroyed by damage.)","flavor":null,"artist":"Aleksi Briclot","number":"270","power":"5","toughness":"5","loyalty":null,"multiverseid":383160,"imageName":"aegis angel","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"120289":{"name":"Bile Blight","layout":"normal","manaCost":"{B}{B}","cmc":2,"type":"Instant","rarity":"Uncommon","text":"Target creature and all other creatures with the same name as that creature get -3/-3 until end of turn.","flavor":"Not an arrow loosed, javelin thrown, nor sword raised. None were needed.","artist":"Vincent Proce","number":"61","power":null,"toughness":null,"loyalty":null,"multiverseid":378433,"imageName":"bile blight","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"125408":{"name":"Death Wind","layout":"normal","manaCost":"{X}{B}","cmc":1,"type":"Instant","rarity":"Uncommon","text":"Target creature gets -X/-X until end of turn.","flavor":"\"I am a dragonslayer for Lord Silumgar. There is no dragon save him whom I fear.\"\n—Xathi the Infallible","artist":"Nils Hamm","number":"95","power":null,"toughness":null,"loyalty":null,"multiverseid":394531,"imageName":"death wind","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"133600":{"name":"Last Breath","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Instant","rarity":"Common","text":"Exile target creature with power 2 or less. Its controller gains 4 life.","flavor":"In time, all things turn to dust. Some things just take less time.","artist":"Nils Hamm","number":"22","power":null,"toughness":null,"loyalty":null,"multiverseid":373680,"imageName":"last breath","watermark":null,"setCode":"THS","imageCode":"ths","count":2},"1577448":{"name":"Rakshasa Gravecaller","layout":"normal","manaCost":"{4}{B}","cmc":5,"type":"Creature — Cat Demon","rarity":"Uncommon","text":"Exploit (When this creature enters the battlefield, you may sacrifice a creature.)\nWhen Rakshasa Gravecaller exploits a creature, put two 2/2 black Zombie creature tokens onto the battlefield.","flavor":"Debts to rakshasa linger beyond death.","artist":"Jakub Kasper","number":"114","power":"3","toughness":"6","loyalty":null,"multiverseid":394660,"imageName":"rakshasa gravecaller","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":3},"1608169":{"name":"Harbinger of the Hunt","layout":"normal","manaCost":"{3}{R}{G}","cmc":5,"type":"Creature — Dragon","rarity":"Rare","text":"Flying\n{2}{R}: Harbinger of the Hunt deals 1 damage to each creature without flying.\n{2}{G}: Harbinger of the Hunt deals 1 damage to each other creature with flying.","flavor":"An Atarka dragon's exhale cooks what its inhale consumes.","artist":"Aaron Miller","number":"223","power":"5","toughness":"3","loyalty":null,"multiverseid":394591,"imageName":"harbinger of the hunt","watermark":"Atarka","setCode":"DTK","imageCode":"dtk","count":1},"1590755":{"name":"Giant Growth","layout":"normal","manaCost":"{G}","cmc":1,"type":"Instant","rarity":"Common","text":"Target creature gets +3/+3 until end of turn.","flavor":null,"artist":"Matt Cavotta","number":"174","power":null,"toughness":null,"loyalty":null,"multiverseid":370788,"imageName":"giant growth","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1621477":{"name":"Garruk's Packleader","layout":"normal","manaCost":"{4}{G}","cmc":5,"type":"Creature — Beast","rarity":"Uncommon","text":"Whenever another creature with power 3 or greater enters the battlefield under your control, you may draw a card.","flavor":"\"He has learned much in his long years. And unlike selfish humans, he's willing to share.\"\n—Garruk Wildspeaker","artist":"Nils Hamm","number":"283","power":"4","toughness":"4","loyalty":null,"multiverseid":383165,"imageName":"garruk's packleader","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1588709":{"name":"Regathan Firecat","layout":"normal","manaCost":"{2}{R}","cmc":3,"type":"Creature — Elemental Cat","rarity":"Common","text":null,"flavor":"It stalks the Regathan highlands, leaving behind melted snow, scorched earth, and the charred corpses of would-be temple robbers.","artist":"Eric Velhagen","number":"150","power":"4","toughness":"1","loyalty":null,"multiverseid":370805,"imageName":"regathan firecat","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"125439":{"name":"Take Up Arms","layout":"normal","manaCost":"{4}{W}","cmc":5,"type":"Instant","rarity":"Uncommon","text":"Put three 1/1 white Warrior creature tokens onto the battlefield.","flavor":"\"Many scales make the skin of a dragon.\"\n—Abzan wisdom","artist":"Craig J Spearing","number":"26","power":null,"toughness":null,"loyalty":null,"multiverseid":386691,"imageName":"take up arms","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"1588710":{"name":"Inferno Fist","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature you control\nEnchanted creature gets +2/+0.\n{R}, Sacrifice Inferno Fist: Inferno Fist deals 2 damage to target creature or player.","flavor":"\"I've never been above throwing the first punch.\"","artist":"James Ryman","number":"150","power":null,"toughness":null,"loyalty":null,"multiverseid":383277,"imageName":"inferno fist","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1620454":{"name":"Divine Verdict","layout":"normal","manaCost":"{3}{W}","cmc":4,"type":"Instant","rarity":"Common","text":"Destroy target attacking or blocking creature.","flavor":"\"Guilty.\"","artist":"Kev Walker","number":"271","power":null,"toughness":null,"loyalty":null,"multiverseid":383163,"imageName":"divine verdict","watermark":null,"setCode":"M15","imageCode":"m15","count":2},"1579494":{"name":"Dragonlord's Servant","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Creature — Goblin Shaman","rarity":"Uncommon","text":"Dragon spells you cast cost {1} less to cast.","flavor":"Atarka serving-goblins coat themselves with grease imbued with noxious herbs, hoping to discourage their ravenous masters from adding them to the meal.","artist":"Steve Prescott","number":"138","power":"1","toughness":"3","loyalty":null,"multiverseid":394552,"imageName":"dragonlord's servant","watermark":"Atarka","setCode":"DTK","imageCode":"dtk","count":1},"121342":{"name":"Wardscale Dragon","layout":"normal","manaCost":"{4}{W}{W}","cmc":6,"type":"Creature — Dragon","rarity":"Uncommon","text":"Flying\nAs long as Wardscale Dragon is attacking, defending player can't cast spells.","flavor":"Dromoka's brood emerge from the dragon tempests covered with tough scales that protect them from most clan weapons and magic.","artist":"Jason Rainville","number":"30","power":"4","toughness":"4","loyalty":null,"multiverseid":391955,"imageName":"wardscale dragon","watermark":"Dromoka","setCode":"FRF","imageCode":"frf","count":1},"1610215":{"name":"Vial of Dragonfire","layout":"normal","manaCost":"{2}","cmc":2,"type":"Artifact","rarity":"Common","text":"{2}, {T}, Sacrifice Vial of Dragonfire: Vial of Dragonfire deals 2 damage to target creature.","flavor":"Designed by an ancient artificer, the vials are strong enough to hold the very breath of a dragon—until it's needed.","artist":"Franz Vohwinkel","number":"247","power":null,"toughness":null,"loyalty":null,"multiverseid":394738,"imageName":"vial of dragonfire","watermark":null,"setCode":"DTK","imageCode":"dtk","count":2},"1578471":{"name":"Vulturous Aven","layout":"normal","manaCost":"{3}{B}","cmc":4,"type":"Creature — Bird Shaman","rarity":"Common","text":"Flying\nExploit (When this creature enters the battlefield, you may sacrifice a creature.)\nWhen Vulturous Aven exploits a creature, you draw two cards and you lose 2 life.","flavor":null,"artist":"Kev Walker","number":"126","power":"2","toughness":"3","loyalty":null,"multiverseid":394743,"imageName":"vulturous aven","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":1},"123393":{"name":"Reduce in Stature","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nEnchanted creature has base power and toughness 0/2.","flavor":"A dragon learns humility only in the moments before its death.","artist":"Dan Scott","number":"72","power":null,"toughness":null,"loyalty":null,"multiverseid":394662,"imageName":"reduce in stature","watermark":null,"setCode":"DTK","imageCode":"dtk","count":2},"124416":{"name":"Youthful Scholar","layout":"normal","manaCost":"{3}{U}","cmc":4,"type":"Creature — Human Wizard","rarity":"Uncommon","text":"When Youthful Scholar dies, draw two cards.","flavor":"\"Too dumb, and you end up a sibsig. Too smart, and you end up a meal. Mediocrity is the key to a long life.\"\n—Mogai, Silumgar noble","artist":"Cynthia Sheppard","number":"84","power":"2","toughness":"2","loyalty":null,"multiverseid":394746,"imageName":"youthful scholar","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":4},"132608":{"name":"Evangel of Heliod","layout":"normal","manaCost":"{4}{W}{W}","cmc":6,"type":"Creature — Human Cleric","rarity":"Uncommon","text":"When Evangel of Heliod enters the battlefield, put a number of 1/1 white Soldier creature tokens onto the battlefield equal to your devotion to white. (Each {W} in the mana costs of permanents you control counts toward your devotion to white.)","flavor":null,"artist":"Nils Hamm","number":"11","power":"1","toughness":"3","loyalty":null,"multiverseid":373641,"imageName":"evangel of heliod","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"119303":{"name":"Riot Piker","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Creature — Goblin Berserker","rarity":"Common","text":"First strike\nRiot Piker attacks each turn if able.","flavor":"He doesn't care whether he's rioting about trade rights or just having a drunken brawl. He wakes up every morning eager to smash some heads.","artist":"Christopher Moeller","number":"37","power":"2","toughness":"1","loyalty":null,"multiverseid":368998,"imageName":"riot piker","watermark":null,"setCode":"DGM","imageCode":"dgm","count":1},"118280":{"name":"Hired Torturer","layout":"normal","manaCost":"{2}{B}","cmc":3,"type":"Creature — Human Rogue","rarity":"Common","text":"Defender\n{3}{B}, {T}: Target opponent loses 2 life, then reveals a card at random from his or her hand.","flavor":"\"Follow your passion, I always say. Might as well get paid to do what you love.\"","artist":"Winona Nelson","number":"25","power":"2","toughness":"3","loyalty":null,"multiverseid":369048,"imageName":"hired torturer","watermark":null,"setCode":"DGM","imageCode":"dgm","count":1},"77327":{"name":"Alabaster Kirin","layout":"normal","manaCost":"{3}{W}","cmc":4,"type":"Creature — Kirin","rarity":"Common","text":"Flying, vigilance","flavor":"The appearance of a kirin signifies the passing or arrival of an important figure. As word of sightings spread, all the khans took it to mean themselves. Only the shaman Chianul thought of Sarkhan Vol.","artist":"Igor Kieryluk","number":"4","power":"2","toughness":"3","loyalty":null,"multiverseid":386473,"imageName":"alabaster kirin","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"1576456":{"name":"Foul-Tongue Shriek","layout":"normal","manaCost":"{B}","cmc":1,"type":"Instant","rarity":"Common","text":"Target opponent loses 1 life for each attacking creature you control. You gain that much life.","flavor":"Foul-Tongue shamans draw their powers from a dark twisting of the Draconic language.","artist":"Dave Kendall","number":"103","power":null,"toughness":null,"loyalty":null,"multiverseid":394578,"imageName":"foul-tongue shriek","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"1606154":{"name":"Sandsteppe Scavenger","layout":"normal","manaCost":"{4}{G}","cmc":5,"type":"Creature — Hound Scout","rarity":"Common","text":"When Sandsteppe Scavenger enters the battlefield, bolster 2. (Choose a creature with the least toughness among creatures you control and put two +1/+1 counters on it.)","flavor":"\"Sad what passes for a dragon among the Silumgar.\"","artist":"Kieran Yanner","number":"200","power":"2","toughness":"2","loyalty":null,"multiverseid":394673,"imageName":"sandsteppe scavenger","watermark":"Dromoka","setCode":"DTK","imageCode":"dtk","count":3},"125465":{"name":"Palace Siege","layout":"normal","manaCost":"{3}{B}{B}","cmc":5,"type":"Enchantment","rarity":"Rare","text":"As Palace Siege enters the battlefield, choose Khans or Dragons.\n• Khans — At the beginning of your upkeep, return target creature card from your graveyard to your hand.\n• Dragons — At the beginning of your upkeep, each opponent loses 2 life and you gain 2 life.","flavor":null,"artist":"Slawomir Maniak","number":"79","power":null,"toughness":null,"loyalty":null,"multiverseid":391892,"imageName":"palace siege","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"122393":{"name":"Clinging Anemones","layout":"normal","manaCost":"{3}{U}","cmc":4,"type":"Creature — Jellyfish","rarity":"Common","text":"Defender\nEvolve (Whenever a creature enters the battlefield under your control, if that creature has greater power or toughness than this creature, put a +1/+1 counter on this creature.)","flavor":null,"artist":"Mike Bierek","number":"31","power":"1","toughness":"4","loyalty":null,"multiverseid":366363,"imageName":"clinging anemones","watermark":"Simic","setCode":"GTC","imageCode":"gtc","count":1},"1592833":{"name":"Shaman of Spring","layout":"normal","manaCost":"{3}{G}","cmc":4,"type":"Creature — Elf Shaman","rarity":"Common","text":"When Shaman of Spring enters the battlefield, draw a card.","flavor":"Some shamanic sects advocate the different seasons, each working to preserve nature's cycles.","artist":"Johannes Voss","number":"199","power":"2","toughness":"2","loyalty":null,"multiverseid":383377,"imageName":"shaman of spring","watermark":null,"setCode":"M15","imageCode":"m15","count":2},"1621508":{"name":"Terra Stomper","layout":"normal","manaCost":"{3}{G}{G}{G}","cmc":6,"type":"Creature — Beast","rarity":"Rare","text":"Terra Stomper can't be countered.\nTrample (If this creature would assign enough damage to its blockers to destroy them, you may have it assign the rest of its damage to defending player or planeswalker.)","flavor":"Its footfalls cause violent earthquakes, hurtling boulders, and unseasonable dust storms.","artist":"Goran Josic","number":"284","power":"8","toughness":"8","loyalty":null,"multiverseid":383173,"imageName":"terra stomper","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"126493":{"name":"Embodiment of Spring","layout":"normal","manaCost":"{U}","cmc":1,"type":"Creature — Elemental","rarity":"Common","text":"{1}{G}, {T}, Sacrifice Embodiment of Spring: Search your library for a basic land card, put it onto the battlefield tapped, then shuffle your library.","flavor":"Arel dreamed of winter's end. The next morning she followed a strange trail and found a seedling in the snow.","artist":"Wayne Reynolds","number":"39","power":"0","toughness":"3","loyalty":null,"multiverseid":386530,"imageName":"embodiment of spring","watermark":"Temur","setCode":"KTK","imageCode":"ktk","count":1},"133662":{"name":"Observant Alseid","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Enchantment Creature — Nymph","rarity":"Common","text":"Bestow {4}{W} (If you cast this card for its bestow cost, it's an Aura spell with enchant creature. It becomes a creature again if it's not attached to a creature.)\nVigilance\nEnchanted creature gets +2/+2 and has vigilance.","flavor":null,"artist":"Todd Lockwood","number":"24","power":"2","toughness":"2","loyalty":null,"multiverseid":373733,"imageName":"observant alseid","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1620485":{"name":"Inspired Charge","layout":"normal","manaCost":"{2}{W}{W}","cmc":4,"type":"Instant","rarity":"Common","text":"Creatures you control get +2/+1 until end of turn.","flavor":"\"Impossible! How could they overwhelm us? We had barricades, war elephants, . . . and they were barely a tenth of our number!\"\n—General Avitora","artist":"Wayne Reynolds","number":"272","power":null,"toughness":null,"loyalty":null,"multiverseid":383166,"imageName":"inspired charge","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"122396":{"name":"Monastery Siege","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Enchantment","rarity":"Rare","text":"As Monastery Siege enters the battlefield, choose Khans or Dragons.\n• Khans — At the beginning of your draw step, draw an additional card, then discard a card.\n• Dragons — Spells your opponents cast that target you or a permanent you control cost {2} more to cast.","flavor":null,"artist":"Mark Winters","number":"43","power":null,"toughness":null,"loyalty":null,"multiverseid":391884,"imageName":"monastery siege","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"124447":{"name":"Zephyr Scribe","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Creature — Human Monk","rarity":"Common","text":"{U}, {T}: Draw a card, then discard a card.\nWhenever you cast a noncreature spell, untap Zephyr Scribe.","flavor":"\"Ojutai's rule has allowed Tarkir's monks to learn from the truly enlightened.\"\n—Sarkhan Vol","artist":"Lius Lasahido","number":"85","power":"2","toughness":"1","loyalty":null,"multiverseid":394747,"imageName":"zephyr scribe","watermark":"Ojutai","setCode":"DTK","imageCode":"dtk","count":1},"1578502":{"name":"Wandering Tombshell","layout":"normal","manaCost":"{3}{B}","cmc":4,"type":"Creature — Zombie Turtle","rarity":"Common","text":null,"flavor":"The crumbling temples on the tortoise's back are monuments to the decadence of the ancient Sultai. Though it harkens back to the era of the khans, Silumgar allows it to walk his territory as a warning to those who would oppose him.","artist":"Yeong-Hao Han","number":"127","power":"1","toughness":"6","loyalty":null,"multiverseid":394744,"imageName":"wandering tombshell","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":2},"1610246":{"name":"Evolving Wilds","layout":"normal","manaCost":null,"cmc":null,"type":"Land","rarity":"Common","text":"{T}, Sacrifice Evolving Wilds: Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.","flavor":"The land is ever resilient. Should it die, it will be reborn.","artist":"Andreas Rocha","number":"248","power":null,"toughness":null,"loyalty":null,"multiverseid":394568,"imageName":"evolving wilds","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"125470":{"name":"Defeat","layout":"normal","manaCost":"{1}{B}","cmc":2,"type":"Sorcery","rarity":"Common","text":"Destroy target creature with power 2 or less.","flavor":"\"Wars are decided one life at a time.\"\n—Gvar Barzeel, Kolaghan warrior","artist":"Dave Kendall","number":"97","power":null,"toughness":null,"loyalty":null,"multiverseid":394534,"imageName":"defeat","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"1577479":{"name":"Reckless Imp","layout":"normal","manaCost":"{2}{B}","cmc":3,"type":"Creature — Imp","rarity":"Common","text":"Flying\nReckless Imp can't block.\nDash {1}{B} (You may cast this spell for its dash cost. If you do, it gains haste, and it's returned from the battlefield to its owner's hand at the beginning of the next end step.)","flavor":null,"artist":"Torstein Nordstrand","number":"115","power":"2","toughness":"2","loyalty":null,"multiverseid":394661,"imageName":"reckless imp","watermark":"Kolaghan","setCode":"DTK","imageCode":"dtk","count":2},"1593916":{"name":"Centaur Healer","layout":"normal","manaCost":"{1}{G}{W}","cmc":3,"type":"Creature — Centaur Cleric","rarity":"Common","text":"When Centaur Healer enters the battlefield, you gain 3 life.","flavor":"Instructors at the Kasarna training grounds are capable healers in case their students fail to grasp the subtleties of combat.","artist":"Mark Zug","number":"148","power":"3","toughness":"3","loyalty":null,"multiverseid":253654,"imageName":"centaur healer","watermark":"Selesnya","setCode":"RTR","imageCode":"rtr","count":1},"119334":{"name":"Rubblebelt Maaka","layout":"normal","manaCost":"{3}{R}","cmc":4,"type":"Creature — Cat","rarity":"Common","text":"Bloodrush — {R}, Discard Rubblebelt Maaka: Target attacking creature gets +3/+3 until end of turn.","flavor":"\"The maaka remain loyal to us in this time of strife. We don't even have to feed them—our enemies do.\"\n—Nedja, Gruul shaman","artist":"Eric Velhagen","number":"38","power":"3","toughness":"3","loyalty":null,"multiverseid":369075,"imageName":"rubblebelt maaka","watermark":"Gruul","setCode":"DGM","imageCode":"dgm","count":1},"1590847":{"name":"Viashino Racketeer","layout":"normal","manaCost":"{2}{R}","cmc":3,"type":"Creature — Viashino Rogue","rarity":"Common","text":"When Viashino Racketeer enters the battlefield, you may discard a card. If you do, draw a card.","flavor":"\"You may call me a fool, selling this stuff on Orzhov turf. Well, you need to be a little reckless to survive.\"","artist":"Slawomir Maniak","number":"112","power":"2","toughness":"1","loyalty":null,"multiverseid":265379,"imageName":"viashino racketeer","watermark":null,"setCode":"RTR","imageCode":"rtr","count":1},"1591871":{"name":"Predatory Sliver","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Creature — Sliver","rarity":"Common","text":"Sliver creatures you control get +1/+1.","flavor":"No matter how much the slivers change, their collective might remains.","artist":"Mathias Kollros","number":"189","power":"1","toughness":"1","loyalty":null,"multiverseid":370745,"imageName":"predatory sliver","watermark":null,"setCode":"M14","imageCode":"m14","count":3},"123434":{"name":"Nyx-Fleece Ram","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Enchantment Creature — Sheep","rarity":"Uncommon","text":"At the beginning of your upkeep, you gain 1 life.","flavor":"The gods are fascinated by innocence, perhaps because it's a quality they themselves lack.","artist":"Terese Nielsen","number":"18","power":"0","toughness":"5","loyalty":null,"multiverseid":380463,"imageName":"nyx-fleece ram","watermark":null,"setCode":"JOU","imageCode":"jou","count":1},"1591863":{"name":"Ride Down","layout":"normal","manaCost":"{R}{W}","cmc":2,"type":"Instant","rarity":"Uncommon","text":"Destroy target blocking creature. Creatures that were blocked by that creature this combat gain trample until end of turn.","flavor":"\"I will wash you from my hooves!\"\n—Mardu taunt","artist":"Daarken","number":"194","power":null,"toughness":null,"loyalty":null,"multiverseid":386636,"imageName":"ride down","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"121401":{"name":"Luminate Primordial","layout":"normal","manaCost":"{5}{W}{W}","cmc":7,"type":"Creature — Avatar","rarity":"Rare","text":"Vigilance\nWhen Luminate Primordial enters the battlefield, for each opponent, exile up to one target creature that player controls and that player gains life equal to its power.","flavor":null,"artist":"Stephan Martiniere","number":"20","power":"4","toughness":"7","loyalty":null,"multiverseid":366240,"imageName":"luminate primordial","watermark":null,"setCode":"GTC","imageCode":"gtc","count":1},"122427":{"name":"Neutralizing Blast","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Instant","rarity":"Uncommon","text":"Counter target multicolored spell.","flavor":"\"To defeat your enemies, you must remove their ability to make war against you.\"","artist":"Dan Scott","number":"44","power":null,"toughness":null,"loyalty":null,"multiverseid":391887,"imageName":"neutralizing blast","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"1588771":{"name":"Seismic Stomp","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Sorcery","rarity":"Common","text":"Creatures without flying can't block this turn.","flavor":"\"It is not in me to tread lightly.\"\n—Ryda, geomancer","artist":"Chase Stone","number":"152","power":null,"toughness":null,"loyalty":null,"multiverseid":370713,"imageName":"seismic stomp","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1588772":{"name":"Krenko's Enforcer","layout":"normal","manaCost":"{1}{R}{R}","cmc":3,"type":"Creature — Goblin Warrior","rarity":"Common","text":"Intimidate (This creature can't be blocked except by artifact creatures and/or creatures that share a color with it.)","flavor":"He just likes to break legs. Collecting the debt is a bonus.","artist":"Karl Kopinski","number":"152","power":"2","toughness":"2","loyalty":null,"multiverseid":383294,"imageName":"krenko's enforcer","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1620516":{"name":"Serra Angel","layout":"normal","manaCost":"{3}{W}{W}","cmc":5,"type":"Creature — Angel","rarity":"Uncommon","text":"Flying (This creature can't be blocked except by creatures with flying or reach.)\nVigilance (Attacking doesn't cause this creature to tap.)","flavor":"Follow the light. In its absence, follow her.","artist":"Greg Staples","number":"273","power":"4","toughness":"4","loyalty":null,"multiverseid":383171,"imageName":"serra angel","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"121405":{"name":"Marshmist Titan","layout":"normal","manaCost":"{6}{B}","cmc":7,"type":"Creature — Giant","rarity":"Common","text":"Marshmist Titan costs {X} less to cast, where X is your devotion to black. (Each {B} in the mana costs of permanents you control counts toward your devotion to black.)","flavor":"A favorite of Erebos, for it has sent many to the Underworld.","artist":"Volkan Baga","number":"76","power":"4","toughness":"5","loyalty":null,"multiverseid":378448,"imageName":"marshmist titan","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"123455":{"name":"Sidisi's Faithful","layout":"normal","manaCost":"{U}","cmc":1,"type":"Creature — Naga Wizard","rarity":"Common","text":"Exploit (When this creature enters the battlefield, you may sacrifice a creature.)\nWhen Sidisi's Faithful exploits a creature, return target creature to its owner's hand.","flavor":"\"I tire of your prattle, and your face.\"","artist":"Lius Lasahido","number":"74","power":"0","toughness":"4","loyalty":null,"multiverseid":394696,"imageName":"sidisi's faithful","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":3},"1576487":{"name":"Gravepurge","layout":"normal","manaCost":"{2}{B}","cmc":3,"type":"Instant","rarity":"Common","text":"Put any number of target creature cards from your graveyard on top of your library.\nDraw a card.","flavor":"\"Lord Silumgar has given you a second chance to please him.\"\n—Siara, the Dragon's Mouth","artist":"Nils Hamm","number":"104","power":null,"toughness":null,"loyalty":null,"multiverseid":394585,"imageName":"gravepurge","watermark":null,"setCode":"DTK","imageCode":"dtk","count":2},"124478":{"name":"Mardu Hateblade","layout":"normal","manaCost":"{W}","cmc":1,"type":"Creature — Human Warrior","rarity":"Common","text":"{B}: Mardu Hateblade gains deathtouch until end of turn. (Any amount of damage it deals to a creature is enough to destroy it.)","flavor":"\"There may be little honor in my tactics, but there is no honor in losing.\"","artist":"Ryan Alexander Lee","number":"16","power":"1","toughness":"1","loyalty":null,"multiverseid":386594,"imageName":"mardu hateblade","watermark":"Mardu","setCode":"KTK","imageCode":"ktk","count":2},"1608231":{"name":"Narset Transcendent","layout":"normal","manaCost":"{2}{W}{U}","cmc":4,"type":"Planeswalker — Narset","rarity":"Mythic Rare","text":"+1: Look at the top card of your library. If it's a noncreature, nonland card, you may reveal it and put it into your hand.\n−2: When you cast your next instant or sorcery spell from your hand this turn, it gains rebound.\n−9: You get an emblem with \"Your opponents can't cast noncreature spells.\"","flavor":null,"artist":"Magali Villeneuve","number":"225","power":null,"toughness":null,"loyalty":6,"multiverseid":394633,"imageName":"narset transcendent","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"121409":{"name":"Dance of the Skywise","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Instant","rarity":"Uncommon","text":"Until end of turn, target creature you control becomes a blue Dragon Illusion with base power and toughness 4/4, loses all abilities, and gains flying.","flavor":"The Ojutai believe in the Great Wheel: those who best serve the dragonlord are destined to be reborn as dragons.","artist":"Jack Wang","number":"50","power":null,"toughness":null,"loyalty":null,"multiverseid":394529,"imageName":"dance of the skywise","watermark":null,"setCode":"DTK","imageCode":"dtk","count":2},"1589848":{"name":"Crackling Doom","layout":"normal","manaCost":"{R}{W}{B}","cmc":3,"type":"Instant","rarity":"Rare","text":"Crackling Doom deals 2 damage to each opponent. Each opponent sacrifices a creature with the greatest power among creatures he or she controls.","flavor":"Do not fear the lightning. Fear the one it obeys.","artist":"Yohann Schepacz","number":"171","power":null,"toughness":null,"loyalty":null,"multiverseid":386507,"imageName":"crackling doom","watermark":"Mardu","setCode":"KTK","imageCode":"ktk","count":2},"1590878":{"name":"Aerial Predation","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Instant","rarity":"Common","text":"Destroy target creature with flying. You gain 2 life.","flavor":"In the towering trees of the Samok Stand and the predators that guard them, the might of the Ravnican wild has returned.","artist":"BD","number":"113","power":null,"toughness":null,"loyalty":null,"multiverseid":289227,"imageName":"aerial predation","watermark":null,"setCode":"RTR","imageCode":"rtr","count":1},"1590879":{"name":"Howl of the Night Pack","layout":"normal","manaCost":"{6}{G}","cmc":7,"type":"Sorcery","rarity":"Uncommon","text":"Put a 2/2 green Wolf creature token onto the battlefield for each Forest you control.","flavor":"The murderous horrors of Raven's Run are legendary, but even that haunted place goes quiet when the night wolves howl.","artist":"Lars Grant-West","number":"178","power":null,"toughness":null,"loyalty":null,"multiverseid":370718,"imageName":"howl of the night pack","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1591894":{"name":"Sage of the Inward Eye","layout":"normal","manaCost":"{2}{U}{R}{W}","cmc":5,"type":"Creature — Djinn Wizard","rarity":"Rare","text":"Flying\nWhenever you cast a noncreature spell, creatures you control gain lifelink until end of turn.","flavor":"\"No one petal claims beauty for the lotus.\"","artist":"Chase Stone","number":"195","power":"3","toughness":"4","loyalty":null,"multiverseid":386644,"imageName":"sage of the inward eye","watermark":"Jeskai","setCode":"KTK","imageCode":"ktk","count":1},"1606216":{"name":"Segmented Krotiq","layout":"normal","manaCost":"{5}{G}","cmc":6,"type":"Creature — Insect","rarity":"Common","text":"Megamorph {6}{G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)","flavor":"The list of things a krotiq eats is as long as the krotiq itself.","artist":"Christopher Moeller","number":"202","power":"6","toughness":"5","loyalty":null,"multiverseid":394684,"imageName":"segmented krotiq","watermark":null,"setCode":"DTK","imageCode":"dtk","count":2},"125524":{"name":"Illness in the Ranks","layout":"normal","manaCost":"{B}","cmc":1,"type":"Enchantment","rarity":"Uncommon","text":"Creature tokens get -1/-1.","flavor":"\"Selesnya denied us tribute. Let's show them the error of their ways.\"\n—Milana, Orzhov prelate","artist":"Nils Hamm","number":"69","power":null,"toughness":null,"loyalty":null,"multiverseid":366354,"imageName":"illness in the ranks","watermark":null,"setCode":"GTC","imageCode":"gtc","count":1},"1590848":{"name":"Groundshaker Sliver","layout":"normal","manaCost":"{6}{G}","cmc":7,"type":"Creature — Sliver","rarity":"Common","text":"Sliver creatures you control have trample. (If a Sliver you control would assign enough damage to its blockers to destroy them, you may have it assign the rest of its damage to defending player or planeswalker.)","flavor":null,"artist":"Chase Stone","number":"177","power":"5","toughness":"5","loyalty":null,"multiverseid":370626,"imageName":"groundshaker sliver","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"124504":{"name":"Fearsome Awakening","layout":"normal","manaCost":"{4}{B}","cmc":5,"type":"Sorcery","rarity":"Uncommon","text":"Return target creature card from your graveyard to the battlefield. If it's a Dragon, put two +1/+1 counters on it.","flavor":"On Tarkir, dragons emerge from enormous tempests, phenomena tied to Ugin's very presence on the plane.","artist":"Véronique Meignaud","number":"69","power":null,"toughness":null,"loyalty":null,"multiverseid":391830,"imageName":"fearsome awakening","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"76376":{"name":"Eagle of the Watch","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Creature — Bird","rarity":"Common","text":"Flying, vigilance","flavor":"\"Even from miles away, I could see our eagles circling. That's when I gave the command to pick up the pace. I knew we were needed at home.\"\n—Kanlos, Akroan captain","artist":"Scott Murphy","number":"9","power":"2","toughness":"1","loyalty":null,"multiverseid":380407,"imageName":"eagle of the watch","watermark":null,"setCode":"JOU","imageCode":"jou","count":1},"1589825":{"name":"Bramblecrush","layout":"normal","manaCost":"{2}{G}{G}","cmc":4,"type":"Sorcery","rarity":"Uncommon","text":"Destroy target noncreature permanent.","flavor":"Nature abhors a lot of things.","artist":"Drew Baker","number":"165","power":null,"toughness":null,"loyalty":null,"multiverseid":370642,"imageName":"bramblecrush","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"122459":{"name":"Bolt of Keranos","layout":"normal","manaCost":"{1}{R}{R}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Bolt of Keranos deals 3 damage to target creature or player. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)","flavor":"The breakthroughs granted by Keranos, god of epiphany, can be surprisingly literal.","artist":"Karl Kopinski","number":"89","power":null,"toughness":null,"loyalty":null,"multiverseid":378461,"imageName":"bolt of keranos","watermark":null,"setCode":"BNG","imageCode":"bng","count":2},"1620547":{"name":"Cancel","layout":"normal","manaCost":"{1}{U}{U}","cmc":3,"type":"Instant","rarity":"Common","text":"Counter target spell.","flavor":"\"What you are attempting is not against the law. It is, however, extremely foolish.\"","artist":"David Palumbo","number":"274","power":null,"toughness":null,"loyalty":null,"multiverseid":383161,"imageName":"cancel","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"122458":{"name":"Rakshasa's Disdain","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Instant","rarity":"Common","text":"Counter target spell unless its controller pays {1} for each card in your graveyard.","flavor":"\"Every failure, every death only makes my strength greater.\"","artist":"Seb McKinnon","number":"45","power":null,"toughness":null,"loyalty":null,"multiverseid":391900,"imageName":"rakshasa's disdain","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"120412":{"name":"Pressure Point","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Instant","rarity":"Common","text":"Tap target creature.\nDraw a card.","flavor":"By studying dragon anatomy, Jeskai monks have learned how to locate clusters of nerves that will incapacitate even the mightiest dragons.","artist":"Chase Stone","number":"21","power":null,"toughness":null,"loyalty":null,"multiverseid":391896,"imageName":"pressure point","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"125532":{"name":"Dutiful Attendant","layout":"normal","manaCost":"{2}{B}","cmc":3,"type":"Creature — Human Warrior","rarity":"Common","text":"When Dutiful Attendant dies, return another target creature card from your graveyard to your hand.","flavor":"The dragon who eats the last head in the basket is entitled to the servant's.","artist":"Aaron Miller","number":"99","power":"1","toughness":"2","loyalty":null,"multiverseid":394561,"imageName":"dutiful attendant","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":4},"1576518":{"name":"Hand of Silumgar","layout":"normal","manaCost":"{1}{B}","cmc":2,"type":"Creature — Human Warrior","rarity":"Common","text":"Deathtouch (Any amount of damage this deals to a creature is enough to destroy it.)","flavor":"Silumgar trains those whom he favors in his magic, granting them the ability to spread his disdain across the land.","artist":"Lius Lasahido","number":"105","power":"2","toughness":"1","loyalty":null,"multiverseid":394590,"imageName":"hand of silumgar","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":2},"1608262":{"name":"Necromaster Dragon","layout":"normal","manaCost":"{3}{U}{B}","cmc":5,"type":"Creature — Dragon","rarity":"Rare","text":"Flying\nWhenever Necromaster Dragon deals combat damage to a player, you may pay {2}. If you do, put a 2/2 black Zombie creature token onto the battlefield and each opponent puts the top two cards of his or her library into his or her graveyard.","flavor":null,"artist":"Mark Zug","number":"226","power":"4","toughness":"4","loyalty":null,"multiverseid":394635,"imageName":"necromaster dragon","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":1},"121440":{"name":"Dirgur Nemesis","layout":"normal","manaCost":"{5}{U}","cmc":6,"type":"Creature — Serpent","rarity":"Common","text":"Defender\nMegamorph {6}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)","flavor":null,"artist":"Mathias Kollros","number":"51","power":"6","toughness":"5","loyalty":null,"multiverseid":394537,"imageName":"dirgur nemesis","watermark":null,"setCode":"DTK","imageCode":"dtk","count":2},"1590910":{"name":"Hunt the Weak","layout":"normal","manaCost":"{3}{G}","cmc":4,"type":"Sorcery","rarity":"Common","text":"Put a +1/+1 counter on target creature you control. Then that creature fights target creature you don't control. (Each deals damage equal to its power to the other.)","flavor":"He who hesitates is lunch.","artist":"Raoul Vitale","number":"179","power":null,"toughness":null,"loyalty":null,"multiverseid":370743,"imageName":"hunt the weak","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"117350":{"name":"Opal Lake Gatekeepers","layout":"normal","manaCost":"{3}{U}","cmc":4,"type":"Creature — Vedalken Soldier","rarity":"Common","text":"When Opal Lake Gatekeepers enters the battlefield, if you control two or more Gates, you may draw a card.","flavor":"Sentries guard Ravnica's landmarks and outlying districts, unaware of these places' import to the maze.","artist":"Seb McKinnon","number":"16","power":"2","toughness":"4","loyalty":null,"multiverseid":368996,"imageName":"opal lake gatekeepers","watermark":null,"setCode":"DGM","imageCode":"dgm","count":1},"1589887":{"name":"Brindle Boar","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Creature — Boar","rarity":"Common","text":"Sacrifice Brindle Boar: You gain 4 life.","flavor":"\"Tell the cooks to prepare the fires. Tonight we feast!\"\n—Tolar Wolfbrother, Krosan tracker","artist":"Dave Allsop","number":"167","power":"2","toughness":"2","loyalty":null,"multiverseid":370778,"imageName":"brindle boar","watermark":null,"setCode":"M14","imageCode":"m14","count":3},"77420":{"name":"Defiant Strike","layout":"normal","manaCost":"{W}","cmc":1,"type":"Instant","rarity":"Common","text":"Target creature gets +1/+0 until end of turn.\nDraw a card.","flavor":"\"Stand where the whole battle can see you. Strike so they'll never forget.\"\n—Anafenza, khan of the Abzan","artist":"Anastasia Ovchinnikova","number":"7","power":null,"toughness":null,"loyalty":null,"multiverseid":386515,"imageName":"defiant strike","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"1599094":{"name":"Time to Feed","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Choose target creature an opponent controls. When that creature dies this turn, you gain 3 life. Target creature you control fights that creature. (Each deals damage equal to its power to the other.)","flavor":null,"artist":"Wayne Reynolds","number":"181","power":null,"toughness":null,"loyalty":null,"multiverseid":373633,"imageName":"time to feed","watermark":null,"setCode":"THS","imageCode":"ths","count":2},"138869":{"name":"Goblin Rally","layout":"normal","manaCost":"{3}{R}{R}","cmc":5,"type":"Sorcery","rarity":"Uncommon","text":"Put four 1/1 red Goblin creature tokens onto the battlefield.","flavor":"You don't so much hire goblins as put ideas in their heads.","artist":"Nic Klein","number":"95","power":null,"toughness":null,"loyalty":null,"multiverseid":270788,"imageName":"goblin rally","watermark":null,"setCode":"RTR","imageCode":"rtr","count":1},"122489":{"name":"Reality Shift","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Instant","rarity":"Uncommon","text":"Exile target creature. Its controller manifests the top card of his or her library. (That player puts the top card of his or her library onto the battlefield face down as a 2/2 creature. If it's a creature card, it can be turned face up any time for its mana cost.)","flavor":null,"artist":"Howard Lyon","number":"46","power":null,"toughness":null,"loyalty":null,"multiverseid":391903,"imageName":"reality shift","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"1589856":{"name":"Briarpack Alpha","layout":"normal","manaCost":"{3}{G}","cmc":4,"type":"Creature — Wolf","rarity":"Uncommon","text":"Flash (You may cast this spell any time you could cast an instant.)\nWhen Briarpack Alpha enters the battlefield, target creature gets +2/+2 until end of turn.","flavor":"\"One of my greatest teachers.\"\n—Garruk Wildspeaker","artist":"Daarken","number":"166","power":"3","toughness":"3","loyalty":null,"multiverseid":370739,"imageName":"briarpack alpha","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1589857":{"name":"Torch Fiend","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Creature — Devil","rarity":"Common","text":"{R}, Sacrifice Torch Fiend: Destroy target artifact.","flavor":"Devils redecorate every room with fire.","artist":"Winona Nelson","number":"166","power":"2","toughness":"1","loyalty":null,"multiverseid":383416,"imageName":"torch fiend","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1620578":{"name":"Mahamoti Djinn","layout":"normal","manaCost":"{4}{U}{U}","cmc":6,"type":"Creature — Djinn","rarity":"Rare","text":"Flying (This creature can't be blocked except by creatures with flying or reach.)","flavor":"Of royal blood among the spirits of the air, the Mahamoti djinn rides on the wings of the winds. As dangerous in the gambling hall as he is in battle, he is a master of trickery and misdirection.","artist":"Greg Staples","number":"275","power":"5","toughness":"6","loyalty":null,"multiverseid":383167,"imageName":"mahamoti djinn","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1587810":{"name":"Goblin Shortcutter","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Creature — Goblin Scout","rarity":"Common","text":"When Goblin Shortcutter enters the battlefield, target creature can't block this turn.","flavor":"\"I'm not running away! I'm figuring out the best routes.\"","artist":"Jesper Ejsing","number":"142","power":"2","toughness":"1","loyalty":null,"multiverseid":370610,"imageName":"goblin shortcutter","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"123517":{"name":"Silumgar Sorcerer","layout":"normal","manaCost":"{1}{U}{U}","cmc":3,"type":"Creature — Human Wizard","rarity":"Uncommon","text":"Flash (You may cast this spell any time you could cast an instant.)\nFlying\nExploit (When this creature enters the battlefield, you may sacrifice a creature.)\nWhen Silumgar Sorcerer exploits a creature, counter target creature spell.","flavor":null,"artist":"Jeff Simpson","number":"76","power":"2","toughness":"1","loyalty":null,"multiverseid":394703,"imageName":"silumgar sorcerer","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":1},"1577572":{"name":"Shambling Goblin","layout":"normal","manaCost":"{B}","cmc":1,"type":"Creature — Zombie Goblin","rarity":"Common","text":"When Shambling Goblin dies, target creature an opponent controls gets -1/-1 until end of turn.","flavor":"\"The Kolaghan send them at us. We kill and raise them. They fight the next wave the Kolaghan send. It's a neat little cycle.\"\n—Asmala, Silumgar sorcerer","artist":"Yeong-Hao Han","number":"118","power":"1","toughness":"1","loyalty":null,"multiverseid":394689,"imageName":"shambling goblin","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":5},"119420":{"name":"Dragon Bell Monk","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Creature — Human Monk","rarity":"Common","text":"Vigilance\nProwess (Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)","flavor":"He has spent years training his eyes and ears to detect the subtle signs of a dragon's approach.","artist":"Lius Lasahido","number":"10","power":"2","toughness":"2","loyalty":null,"multiverseid":391822,"imageName":"dragon bell monk","watermark":"Jeskai","setCode":"FRF","imageCode":"frf","count":1},"1607270":{"name":"Cunning Breezedancer","layout":"normal","manaCost":"{4}{W}{U}","cmc":6,"type":"Creature — Dragon","rarity":"Uncommon","text":"Flying\nWhenever you cast a noncreature spell, Cunning Breezedancer gets +2/+2 until end of turn.","flavor":"\"That which is beautiful in form can also be deadly.\"\n—Ishai, Ojutai dragonspeaker","artist":"Todd Lockwood","number":"215","power":"4","toughness":"4","loyalty":null,"multiverseid":394526,"imageName":"cunning breezedancer","watermark":"Ojutai","setCode":"DTK","imageCode":"dtk","count":1},"122494":{"name":"Mystic Meditation","layout":"normal","manaCost":"{3}{U}","cmc":4,"type":"Sorcery","rarity":"Common","text":"Draw three cards. Then discard two cards unless you discard a creature card.","flavor":"\"Still the mind and quiet the heart. Only then will you hear the Multiverse's great truths.\"\n—Narset","artist":"Howard Lyon","number":"64","power":null,"toughness":null,"loyalty":null,"multiverseid":394631,"imageName":"mystic meditation","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"1589918":{"name":"Deadly Recluse","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Creature — Spider","rarity":"Common","text":"Reach (This creature can block creatures with flying.)\nDeathtouch (Any amount of damage this deals to a creature is enough to destroy it.)","flavor":"Even dragons fear its silken strands.","artist":"Warren Mahy","number":"168","power":"1","toughness":"2","loyalty":null,"multiverseid":370582,"imageName":"deadly recluse","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1589919":{"name":"Ancient Silverback","layout":"normal","manaCost":"{4}{G}{G}","cmc":6,"type":"Creature — Ape","rarity":"Uncommon","text":"{G}: Regenerate Ancient Silverback. (The next time this creature would be destroyed this turn, it isn't. Instead tap it, remove all damage from it, and remove it from combat.)","flavor":null,"artist":"Scott M. Fischer","number":"168","power":"6","toughness":"5","loyalty":null,"multiverseid":383184,"imageName":"ancient silverback","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"85643":{"name":"Chosen by Heliod","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nWhen Chosen by Heliod enters the battlefield, draw a card.\nEnchanted creature gets +0/+2.","flavor":"\"Training and studies aid a soldier in meager amounts. The gods do the rest.\"\n—Brigone, soldier of Meletis","artist":"Zack Stella","number":"5","power":null,"toughness":null,"loyalty":null,"multiverseid":373561,"imageName":"chosen by heliod","watermark":null,"setCode":"THS","imageCode":"ths","count":2},"1599125":{"name":"Voyaging Satyr","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Creature — Satyr Druid","rarity":"Common","text":"{T}: Untap target land.","flavor":"\"None can own the land's bounty. The gods made this world for all to share its riches. And I'm not just saying that because you caught me stealing your fruit.\"","artist":"Tyler Jacobson","number":"182","power":"1","toughness":"2","loyalty":null,"multiverseid":373518,"imageName":"voyaging satyr","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"122517":{"name":"Frilled Oculus","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Creature — Homunculus","rarity":"Common","text":"{1}{G}: Frilled Oculus gets +2/+2 until end of turn. Activate this ability only once each turn.","flavor":"\"Understand the Simic? That's about as easy as winning a staring contest with a homunculus.\"\n—Dars Gostok, Firefist captain","artist":"Marco Nelor","number":"35","power":"1","toughness":"3","loyalty":null,"multiverseid":366298,"imageName":"frilled oculus","watermark":"Simic","setCode":"GTC","imageCode":"gtc","count":1},"123543":{"name":"Write into Being","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Look at the top two cards of your library. Manifest one of those cards, then put the other on the top or bottom of your library. (To manifest a card, put it onto the battlefield face down as a 2/2 creature. Turn it face up any time for its mana cost if it's a creature card.)","flavor":null,"artist":"Yeong-Hao Han","number":"59","power":null,"toughness":null,"loyalty":null,"multiverseid":391964,"imageName":"write into being","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"133786":{"name":"Scholar of Athreos","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Creature — Human Cleric","rarity":"Common","text":"{2}{B}: Each opponent loses 1 life. You gain life equal to the life lost this way.","flavor":"She asks pointed questions of the dead who wait for Athreos, learning of life from those who are about to leave it.","artist":"Cynthia Sheppard","number":"28","power":"1","toughness":"4","loyalty":null,"multiverseid":373692,"imageName":"scholar of athreos","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1588864":{"name":"Shock","layout":"normal","manaCost":"{R}","cmc":1,"type":"Instant","rarity":"Common","text":"Shock deals 2 damage to target creature or player.","flavor":null,"artist":"Jon Foster","number":"155","power":null,"toughness":null,"loyalty":null,"multiverseid":370654,"imageName":"shock","watermark":null,"setCode":"M14","imageCode":"m14","count":2},"1588865":{"name":"Lightning Strike","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Instant","rarity":"Common","text":"Lightning Strike deals 3 damage to target creature or player.","flavor":"To wield lightning is to tame chaos.","artist":"Adam Paquette","number":"155","power":null,"toughness":null,"loyalty":null,"multiverseid":383299,"imageName":"lightning strike","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1620609":{"name":"Nightmare","layout":"normal","manaCost":"{5}{B}","cmc":6,"type":"Creature — Nightmare Horse","rarity":"Rare","text":"Flying (This creature can't be blocked except by creatures with flying or reach.)\nNightmare's power and toughness are each equal to the number of Swamps you control.","flavor":"The thunder of its hooves beats dreams into despair.","artist":"Vance Kovacs","number":"276","power":"*","toughness":"*","loyalty":null,"multiverseid":383168,"imageName":"nightmare","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"122520":{"name":"Refocus","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Instant","rarity":"Common","text":"Untap target creature.\nDraw a card.","flavor":"\"Before you can open your third eye, you must prove you can open the first two.\"","artist":"Kev Walker","number":"47","power":null,"toughness":null,"loyalty":null,"multiverseid":391904,"imageName":"refocus","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"132763":{"name":"Gods Willing","layout":"normal","manaCost":"{W}","cmc":1,"type":"Instant","rarity":"Common","text":"Target creature you control gains protection from the color of your choice until end of turn. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)","flavor":"Honor the gods of Theros, and they will return the favor.","artist":"Mark Winters","number":"16","power":null,"toughness":null,"loyalty":null,"multiverseid":373516,"imageName":"gods willing","watermark":null,"setCode":"THS","imageCode":"ths","count":2},"124571":{"name":"Rush of Battle","layout":"normal","manaCost":"{3}{W}","cmc":4,"type":"Sorcery","rarity":"Common","text":"Creatures you control get +2/+1 until end of turn. Warrior creatures you control gain lifelink until end of turn. (Damage dealt by those Warriors also causes their controller to gain that much life.)","flavor":"The Mardu charge reflects the dragon's speed—and its hunger.","artist":"Dan Scott","number":"19","power":null,"toughness":null,"loyalty":null,"multiverseid":386642,"imageName":"rush of battle","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"1586819":{"name":"Borderland Marauder","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Creature — Human Warrior","rarity":"Common","text":"Whenever Borderland Marauder attacks, it gets +2/+0 until end of turn.","flavor":"Though she is rightly feared, there are relatively few tales of her deeds in battle, for few survive her raids.","artist":"Scott M. Fischer","number":"131","power":"1","toughness":"2","loyalty":null,"multiverseid":383195,"imageName":"borderland marauder","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"122525":{"name":"Negate","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Instant","rarity":"Common","text":"Counter target noncreature spell.","flavor":"\"You cannot be an Ojutai monk. They prize wisdom and skill, and you have neither.\"\n—Siara, the Dragon's Mouth","artist":"Willian Murai","number":"65","power":null,"toughness":null,"loyalty":null,"multiverseid":394636,"imageName":"negate","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"121502":{"name":"Elusive Spellfist","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Creature — Human Monk","rarity":"Common","text":"Whenever you cast a noncreature spell, Elusive Spellfist gets +1/+0 until end of turn and can't be blocked this turn.","flavor":"\"Learn to see an obstacle from a new perspective. Underneath, for example.\"\n—Chanyi, Ojutai monk","artist":"Viktor Titov","number":"53","power":"1","toughness":"3","loyalty":null,"multiverseid":394563,"imageName":"elusive spellfist","watermark":"Ojutai","setCode":"DTK","imageCode":"dtk","count":1},"1623738":{"name":"Transguild Promenade","layout":"normal","manaCost":null,"cmc":null,"type":"Land","rarity":"Common","text":"Transguild Promenade enters the battlefield tapped.\nWhen Transguild Promenade enters the battlefield, sacrifice it unless you pay {1}.\n{T}: Add one mana of any color to your mana pool.","flavor":null,"artist":"Noah Bradley","number":"249","power":null,"toughness":null,"loyalty":null,"multiverseid":253550,"imageName":"transguild promenade","watermark":null,"setCode":"RTR","imageCode":"rtr","count":4},"1590971":{"name":"Axebane Stag","layout":"normal","manaCost":"{6}{G}","cmc":7,"type":"Creature — Elk","rarity":"Common","text":null,"flavor":"\"When the spires have burned and the cobblestones are dust, he will take his rightful place as king of the wilds.\"\n—Kirce, Axebane guardian","artist":"Martina Pilcerova","number":"116","power":"6","toughness":"7","loyalty":null,"multiverseid":265383,"imageName":"axebane stag","watermark":null,"setCode":"RTR","imageCode":"rtr","count":1},"1589949":{"name":"Elvish Mystic","layout":"normal","manaCost":"{G}","cmc":1,"type":"Creature — Elf Druid","rarity":"Common","text":"{T}: Add {G} to your mana pool.","flavor":"\"Life grows everywhere. My kin merely find those places where it grows strongest.\"\n—Nissa Revane","artist":"Wesley Burt","number":"169","power":"1","toughness":"1","loyalty":null,"multiverseid":370744,"imageName":"elvish mystic","watermark":null,"setCode":"M14","imageCode":"m14","count":2},"1588926":{"name":"Striking Sliver","layout":"normal","manaCost":"{R}","cmc":1,"type":"Creature — Sliver","rarity":"Common","text":"Sliver creatures you control have first strike. (They deal combat damage before creatures without first strike.)","flavor":"You're too busy recoiling in fear to realize that it's already hit you.","artist":"Maciej Kuciara","number":"157","power":"1","toughness":"1","loyalty":null,"multiverseid":370589,"imageName":"striking sliver","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1620671":{"name":"Walking Corpse","layout":"normal","manaCost":"{1}{B}","cmc":2,"type":"Creature — Zombie","rarity":"Common","text":null,"flavor":"\"Feeding a normal army is a problem of logistics. With zombies, it is an asset. Feeding is why they fight. Feeding is why they are feared.\"\n—Jadar, ghoulcaller of Nephalia","artist":"Igor Kieryluk","number":"278","power":"2","toughness":"2","loyalty":null,"multiverseid":383174,"imageName":"walking corpse","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1590964":{"name":"Mardu Charm","layout":"normal","manaCost":"{R}{W}{B}","cmc":3,"type":"Instant","rarity":"Uncommon","text":"Choose one —\n• Mardu Charm deals 4 damage to target creature.\n• Put two 1/1 white Warrior creature tokens onto the battlefield. They gain first strike until end of turn.\n• Target opponent reveals his or her hand. You choose a noncreature, nonland card from it. That player discards that card.","flavor":null,"artist":"Mathias Kollros","number":"186","power":null,"toughness":null,"loyalty":null,"multiverseid":386593,"imageName":"mardu charm","watermark":"Mardu","setCode":"KTK","imageCode":"ktk","count":2},"137908":{"name":"Annihilating Fire","layout":"normal","manaCost":"{1}{R}{R}","cmc":3,"type":"Instant","rarity":"Common","text":"Annihilating Fire deals 3 damage to target creature or player. If a creature dealt damage this way would die this turn, exile it instead.","flavor":"\"The most impressive performances can be done only once.\"\n—Mote, Rakdos madcap","artist":"Clint Cearley","number":"85","power":null,"toughness":null,"loyalty":null,"multiverseid":270801,"imageName":"annihilating fire","watermark":null,"setCode":"RTR","imageCode":"rtr","count":1},"1587887":{"name":"Purge the Profane","layout":"normal","manaCost":"{2}{W}{B}","cmc":4,"type":"Sorcery","rarity":"Common","text":"Target opponent discards two cards and you gain 2 life.","flavor":"The Orzhov hear the plans of the other guilds through the guilty thoughts of the disloyal.","artist":"Michael C. Hayes","number":"190","power":null,"toughness":null,"loyalty":null,"multiverseid":366393,"imageName":"purge the profane","watermark":"Orzhov","setCode":"GTC","imageCode":"gtc","count":1},"1620640":{"name":"Sengir Vampire","layout":"normal","manaCost":"{3}{B}{B}","cmc":5,"type":"Creature — Vampire","rarity":"Uncommon","text":"Flying (This creature can't be blocked except by creatures with flying or reach.)\nWhenever a creature dealt damage by Sengir Vampire this turn dies, put a +1/+1 counter on Sengir Vampire.","flavor":"Empires rise and fall, but evil is eternal.","artist":"Kev Walker","number":"277","power":"4","toughness":"4","loyalty":null,"multiverseid":383170,"imageName":"sengir vampire","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"120505":{"name":"Sandblast","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Instant","rarity":"Common","text":"Sandblast deals 5 damage to target attacking or blocking creature.","flavor":"In the Shifting Wastes, more are killed by sand than by steel.","artist":"Min Yum","number":"24","power":null,"toughness":null,"loyalty":null,"multiverseid":391912,"imageName":"sandblast","watermark":null,"setCode":"FRF","imageCode":"frf","count":2},"132794":{"name":"Corpse Hauler","layout":"normal","manaCost":"{1}{B}","cmc":2,"type":"Creature — Human Rogue","rarity":"Common","text":"{2}{B}, Sacrifice Corpse Hauler: Return another target creature card from your graveyard to your hand.","flavor":"\"He expects a reward, but the only piece of silver he'll get from me is my blade in his gut.\"\n—Shelac, necromancer","artist":"Jesper Ejsing","number":"90","power":"2","toughness":"1","loyalty":null,"multiverseid":370800,"imageName":"corpse hauler","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"132795":{"name":"Child of Night","layout":"normal","manaCost":"{1}{B}","cmc":2,"type":"Creature — Vampire","rarity":"Common","text":"Lifelink (Damage dealt by this creature also causes you to gain that much life.)","flavor":"Sins that would be too gruesome in the light of day are made more pleasing in the dark of night.","artist":"Ash Wood","number":"90","power":"2","toughness":"1","loyalty":null,"multiverseid":383208,"imageName":"child of night","watermark":null,"setCode":"M15","imageCode":"m15","count":2},"123579":{"name":"Silumgar's Scorn","layout":"normal","manaCost":"{U}{U}","cmc":2,"type":"Instant","rarity":"Uncommon","text":"As an additional cost to cast Silumgar's Scorn, you may reveal a Dragon card from your hand.\nCounter target spell unless its controller pays {1}. If you revealed a Dragon card or controlled a Dragon as you cast Silumgar's Scorn, counter that spell instead.","flavor":null,"artist":"Ryan Yee","number":"78","power":null,"toughness":null,"loyalty":null,"multiverseid":394706,"imageName":"silumgar's scorn","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":2},"1586850":{"name":"Brood Keeper","layout":"normal","manaCost":"{3}{R}","cmc":4,"type":"Creature — Human Shaman","rarity":"Uncommon","text":"Whenever an Aura becomes attached to Brood Keeper, put a 2/2 red Dragon creature token with flying onto the battlefield. It has \"{R}: This creature gets +1/+0 until end of turn.\"","flavor":"\"Come, little one. Unfurl your wings, fill your lungs, and release your first fiery breath.\"","artist":"Scott Murphy","number":"132","power":"2","toughness":"3","loyalty":null,"multiverseid":383198,"imageName":"brood keeper","watermark":null,"setCode":"M15","imageCode":"m15","count":2},"1608355":{"name":"Ruthless Deathfang","layout":"normal","manaCost":"{4}{U}{B}","cmc":6,"type":"Creature — Dragon","rarity":"Uncommon","text":"Flying\nWhenever you sacrifice a creature, target opponent sacrifices a creature.","flavor":"\"Bring forth the dead, their skull-grins and rattle-bones. We will feast upon their wailing ghosts.\"\n—Silumgar, translated from Draconic","artist":"Filip Burburan","number":"229","power":"4","toughness":"4","loyalty":null,"multiverseid":394668,"imageName":"ruthless deathfang","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":3},"1576611":{"name":"Marang River Skeleton","layout":"normal","manaCost":"{1}{B}","cmc":2,"type":"Creature — Skeleton","rarity":"Uncommon","text":"{B}: Regenerate Marang River Skeleton.\nMegamorph {3}{B} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)","flavor":"The gurgling of the Marang conceals both footsteps and screams.","artist":"Jack Wang","number":"108","power":"1","toughness":"1","loyalty":null,"multiverseid":394621,"imageName":"marang river skeleton","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":1},"133817":{"name":"Setessan Battle Priest","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Creature — Human Cleric","rarity":"Common","text":"Heroic — Whenever you cast a spell that targets Setessan Battle Priest, you gain 2 life.","flavor":"\"Your god teaches you only how to kill. Karametra teaches me to defend what I hold dear. That is why I will prevail.\"","artist":"Wesley Burt","number":"29","power":"1","toughness":"3","loyalty":null,"multiverseid":373515,"imageName":"setessan battle priest","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"122556":{"name":"Ojutai Interceptor","layout":"normal","manaCost":"{3}{U}","cmc":4,"type":"Creature — Bird Soldier","rarity":"Common","text":"Flying\nMegamorph {3}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)","flavor":"\"Though I may soar, I could never fly as high as the dragons.\"","artist":"Johann Bodin","number":"66","power":"3","toughness":"1","loyalty":null,"multiverseid":394639,"imageName":"ojutai interceptor","watermark":"Ojutai","setCode":"DTK","imageCode":"dtk","count":1},"118460":{"name":"Mindreaver","layout":"normal","manaCost":"{U}{U}","cmc":2,"type":"Creature — Human Wizard","rarity":"Rare","text":"Heroic — Whenever you cast a spell that targets Mindreaver, exile the top three cards of target player's library.\n{U}{U}, Sacrifice Mindreaver: Counter target spell with the same name as a card exiled with Mindreaver.","flavor":null,"artist":"Wesley Burt","number":"44","power":"2","toughness":"1","loyalty":null,"multiverseid":378416,"imageName":"mindreaver","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"1606309":{"name":"Shape the Sands","layout":"normal","manaCost":"{G}","cmc":1,"type":"Instant","rarity":"Common","text":"Target creature gets +0/+5 and gains reach until end of turn. (It can block creatures with flying.)","flavor":"\"Dragons in flight seldom expect company.\"\n—Kadri, Dromoka warrior","artist":"Ryan Yee","number":"205","power":null,"toughness":null,"loyalty":null,"multiverseid":394690,"imageName":"shape the sands","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"119487":{"name":"Profound Journey","layout":"normal","manaCost":"{5}{W}{W}","cmc":7,"type":"Sorcery","rarity":"Rare","text":"Return target permanent card from your graveyard to the battlefield.\nRebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast this card from exile without paying its mana cost.)","flavor":null,"artist":"Tomasz Jedruszek","number":"30","power":null,"toughness":null,"loyalty":null,"multiverseid":394655,"imageName":"profound journey","watermark":"Ojutai","setCode":"DTK","imageCode":"dtk","count":1},"120510":{"name":"Surge of Righteousness","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Instant","rarity":"Uncommon","text":"Destroy target black or red creature that's attacking or blocking. You gain 2 life.","flavor":"Though she stood alone, she struck with the force of an army.","artist":"Marco Nelor","number":"42","power":null,"toughness":null,"loyalty":null,"multiverseid":394720,"imageName":"surge of righteousness","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"73413":{"name":"Angelic Edict","layout":"normal","manaCost":"{4}{W}","cmc":5,"type":"Sorcery","rarity":"Common","text":"Exile target creature or enchantment.","flavor":"The Boros built a prison in the sky where Azorius statutes couldn't restrict their sense of justice.","artist":"Trevor Claxton","number":"2","power":null,"toughness":null,"loyalty":null,"multiverseid":366400,"imageName":"angelic edict","watermark":null,"setCode":"GTC","imageCode":"gtc","count":1},"1620702":{"name":"Furnace Whelp","layout":"normal","manaCost":"{2}{R}{R}","cmc":4,"type":"Creature — Dragon","rarity":"Uncommon","text":"Flying (This creature can't be blocked except by creatures with flying or reach.)\n{R}: Furnace Whelp gets +1/+0 until end of turn.","flavor":"Baby dragons can't figure out humans—if they didn't want to be killed, why were they made of meat and treasure?","artist":"Matt Cavotta","number":"279","power":"2","toughness":"2","loyalty":null,"multiverseid":383164,"imageName":"furnace whelp","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"72393":{"name":"Abzan Advantage","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Instant","rarity":"Common","text":"Target player sacrifices an enchantment. Bolster 1. (Choose a creature with the least toughness among creatures you control and put a +1/+1 counter on it.)","flavor":"\"To survive, you must seize every opportunity.\"\n—Daghatar the Adamant","artist":"Winona Nelson","number":"2","power":null,"toughness":null,"loyalty":null,"multiverseid":391781,"imageName":"abzan advantage","watermark":"Abzan","setCode":"FRF","imageCode":"frf","count":1},"1589972":{"name":"Efreet Weaponmaster","layout":"normal","manaCost":"{3}{U}{R}{W}","cmc":6,"type":"Creature — Efreet Monk","rarity":"Common","text":"First strike\nWhen Efreet Weaponmaster enters the battlefield or is turned face up, another target creature you control gets +3/+0 until end of turn.\nMorph {2}{U}{R}{W} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)","flavor":null,"artist":"Ryan Alexander Lee","number":"175","power":"4","toughness":"3","loyalty":null,"multiverseid":386529,"imageName":"efreet weaponmaster","watermark":"Jeskai","setCode":"KTK","imageCode":"ktk","count":1},"138962":{"name":"Guttersnipe","layout":"normal","manaCost":"{2}{R}","cmc":3,"type":"Creature — Goblin Shaman","rarity":"Uncommon","text":"Whenever you cast an instant or sorcery spell, Guttersnipe deals 2 damage to each opponent.","flavor":"He wants to watch Ravnica burn, one soul at a time.","artist":"Steve Prescott","number":"98","power":"2","toughness":"2","loyalty":null,"multiverseid":265392,"imageName":"guttersnipe","watermark":null,"setCode":"RTR","imageCode":"rtr","count":1},"134870":{"name":"Skyline Predator","layout":"normal","manaCost":"{4}{U}{U}","cmc":6,"type":"Creature — Drake","rarity":"Uncommon","text":"Flash (You may cast this spell any time you could cast an instant.)\nFlying","flavor":"\"It will dodge your first arrow and flatten you before there's a second.\"\n—Alcarus, Selesnya archer","artist":"Wesley Burt","number":"50","power":"3","toughness":"4","loyalty":null,"multiverseid":289212,"imageName":"skyline predator","watermark":null,"setCode":"RTR","imageCode":"rtr","count":1},"132826":{"name":"Covenant of Blood","layout":"normal","manaCost":"{6}{B}","cmc":7,"type":"Sorcery","rarity":"Common","text":"Convoke (Your creatures can help cast this spell. Each creature you tap while casting this spell pays for {1} or one mana of that creature's color.)\nCovenant of Blood deals 4 damage to target creature or player and you gain 4 life.","flavor":null,"artist":"Seb McKinnon","number":"91","power":null,"toughness":null,"loyalty":null,"multiverseid":383217,"imageName":"covenant of blood","watermark":null,"setCode":"M15","imageCode":"m15","count":2},"1586880":{"name":"Chandra's Outrage","layout":"normal","manaCost":"{2}{R}{R}","cmc":4,"type":"Instant","rarity":"Common","text":"Chandra's Outrage deals 4 damage to target creature and 2 damage to that creature's controller.","flavor":"Chandra never believed in using her \"inside voice.\"","artist":"Christopher Moeller","number":"133","power":null,"toughness":null,"loyalty":null,"multiverseid":370659,"imageName":"chandra's outrage","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"120536":{"name":"Sandsteppe Outcast","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Creature — Human Warrior","rarity":"Common","text":"When Sandsteppe Outcast enters the battlefield, choose one —\n• Put a +1/+1 counter on Sandsteppe Outcast.\n• Put a 1/1 white Spirit creature token with flying onto the battlefield.","flavor":null,"artist":"Wesley Burt","number":"25","power":"2","toughness":"1","loyalty":null,"multiverseid":391914,"imageName":"sandsteppe outcast","watermark":null,"setCode":"FRF","imageCode":"frf","count":2},"122587":{"name":"Ojutai's Breath","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Instant","rarity":"Common","text":"Tap target creature. It doesn't untap during its controller's next untap step.\nRebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast this card from exile without paying its mana cost.)","flavor":null,"artist":"Kev Walker","number":"67","power":null,"toughness":null,"loyalty":null,"multiverseid":394641,"imageName":"ojutai's breath","watermark":"Ojutai","setCode":"DTK","imageCode":"dtk","count":2},"118491":{"name":"Nullify","layout":"normal","manaCost":"{U}{U}","cmc":2,"type":"Instant","rarity":"Common","text":"Counter target creature or Aura spell.","flavor":"\"Those who incur Thassa's anger will be swallowed whole by her waves, or torn asunder by her bident.\"\n—Thrasios, triton hero","artist":"Adam Paquette","number":"45","power":null,"toughness":null,"loyalty":null,"multiverseid":378417,"imageName":"nullify","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"1585858":{"name":"Wall of Limbs","layout":"normal","manaCost":"{2}{B}","cmc":3,"type":"Creature — Zombie Wall","rarity":"Uncommon","text":"Defender (This creature can't attack.)\nWhenever you gain life, put a +1/+1 counter on Wall of Limbs.\n{5}{B}{B}, Sacrifice Wall of Limbs: Target player loses X life, where X is Wall of Limbs's power.","flavor":null,"artist":"Yeong-Hao Han","number":"121","power":"0","toughness":"3","loyalty":null,"multiverseid":383433,"imageName":"wall of limbs","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"132825":{"name":"Corrupt","layout":"normal","manaCost":"{5}{B}","cmc":6,"type":"Sorcery","rarity":"Uncommon","text":"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.","flavor":"One misstep in the swamp and the evil that sleeps beneath will rise to find you.","artist":"Dave Allsop","number":"91","power":null,"toughness":null,"loyalty":null,"multiverseid":370630,"imageName":"corrupt","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1606340":{"name":"Sheltered Aerie","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant land\nEnchanted land has \"{T}: Add two mana of any one color to your mana pool.\"","flavor":"Dromoka's scalelords patrol the skies over Arashin, offering her people safety from the harsh world.","artist":"Raoul Vitale","number":"206","power":null,"toughness":null,"loyalty":null,"multiverseid":394691,"imageName":"sheltered aerie","watermark":null,"setCode":"DTK","imageCode":"dtk","count":2},"121564":{"name":"Glint","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Instant","rarity":"Common","text":"Target creature you control gets +0/+3 and gains hexproof until end of turn. (It can't be the target of spells or abilities your opponents control.)","flavor":"Rakshasa waste no opportunity to display their wealth and power, even in the midst of a sorcerous duel.","artist":"Igor Kieryluk","number":"55","power":null,"toughness":null,"loyalty":null,"multiverseid":394583,"imageName":"glint","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"1591033":{"name":"Centaur's Herald","layout":"normal","manaCost":"{G}","cmc":1,"type":"Creature — Elf Scout","rarity":"Common","text":"{2}{G}, Sacrifice Centaur's Herald: Put a 3/3 green Centaur creature token onto the battlefield.","flavor":"The farther they go from Vitu-Ghazi, the less willing the crowd is to part for them.","artist":"Howard Lyon","number":"118","power":"0","toughness":"1","loyalty":null,"multiverseid":265387,"imageName":"centaur's herald","watermark":null,"setCode":"RTR","imageCode":"rtr","count":1},"1586942":{"name":"Cyclops Tyrant","layout":"normal","manaCost":"{5}{R}","cmc":6,"type":"Creature — Cyclops","rarity":"Common","text":"Intimidate (This creature can't be blocked except by artifact creatures and/or creatures that share a color with it.)\nCyclops Tyrant can't block creatures with power 2 or less.","flavor":"A single eye, blinded by rage.","artist":"Zack Stella","number":"135","power":"3","toughness":"4","loyalty":null,"multiverseid":370585,"imageName":"cyclops tyrant","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1587966":{"name":"Hammerhand","layout":"normal","manaCost":"{R}","cmc":1,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nWhen Hammerhand enters the battlefield, target creature can't block this turn.\nEnchanted creature gets +1/+1 and has haste. (It can attack and {T} no matter when it came under your control.)","flavor":null,"artist":"Tomasz Jedruszek","number":"147","power":null,"toughness":null,"loyalty":null,"multiverseid":383262,"imageName":"hammerhand","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1599218":{"name":"Akroan Hoplite","layout":"normal","manaCost":"{R}{W}","cmc":2,"type":"Creature — Human Soldier","rarity":"Uncommon","text":"Whenever Akroan Hoplite attacks, it gets +X/+0 until end of turn, where X is the number of attacking creatures you control.","flavor":"\"Fair fight? How could it be a fair fight? We're Akroans. They're not.\"","artist":"Igor Kieryluk","number":"185","power":"1","toughness":"2","loyalty":null,"multiverseid":373590,"imageName":"akroan hoplite","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1586934":{"name":"Longshot Squad","layout":"normal","manaCost":"{3}{G}","cmc":4,"type":"Creature — Hound Archer","rarity":"Common","text":"Outlast {1}{G} ({1}{G}, {T}: Put a +1/+1 counter on this creature. Outlast only as a sorcery.)\nEach creature you control with a +1/+1 counter on it has reach. (A creature with reach can block creatures with flying.)","flavor":null,"artist":"Wesley Burt","number":"140","power":"3","toughness":"3","loyalty":null,"multiverseid":386588,"imageName":"longshot squad","watermark":"Abzan","setCode":"KTK","imageCode":"ktk","count":1},"121590":{"name":"Jeskai Sage","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Creature — Human Monk","rarity":"Common","text":"Prowess (Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)\nWhen Jeskai Sage dies, draw a card.","flavor":"\"The one who conquers the mind is greater than the one who conquers the world.\"","artist":"Craig J Spearing","number":"38","power":"1","toughness":"1","loyalty":null,"multiverseid":391864,"imageName":"jeskai sage","watermark":"Jeskai","setCode":"FRF","imageCode":"frf","count":2},"1585888":{"name":"Wring Flesh","layout":"normal","manaCost":"{B}","cmc":1,"type":"Instant","rarity":"Common","text":"Target creature gets -3/-1 until end of turn.","flavor":"\"You shouldn't be so attached to something as fragile as flesh.\"\n—Zul Ashur, lich lord","artist":"Izzy","number":"122","power":null,"toughness":null,"loyalty":null,"multiverseid":370759,"imageName":"wring flesh","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1617633":{"name":"Evolving Wilds","layout":"normal","manaCost":null,"cmc":null,"type":"Land","rarity":"Common","text":"{T}, Sacrifice Evolving Wilds: Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.","flavor":"Without the interfering hands of civilization, nature will always shape itself to its own needs.","artist":"Steven Belledin","number":"243","power":null,"toughness":null,"loyalty":null,"multiverseid":383235,"imageName":"evolving wilds","watermark":null,"setCode":"M15","imageCode":"m15","count":4},"121595":{"name":"Gudul Lurker","layout":"normal","manaCost":"{U}","cmc":1,"type":"Creature — Salamander","rarity":"Uncommon","text":"Gudul Lurker can't be blocked.\nMegamorph {U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)","flavor":"The small are mostly ignored by dragons.","artist":"Christopher Burdett","number":"56","power":"1","toughness":"1","loyalty":null,"multiverseid":394588,"imageName":"gudul lurker","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"1606371":{"name":"Sight of the Scalelords","layout":"normal","manaCost":"{4}{G}","cmc":5,"type":"Enchantment","rarity":"Uncommon","text":"At the beginning of combat on your turn, creatures you control with toughness 4 or greater get +2/+2 and gain vigilance until end of turn.","flavor":"\"The Silumgar creep around our borders and infiltrate our aeries. We must remain ever watchful.\"\n—Golran, Dromoka captain","artist":"Marc Simonetti","number":"207","power":null,"toughness":null,"loyalty":null,"multiverseid":394698,"imageName":"sight of the scalelords","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"132857":{"name":"Crippling Blight","layout":"normal","manaCost":"{B}","cmc":1,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nEnchanted creature gets -1/-1 and can't block.","flavor":"\"Still alive? No matter. I'll leave you as a warning to others who would oppose me.\"\n—Vish Kal, Blood Arbiter","artist":"Lucas Graciano","number":"92","power":null,"toughness":null,"loyalty":null,"multiverseid":383218,"imageName":"crippling blight","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1584867":{"name":"Market Festival","layout":"normal","manaCost":"{3}{G}","cmc":4,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant land\nWhenever enchanted land is tapped for mana, its controller adds two mana in any combination of colors to his or her mana pool (in addition to the mana the land produces).","flavor":"Commerce is always the basis for peace.","artist":"Ryan Barger","number":"130","power":null,"toughness":null,"loyalty":null,"multiverseid":380454,"imageName":"market festival","watermark":null,"setCode":"JOU","imageCode":"jou","count":2},"119549":{"name":"Resupply","layout":"normal","manaCost":"{5}{W}","cmc":6,"type":"Instant","rarity":"Common","text":"You gain 6 life.\nDraw a card.","flavor":"\"If the scalelords are the brains of Dromoka's army, the supply caravans are its beating heart.\"\n—Baihir, Dromoka mage","artist":"Filip Burburan","number":"32","power":null,"toughness":null,"loyalty":null,"multiverseid":394664,"imageName":"resupply","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"116476":{"name":"Oreskos Sun Guide","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Creature — Cat Monk","rarity":"Common","text":"Inspired — Whenever Oreskos Sun Guide becomes untapped, you gain 2 life.","flavor":"\"Let the humans have their pantheon. We need no gods to thrive. Even a mortal such as I can capture a part of the sun's power.\"","artist":"Mathias Kollros","number":"22","power":"2","toughness":"2","loyalty":null,"multiverseid":378394,"imageName":"oreskos sun guide","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"120572":{"name":"Ancient Carp","layout":"normal","manaCost":"{4}{U}","cmc":5,"type":"Creature — Fish","rarity":"Common","text":null,"flavor":"\"Why eat now what could one day grow into a feast?\"\n—Ojutai, translated from Draconic","artist":"Christopher Burdett","number":"44","power":"2","toughness":"5","loyalty":null,"multiverseid":394492,"imageName":"ancient carp","watermark":null,"setCode":"DTK","imageCode":"dtk","count":2},"118526":{"name":"Graceblade Artisan","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Creature — Human Monk","rarity":"Uncommon","text":"Graceblade Artisan gets +2/+2 for each Aura attached to it.","flavor":"\"Can you catch a snowflake on the edge of your blade? Her sword has snagged an entire blizzard.\"\n—Zogye, Ojutai mystic","artist":"Magali Villeneuve","number":"20","power":"2","toughness":"3","loyalty":null,"multiverseid":394584,"imageName":"graceblade artisan","watermark":"Ojutai","setCode":"DTK","imageCode":"dtk","count":1},"1621785":{"name":"Codex Shredder","layout":"normal","manaCost":"{1}","cmc":1,"type":"Artifact","rarity":"Uncommon","text":"{T}: Target player puts the top card of his or her library into his or her graveyard.\n{5}, {T}, Sacrifice Codex Shredder: Return target card from your graveyard to your hand.","flavor":null,"artist":"Jason Felix","number":"228","power":null,"toughness":null,"loyalty":null,"multiverseid":253635,"imageName":"codex shredder","watermark":null,"setCode":"RTR","imageCode":"rtr","count":1},"73475":{"name":"Assault Griffin","layout":"normal","manaCost":"{3}{W}","cmc":4,"type":"Creature — Griffin","rarity":"Common","text":"Flying","flavor":"\"The Simic offer a prize to any biomancer who can breed a krasis to match a griffin in the air. It's never been claimed.\"\n—Libuse, Boros sergeant","artist":"Eric Velhagen","number":"4","power":"3","toughness":"2","loyalty":null,"multiverseid":366337,"imageName":"assault griffin","watermark":null,"setCode":"GTC","imageCode":"gtc","count":1},"1585950":{"name":"Academy Raider","layout":"normal","manaCost":"{2}{R}","cmc":3,"type":"Creature — Human Warrior","rarity":"Common","text":"Intimidate (This creature can't be blocked except by artifact creatures and/or creatures that share a color with it.)\nWhenever Academy Raider deals combat damage to a player, you may discard a card. If you do, draw a card.","flavor":null,"artist":"Karl Kopinski","number":"124","power":"1","toughness":"1","loyalty":null,"multiverseid":370735,"imageName":"academy raider","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1598226":{"name":"Satyr Hedonist","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Creature — Satyr","rarity":"Common","text":"{R}, Sacrifice Satyr Hedonist: Add {R}{R}{R} to your mana pool.","flavor":"\"Any festival you can walk away from wasn't worth attending in the first place.\"","artist":"Chase Stone","number":"174","power":"2","toughness":"1","loyalty":null,"multiverseid":373744,"imageName":"satyr hedonist","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1589011":{"name":"Armament Corps","layout":"normal","manaCost":"{2}{W}{B}{G}","cmc":5,"type":"Creature — Human Soldier","rarity":"Uncommon","text":"When Armament Corps enters the battlefield, distribute two +1/+1 counters among one or two target creatures you control.","flavor":"The Abzan avoid extended supply lines by incorporating weapons stores into their battle formations.","artist":"Steven Belledin","number":"165","power":"4","toughness":"4","loyalty":null,"multiverseid":386480,"imageName":"armament corps","watermark":"Abzan","setCode":"KTK","imageCode":"ktk","count":1},"46860762":{"name":"Alive","layout":"split","manaCost":"{3}{G}","cmc":4,"type":"Sorcery","rarity":"Uncommon","text":"Put a 3/3 green Centaur creature token onto the battlefield.\nFuse (You may cast one or both halves of this card from your hand.)","flavor":null,"artist":"Nils Hamm","number":"121a","power":null,"toughness":null,"loyalty":null,"multiverseid":369041,"imageName":"alivewell","watermark":null,"setCode":"DGM","imageCode":"dgm","count":1},"120595":{"name":"Guildscorn Ward","layout":"normal","manaCost":"{W}","cmc":1,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nEnchanted creature has protection from multicolored.","flavor":"\"The Gateless have risen. The Ten shall fall.\"\n—Ninth District graffiti","artist":"Ryan Barger","number":"15","power":null,"toughness":null,"loyalty":null,"multiverseid":366392,"imageName":"guildscorn ward","watermark":null,"setCode":"GTC","imageCode":"gtc","count":1},"121621":{"name":"Lotus Path Djinn","layout":"normal","manaCost":"{3}{U}","cmc":4,"type":"Creature — Djinn Monk","rarity":"Common","text":"Flying\nProwess (Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn.)","flavor":"\"The lotus takes root where body and mind intersect. It blooms when body and mind become one.\"","artist":"Steve Argyle","number":"39","power":"2","toughness":"3","loyalty":null,"multiverseid":391869,"imageName":"lotus path djinn","watermark":"Jeskai","setCode":"FRF","imageCode":"frf","count":1},"1586957":{"name":"Nimbus Swimmer","layout":"normal","manaCost":"{X}{G}{U}","cmc":2,"type":"Creature — Leviathan","rarity":"Uncommon","text":"Flying\nNimbus Swimmer enters the battlefield with X +1/+1 counters on it.","flavor":"The Simic soon discovered that the sky offered as few constraints on size as the sea.","artist":"Howard Lyon","number":"181","power":"0","toughness":"0","loyalty":null,"multiverseid":366275,"imageName":"nimbus swimmer","watermark":"Simic","setCode":"GTC","imageCode":"gtc","count":1},"122649":{"name":"Palace Familiar","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Creature — Bird","rarity":"Common","text":"Flying\nWhen Palace Familiar dies, draw a card.","flavor":"\"The most profound secrets lie in the darkest places of the world. It can be prudent to make use of another set of eyes.\"\n—Sidisi, Silumgar vizier","artist":"Kev Walker","number":"69","power":"1","toughness":"1","loyalty":null,"multiverseid":394646,"imageName":"palace familiar","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":4},"1606402":{"name":"Stampeding Elk Herd","layout":"normal","manaCost":"{3}{G}{G}","cmc":5,"type":"Creature — Elk","rarity":"Common","text":"Formidable — Whenever Stampeding Elk Herd attacks, if creatures you control have total power 8 or greater, creatures you control gain trample until end of turn.","flavor":"The Atarka use them not just for food, but also to clear away snow, trees, and enemy forces.","artist":"Carl Frank","number":"208","power":"5","toughness":"5","loyalty":null,"multiverseid":394710,"imageName":"stampeding elk herd","watermark":"Atarka","setCode":"DTK","imageCode":"dtk","count":1},"132888":{"name":"Cruel Sadist","layout":"normal","manaCost":"{B}","cmc":1,"type":"Creature — Human Assassin","rarity":"Rare","text":"{B}, {T}, Pay 1 life: Put a +1/+1 counter on Cruel Sadist.\n{2}{B}, {T}, Remove X +1/+1 counters from Cruel Sadist: Cruel Sadist deals X damage to target creature.","flavor":"Face of innocence. Hand of death.\nDesigned by Edmund McMillen","artist":"Min Yum","number":"93","power":"1","toughness":"1","loyalty":null,"multiverseid":383221,"imageName":"cruel sadist","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"120603":{"name":"Anticipate","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Instant","rarity":"Common","text":"Look at the top three cards of your library. Put one of them into your hand and the rest on the bottom of your library in any order.","flavor":"\"When I have meditated on all outcomes, my opponent has no recourse.\"","artist":"Lake Hurwitz","number":"45","power":null,"toughness":null,"loyalty":null,"multiverseid":394493,"imageName":"anticipate","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"121626":{"name":"Gurmag Drowner","layout":"normal","manaCost":"{3}{U}","cmc":4,"type":"Creature — Naga Wizard","rarity":"Common","text":"Exploit (When this creature enters the battlefield, you may sacrifice a creature.)\nWhen Gurmag Drowner exploits a creature, look at the top four cards of your library. Put one of them into your hand and the rest into your graveyard.","flavor":null,"artist":"Lake Hurwitz","number":"57","power":"2","toughness":"4","loyalty":null,"multiverseid":394589,"imageName":"gurmag drowner","watermark":"Silumgar","setCode":"DTK","imageCode":"dtk","count":2},"118557":{"name":"Great Teacher's Decree","layout":"normal","manaCost":"{3}{W}","cmc":4,"type":"Sorcery","rarity":"Uncommon","text":"Creatures you control get +2/+1 until end of turn.\nRebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast this card from exile without paying its mana cost.)","flavor":null,"artist":"Zoltan Boros","number":"21","power":null,"toughness":null,"loyalty":null,"multiverseid":394586,"imageName":"great teacher's decree","watermark":"Ojutai","setCode":"DTK","imageCode":"dtk","count":1},"119580":{"name":"Sandcrafter Mage","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Creature — Human Wizard","rarity":"Common","text":"When Sandcrafter Mage enters the battlefield, bolster 1. (Choose a creature with the least toughness among creatures you control and put a +1/+1 counter on it.)","flavor":"With heat, sand can form a delicate work of art; with pressure, an impenetrable bulwark.","artist":"Willian Murai","number":"33","power":"2","toughness":"2","loyalty":null,"multiverseid":394672,"imageName":"sandcrafter mage","watermark":"Dromoka","setCode":"DTK","imageCode":"dtk","count":2},"1590072":{"name":"Tenement Crasher","layout":"normal","manaCost":"{5}{R}","cmc":6,"type":"Creature — Beast","rarity":"Common","text":"Haste","flavor":"Nothing was going to stop it—not the narrow alleys, not the Boros garrison, and certainly not the four-story Orzhov cathedral.","artist":"Warren Mahy","number":"108","power":"5","toughness":"4","loyalty":null,"multiverseid":253649,"imageName":"tenement crasher","watermark":null,"setCode":"RTR","imageCode":"rtr","count":1},"1588027":{"name":"Pitchburn Devils","layout":"normal","manaCost":"{4}{R}","cmc":5,"type":"Creature — Devil","rarity":"Common","text":"When Pitchburn Devils dies, it deals 3 damage to target creature or player.","flavor":"The ingenuity of goblins, the depravity of demons, and the smarts of sheep.","artist":"Johann Bodin","number":"149","power":"3","toughness":"3","loyalty":null,"multiverseid":370649,"imageName":"pitchburn devils","watermark":null,"setCode":"M14","imageCode":"m14","count":2},"1579837":{"name":"Izzet Cluestone","layout":"normal","manaCost":"{3}","cmc":3,"type":"Artifact","rarity":"Common","text":"{T}: Add {U} or {R} to your mana pool.\n{U}{R}, {T}, Sacrifice Izzet Cluestone: Draw a card.","flavor":"It holds within it an unsolvable riddle. A creative answer yields an invitation to the guild.","artist":"Raoul Vitale","number":"141","power":null,"toughness":null,"loyalty":null,"multiverseid":368948,"imageName":"izzet cluestone","watermark":"Izzet","setCode":"DGM","imageCode":"dgm","count":1},"1585981":{"name":"Act of Treason","layout":"normal","manaCost":"{2}{R}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn.","flavor":"\"Rage courses in every heart, yearning to betray its rational prison.\"\n—Sarkhan Vol","artist":"Eric Deschamps","number":"125","power":null,"toughness":null,"loyalty":null,"multiverseid":370618,"imageName":"act of treason","watermark":null,"setCode":"M14","imageCode":"m14","count":2},"72486":{"name":"Arashin Cleric","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Creature — Human Cleric","rarity":"Common","text":"When Arashin Cleric enters the battlefield, you gain 3 life.","flavor":"\"We'll have time to put out the fires when those trapped within the ruins are safe.\"","artist":"Chris Rahn","number":"5","power":"1","toughness":"3","loyalty":null,"multiverseid":391791,"imageName":"arashin cleric","watermark":"Abzan","setCode":"FRF","imageCode":"frf","count":1},"1590065":{"name":"Icefeather Aven","layout":"normal","manaCost":"{G}{U}","cmc":2,"type":"Creature — Bird Shaman","rarity":"Uncommon","text":"Flying\nMorph {1}{G}{U} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)\nWhen Icefeather Aven is turned face up, you may return another target creature to its owner's hand.","flavor":null,"artist":"Slawomir Maniak","number":"178","power":"2","toughness":"2","loyalty":null,"multiverseid":386562,"imageName":"icefeather aven","watermark":"Temur","setCode":"KTK","imageCode":"ktk","count":2},"1586996":{"name":"Naturalize","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Instant","rarity":"Common","text":"Destroy target artifact or enchantment.","flavor":"The remains of ancient sky tyrants now feed the war-torn land.","artist":"James Paick","number":"142","power":null,"toughness":null,"loyalty":null,"multiverseid":386617,"imageName":"naturalize","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"134963":{"name":"Stealer of Secrets","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Creature — Human Rogue","rarity":"Common","text":"Whenever Stealer of Secrets deals combat damage to a player, draw a card.","flavor":"The Dimir would hire her, if only they knew where she lived. The Azorius would condemn her, if only they knew her name.","artist":"Michael C. Hayes","number":"53","power":"2","toughness":"2","loyalty":null,"multiverseid":265413,"imageName":"stealer of secrets","watermark":null,"setCode":"RTR","imageCode":"rtr","count":1},"46860793":{"name":"Well","layout":"split","manaCost":"{W}","cmc":1,"type":"Sorcery","rarity":"Uncommon","text":"You gain 2 life for each creature you control.\nFuse (You may cast one or both halves of this card from your hand.)","flavor":null,"artist":"Nils Hamm","number":"121b","power":null,"toughness":null,"loyalty":null,"multiverseid":369041,"imageName":"alivewell","watermark":null,"setCode":"DGM","imageCode":"dgm","count":1},"132918":{"name":"Deathgaze Cockatrice","layout":"normal","manaCost":"{2}{B}{B}","cmc":4,"type":"Creature — Cockatrice","rarity":"Common","text":"Flying\nDeathtouch (Any amount of damage this deals to a creature is enough to destroy it.)","flavor":"\"Sometimes I come across a stone finger or foot and I know I'm in cockatrice territory.\"\n—Rulak, bog guide","artist":"Kev Walker","number":"94","power":"2","toughness":"2","loyalty":null,"multiverseid":370775,"imageName":"deathgaze cockatrice","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"131895":{"name":"Zephyr Charge","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Enchantment","rarity":"Common","text":"{1}{U}: Target creature gains flying until end of turn.","flavor":"\"All armies prefer high ground to low and sunny places to dark.\"\n—Sun Tzu, Art of War, trans. Giles","artist":"Steve Prescott","number":"82","power":null,"toughness":null,"loyalty":null,"multiverseid":370672,"imageName":"zephyr charge","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"117561":{"name":"Divination","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Draw two cards.","flavor":"\"Ask of Keranos that you may understand the stars that mark your destiny. Implore Erebos that you may accept the fate thus divulged.\"","artist":"Willian Murai","number":"36","power":null,"toughness":null,"loyalty":null,"multiverseid":378408,"imageName":"divination","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"130873":{"name":"Mind Sculpt","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Sorcery","rarity":"Common","text":"Target opponent puts the top seven cards of his or her library into his or her graveyard.","flavor":"\"Your mind was a curious mix of madness and genius. I just took away the genius.\"\n—Jace Beleren","artist":"Michael C. Hayes","number":"70","power":null,"toughness":null,"loyalty":null,"multiverseid":383313,"imageName":"mind sculpt","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"130872":{"name":"Seacoast Drake","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Creature — Drake","rarity":"Common","text":"Flying","flavor":"Seacoast drakes have been known to follow ships for hundreds of miles, waiting to snap up garbage, bait, and the occasional sailor.","artist":"Scott Chou","number":"70","power":"1","toughness":"3","loyalty":null,"multiverseid":370617,"imageName":"seacoast drake","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1584929":{"name":"Nessian Game Warden","layout":"normal","manaCost":"{3}{G}{G}","cmc":5,"type":"Creature — Beast","rarity":"Uncommon","text":"When Nessian Game Warden enters the battlefield, look at the top X cards of your library, where X is the number of Forests you control. You may reveal a creature card from among them and put it into your hand. Put the rest on the bottom of your library in any order.","flavor":null,"artist":"Vincent Proce","number":"132","power":"4","toughness":"5","loyalty":null,"multiverseid":380459,"imageName":"nessian game warden","watermark":null,"setCode":"JOU","imageCode":"jou","count":1},"115515":{"name":"Ghostblade Eidolon","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Enchantment Creature — Spirit","rarity":"Uncommon","text":"Bestow {5}{W} (If you cast this card for its bestow cost, it's an Aura spell with enchant creature. It becomes a creature again if it's not attached to a creature.)\nDouble strike (This creature deals both first-strike and regular combat damage.)\nEnchanted creature gets +1/+1 and has double strike.","flavor":null,"artist":"Ryan Yee","number":"12","power":"1","toughness":"1","loyalty":null,"multiverseid":378384,"imageName":"ghostblade eidolon","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"130874":{"name":"Bladetusk Boar","layout":"normal","manaCost":"{3}{R}","cmc":4,"type":"Creature — Boar","rarity":"Common","text":"Intimidate (This creature can't be blocked except by artifact creatures and/or creatures that share a color with it.)","flavor":"Deathbellow Canyon is home to minotaurs and many other creatures that share a love for the taste of human flesh.","artist":"Sam Burley","number":"90","power":"3","toughness":"2","loyalty":null,"multiverseid":380379,"imageName":"bladetusk boar","watermark":null,"setCode":"JOU","imageCode":"jou","count":1},"118588":{"name":"Herald of Dromoka","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Creature — Human Warrior","rarity":"Common","text":"Vigilance\nOther Warrior creatures you control have vigilance.","flavor":"The trumpeters of Arashin are ever alert in their watch over the Great Aerie.","artist":"Zack Stella","number":"22","power":"2","toughness":"2","loyalty":null,"multiverseid":394595,"imageName":"herald of dromoka","watermark":"Dromoka","setCode":"DTK","imageCode":"dtk","count":1},"1587035":{"name":"Dragon Hatchling","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Creature — Dragon","rarity":"Common","text":"Flying\n{R}: Dragon Hatchling gets +1/+0 until end of turn.","flavor":"\"Those dragons grow fast. For a while they feed on squirrels and goblins and then suddenly you're missing a mammoth.\"\n—Hurdek, Mazar mammoth trainer","artist":"David Palumbo","number":"138","power":"0","toughness":"1","loyalty":null,"multiverseid":370717,"imageName":"dragon hatchling","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"72517":{"name":"Aven Skirmisher","layout":"normal","manaCost":"{W}","cmc":1,"type":"Creature — Bird Warrior","rarity":"Common","text":"Flying","flavor":"\"We do not hide from the dragons that pretend to rule the skies. If we did, the dragons would become our rulers, and our way of life would be lost.\"","artist":"Jason Rainville","number":"6","power":"1","toughness":"1","loyalty":null,"multiverseid":391797,"imageName":"aven skirmisher","watermark":"Jeskai","setCode":"FRF","imageCode":"frf","count":1},"1586013":{"name":"Act on Impulse","layout":"normal","manaCost":"{2}{R}","cmc":3,"type":"Sorcery","rarity":"Uncommon","text":"Exile the top three cards of your library. Until end of turn, you may play cards exiled this way. (If you cast a spell this way, you still pay its costs. You can play a land this way only if you have an available land play remaining.)","flavor":"\"You don't want to know what happens after I put on the goggles.\"","artist":"Brad Rigney","number":"126","power":null,"toughness":null,"loyalty":null,"multiverseid":383176,"imageName":"act on impulse","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1615710":{"name":"Staff of the Wild Magus","layout":"normal","manaCost":"{3}","cmc":3,"type":"Artifact","rarity":"Uncommon","text":"Whenever you cast a green spell or a Forest enters the battlefield under your control, you gain 1 life.","flavor":"A symbol of ferocity in oppressive times.","artist":"Daniel Ljunggren","number":"223","power":null,"toughness":null,"loyalty":null,"multiverseid":370592,"imageName":"staff of the wild magus","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1584990":{"name":"Sign in Blood","layout":"normal","manaCost":"{B}{B}","cmc":2,"type":"Sorcery","rarity":"Common","text":"Target player draws two cards and loses 2 life.","flavor":"Little agonies pave the way to greater power.","artist":"Howard Lyon","number":"114","power":null,"toughness":null,"loyalty":null,"multiverseid":383383,"imageName":"sign in blood","watermark":null,"setCode":"M15","imageCode":"m15","count":2},"1597265":{"name":"Nessian Asp","layout":"normal","manaCost":"{4}{G}","cmc":5,"type":"Creature — Snake","rarity":"Common","text":"Reach\n{6}{G}: Monstrosity 4. (If this creature isn't monstrous, put four +1/+1 counters on it and it becomes monstrous.)","flavor":"It's not the two heads you should fear. It's the four fangs.","artist":"Alex Horley-Orlandelli","number":"164","power":"4","toughness":"5","loyalty":null,"multiverseid":373650,"imageName":"nessian asp","watermark":null,"setCode":"THS","imageCode":"ths","count":2},"1588050":{"name":"Tusked Colossodon","layout":"normal","manaCost":"{4}{G}{G}","cmc":6,"type":"Creature — Beast","rarity":"Common","text":null,"flavor":"A band of Temur hunters, fleeing the Mardu, dug a hideout beneath such a creature as it slept. The horde found them and attacked. For three days the Temur held them at bay, and all the while the great beast slumbered.","artist":"Yeong-Hao Han","number":"155","power":"6","toughness":"5","loyalty":null,"multiverseid":386707,"imageName":"tusked colossodon","watermark":null,"setCode":"KTK","imageCode":"ktk","count":2},"68426":{"name":"Akroan Phalanx","layout":"normal","manaCost":"{3}{W}","cmc":4,"type":"Creature — Human Soldier","rarity":"Uncommon","text":"Vigilance\n{2}{R}: Creatures you control get +1/+0 until end of turn.","flavor":"Shields up, spears out, heels set, hearts firm.","artist":"Steve Prescott","number":"2","power":"3","toughness":"3","loyalty":null,"multiverseid":378374,"imageName":"akroan phalanx","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"1586004":{"name":"Dragonscale Boon","layout":"normal","manaCost":"{3}{G}","cmc":4,"type":"Instant","rarity":"Common","text":"Put two +1/+1 counters on target creature and untap it.","flavor":"\"When we were lost and weary, the ainok showed us how to survive. They have earned the right to call themselves Abzan, and to wear the Scale.\"\n—Anafenza, khan of the Abzan","artist":"Mark Winters","number":"131","power":null,"toughness":null,"loyalty":null,"multiverseid":386525,"imageName":"dragonscale boon","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"1616725":{"name":"Rugged Highlands","layout":"normal","manaCost":null,"cmc":null,"type":"Land","rarity":"Common","text":"Rugged Highlands enters the battlefield tapped.\nWhen Rugged Highlands enters the battlefield, you gain 1 life.\n{T}: Add {R} or {G} to your mana pool.","flavor":null,"artist":"Eytan Zana","number":"240","power":null,"toughness":null,"loyalty":null,"multiverseid":386641,"imageName":"rugged highlands","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"137040":{"name":"Stab Wound","layout":"normal","manaCost":"{2}{B}","cmc":3,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nEnchanted creature gets -2/-2.\nAt the beginning of the upkeep of enchanted creature's controller, that player loses 2 life.","flavor":null,"artist":"Scott Chou","number":"78","power":null,"toughness":null,"loyalty":null,"multiverseid":270791,"imageName":"stab wound","watermark":null,"setCode":"RTR","imageCode":"rtr","count":1},"136017":{"name":"Drainpipe Vermin","layout":"normal","manaCost":"{B}","cmc":1,"type":"Creature — Rat","rarity":"Common","text":"When Drainpipe Vermin dies, you may pay {B}. If you do, target player discards a card.","flavor":"When times are tough, the poor eat the rats. When times are tougher, the rats eat the poor.","artist":"Trevor Claxton","number":"66","power":"1","toughness":"1","loyalty":null,"multiverseid":265401,"imageName":"drainpipe vermin","watermark":null,"setCode":"RTR","imageCode":"rtr","count":2},"131926":{"name":"Accursed Spirit","layout":"normal","manaCost":"{3}{B}","cmc":4,"type":"Creature — Spirit","rarity":"Common","text":"Intimidate (This creature can't be blocked except by artifact creatures and/or creatures that share a color with it.)","flavor":"Many have heard the slither of dragging armor and the soft squelch of its voice. But only its victims ever meet its icy gaze.","artist":"Kev Walker","number":"83","power":"3","toughness":"2","loyalty":null,"multiverseid":370811,"imageName":"accursed spirit","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"116569":{"name":"Revoke Existence","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Sorcery","rarity":"Common","text":"Exile target artifact or enchantment.","flavor":"\"There will come a time when the gods will look at mortals and shudder.\"\n—Uremides the philosopher","artist":"Adam Paquette","number":"25","power":null,"toughness":null,"loyalty":null,"multiverseid":378397,"imageName":"revoke existence","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"121688":{"name":"Illusory Gains","layout":"normal","manaCost":"{3}{U}{U}","cmc":5,"type":"Enchantment — Aura","rarity":"Rare","text":"Enchant creature\nYou control enchanted creature.\nWhenever a creature enters the battlefield under an opponent's control, attach Illusory Gains to that creature.","flavor":null,"artist":"Kev Walker","number":"59","power":null,"toughness":null,"loyalty":null,"multiverseid":394599,"imageName":"illusory gains","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"130904":{"name":"Negate","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Instant","rarity":"Common","text":"Counter target noncreature spell.","flavor":"Masters of the arcane savor a delicious irony. Their study of deep and complex arcana leads to such a simple end: the ability to say merely yes or no.","artist":"Jeremy Jarvis","number":"71","power":null,"toughness":null,"loyalty":null,"multiverseid":383324,"imageName":"negate","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1587066":{"name":"Flames of the Firebrand","layout":"normal","manaCost":"{2}{R}","cmc":3,"type":"Sorcery","rarity":"Uncommon","text":"Flames of the Firebrand deals 3 damage divided as you choose among one, two, or three target creatures and/or players.","flavor":"\"You're in luck. I brought enough to share.\"\n—Chandra Nalaar","artist":"Steve Argyle","number":"139","power":null,"toughness":null,"loyalty":null,"multiverseid":370824,"imageName":"flames of the firebrand","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1586043":{"name":"Barrage of Expendables","layout":"normal","manaCost":"{R}","cmc":1,"type":"Enchantment","rarity":"Uncommon","text":"{R}, Sacrifice a creature: Barrage of Expendables deals 1 damage to target creature or player.","flavor":"Goblin generals don't distinguish between troops and ammunition.","artist":"Trevor Claxton","number":"127","power":null,"toughness":null,"loyalty":null,"multiverseid":370822,"imageName":"barrage of expendables","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"72548":{"name":"Channel Harm","layout":"normal","manaCost":"{5}{W}","cmc":6,"type":"Instant","rarity":"Uncommon","text":"Prevent all damage that would be dealt to you and permanents you control this turn by sources you don't control. If damage is prevented this way, you may have Channel Harm deal that much damage to target creature.","flavor":null,"artist":"David Gaillet","number":"7","power":null,"toughness":null,"loyalty":null,"multiverseid":391808,"imageName":"channel harm","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"1613695":{"name":"Voracious Wurm","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Creature — Wurm","rarity":"Uncommon","text":"Voracious Wurm enters the battlefield with X +1/+1 counters on it, where X is the amount of life you've gained this turn.","flavor":"Shepherds in Kalonia know it's better to let sheep roam than have them be trapped when the wurms are feeding.","artist":"Igor Kieryluk","number":"200","power":"2","toughness":"2","loyalty":null,"multiverseid":370814,"imageName":"voracious wurm","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1588081":{"name":"Tuskguard Captain","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Creature — Human Warrior","rarity":"Uncommon","text":"Outlast {G} ({G}, {T}: Put a +1/+1 counter on this creature. Outlast only as a sorcery.)\nEach creature you control with a +1/+1 counter on it has trample.","flavor":"One quiet word sets off the stampede.","artist":"Aaron Miller","number":"156","power":"2","toughness":"3","loyalty":null,"multiverseid":386708,"imageName":"tuskguard captain","watermark":"Abzan","setCode":"KTK","imageCode":"ktk","count":1},"119668":{"name":"Mardu Woe-Reaper","layout":"normal","manaCost":"{W}","cmc":1,"type":"Creature — Human Warrior","rarity":"Uncommon","text":"Whenever Mardu Woe-Reaper or another Warrior enters the battlefield under your control, you may exile target creature card from a graveyard. If you do, you gain 1 life.","flavor":"\"Those who died in battle deserve their rest.\"","artist":"Willian Murai","number":"18","power":"2","toughness":"1","loyalty":null,"multiverseid":391877,"imageName":"mardu woe-reaper","watermark":"Mardu","setCode":"FRF","imageCode":"frf","count":1},"132980":{"name":"Doom Blade","layout":"normal","manaCost":"{1}{B}","cmc":2,"type":"Instant","rarity":"Uncommon","text":"Destroy target nonblack creature.","flavor":null,"artist":"Chippy","number":"96","power":null,"toughness":null,"loyalty":null,"multiverseid":370609,"imageName":"doom blade","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"131957":{"name":"Altar's Reap","layout":"normal","manaCost":"{1}{B}","cmc":2,"type":"Instant","rarity":"Common","text":"As an additional cost to cast Altar's Reap, sacrifice a creature.\nDraw two cards.","flavor":"\"Don't worry, your death will be as informative as possible.\"\n—Gorghul, augur of skulls","artist":"Donato Giancola","number":"84","power":null,"toughness":null,"loyalty":null,"multiverseid":370677,"imageName":"altar's reap","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"119673":{"name":"Secure the Wastes","layout":"normal","manaCost":"{X}{W}","cmc":1,"type":"Instant","rarity":"Rare","text":"Put X 1/1 white Warrior creature tokens onto the battlefield.","flavor":"\"The Shifting Wastes provide our clan eternal protection. It is our duty to return the favor.\"\n—Kadri, Dromoka warrior","artist":"Scott Murphy","number":"36","power":null,"toughness":null,"loyalty":null,"multiverseid":394683,"imageName":"secure the wastes","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"129912":{"name":"Into the Void","layout":"normal","manaCost":"{3}{U}","cmc":4,"type":"Sorcery","rarity":"Uncommon","text":"Return up to two target creatures to their owners' hands.","flavor":"\"The cathars have their swords, the inquisitors their axes. I prefer the ‘diplomatic' approach.\"\n—Terhold, archmage of Drunau","artist":"Daarken","number":"60","power":null,"toughness":null,"loyalty":null,"multiverseid":383278,"imageName":"into the void","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"118650":{"name":"Lightwalker","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Creature — Human Warrior","rarity":"Common","text":"Lightwalker has flying as long as it has a +1/+1 counter on it.","flavor":"\"The greatest gift Dromoka gives is the ability to fly without wings.\"\n—Urdnan, Dromoka warrior","artist":"Winona Nelson","number":"24","power":"2","toughness":"1","loyalty":null,"multiverseid":394616,"imageName":"lightwalker","watermark":"Dromoka","setCode":"DTK","imageCode":"dtk","count":1},"1586074":{"name":"Battle Sliver","layout":"normal","manaCost":"{4}{R}","cmc":5,"type":"Creature — Sliver","rarity":"Uncommon","text":"Sliver creatures you control get +2/+0.","flavor":"\"One emitted a strange series of buzzing clicks and guttural commands, then clawed arms emerged from all of them. Is there no limit to their adaptations?\"\n—Hastric, Thunian scout","artist":"Slawomir Maniak","number":"128","power":"3","toughness":"3","loyalty":null,"multiverseid":370639,"imageName":"battle sliver","watermark":null,"setCode":"M14","imageCode":"m14","count":2},"1586075":{"name":"Altac Bloodseeker","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Creature — Human Berserker","rarity":"Uncommon","text":"Whenever a creature an opponent controls dies, Altac Bloodseeker gets +2/+0 and gains first strike and haste until end of turn. (It deals combat damage before creatures without first strike, and it can attack and {T} as soon as it comes under your control.)","flavor":null,"artist":"Cynthia Sheppard","number":"128","power":"2","toughness":"1","loyalty":null,"multiverseid":383182,"imageName":"altac bloodseeker","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1585051":{"name":"Shrivel","layout":"normal","manaCost":"{1}{B}","cmc":2,"type":"Sorcery","rarity":"Common","text":"All creatures get -1/-1 until end of turn.","flavor":"\"Do not weep for the frail. Their time couldn't have been that far off.\"\n—Nathrac, plaguesower","artist":"Jung Park","number":"116","power":null,"toughness":null,"loyalty":null,"multiverseid":370722,"imageName":"shrivel","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1584028":{"name":"Liturgy of Blood","layout":"normal","manaCost":"{3}{B}{B}","cmc":5,"type":"Sorcery","rarity":"Common","text":"Destroy target creature. Add {B}{B}{B} to your mana pool.","flavor":"\"You harbor such vast potential. It would be such a shame to let you die of old age.\"\n—Zul Ashur, lich lord","artist":"Zack Stella","number":"104","power":null,"toughness":null,"loyalty":null,"multiverseid":370652,"imageName":"liturgy of blood","watermark":null,"setCode":"M14","imageCode":"m14","count":2},"1614749":{"name":"Millstone","layout":"normal","manaCost":"{2}","cmc":2,"type":"Artifact","rarity":"Uncommon","text":"{2}, {T}: Target player puts the top two cards of his or her library into his or her graveyard.","flavor":"Minds, like mountains, are never so grand and mighty that they can't be reduced to dust.","artist":"Yeong-Hao Han","number":"213","power":null,"toughness":null,"loyalty":null,"multiverseid":370737,"imageName":"millstone","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1584029":{"name":"Mind Rot","layout":"normal","manaCost":"{2}{B}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Target player discards two cards.","flavor":"\"It saddens me to lose a source of inspiration. This one seemed especially promising.\"\n—Ashiok","artist":"Steve Luke","number":"104","power":null,"toughness":null,"loyalty":null,"multiverseid":383312,"imageName":"mind rot","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1588112":{"name":"Windstorm","layout":"normal","manaCost":"{X}{G}","cmc":1,"type":"Instant","rarity":"Uncommon","text":"Windstorm deals X damage to each creature with flying.","flavor":"\"When the last dragon fell, its spirit escaped as a roar into the wind.\"\n—Temur tale","artist":"Jonas De Ro","number":"157","power":null,"toughness":null,"loyalty":null,"multiverseid":386724,"imageName":"windstorm","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"1595281":{"name":"Stoneshock Giant","layout":"normal","manaCost":"{3}{R}{R}","cmc":5,"type":"Creature — Giant","rarity":"Uncommon","text":"{6}{R}{R}: Monstrosity 3. (If this creature isn't monstrous, put three +1/+1 counters on it and it becomes monstrous.)\nWhen Stoneshock Giant becomes monstrous, creatures without flying your opponents control can't block this turn.","flavor":null,"artist":"Lars Grant-West","number":"142","power":"5","toughness":"4","loyalty":null,"multiverseid":373687,"imageName":"stoneshock giant","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1594258":{"name":"Minotaur Skullcleaver","layout":"normal","manaCost":"{2}{R}","cmc":3,"type":"Creature — Minotaur Berserker","rarity":"Common","text":"Haste\nWhen Minotaur Skullcleaver enters the battlefield, it gets +2/+0 until end of turn.","flavor":"\"Their only dreams are of full stomachs.\"\n—Kleon the Iron-Booted","artist":"Phill Simmer","number":"130","power":"2","toughness":"2","loyalty":null,"multiverseid":373698,"imageName":"minotaur skullcleaver","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1585043":{"name":"Inspiring Call","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Instant","rarity":"Uncommon","text":"Draw a card for each creature you control with a +1/+1 counter on it. Those creatures gain indestructible until end of turn. (Damage and effects that say \"destroy\" don't destroy them.)","flavor":null,"artist":"Dan Scott","number":"191","power":null,"toughness":null,"loyalty":null,"multiverseid":394601,"imageName":"inspiring call","watermark":"Dromoka","setCode":"DTK","imageCode":"dtk","count":1},"133011":{"name":"Duress","layout":"normal","manaCost":"{B}","cmc":1,"type":"Sorcery","rarity":"Common","text":"Target opponent reveals his or her hand. You choose a noncreature, nonland card from it. That player discards that card.","flavor":"\"It hurts more if you think about it.\"\n—Hooks, Cabal torturer","artist":"Steven Belledin","number":"97","power":null,"toughness":null,"loyalty":null,"multiverseid":370577,"imageName":"duress","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"135056":{"name":"Voidwielder","layout":"normal","manaCost":"{4}{U}","cmc":5,"type":"Creature — Human Wizard","rarity":"Common","text":"When Voidwielder enters the battlefield, you may return target creature to its owner's hand.","flavor":"\"He makes up his own laws, and that's dangerous to all who love peace and prosperity. Kill him on sight.\"\n—Mirela, Azorius hussar","artist":"Chase Stone","number":"56","power":"1","toughness":"4","loyalty":null,"multiverseid":265412,"imageName":"voidwielder","watermark":null,"setCode":"RTR","imageCode":"rtr","count":1},"1585035":{"name":"Executioner's Swing","layout":"normal","manaCost":"{W}{B}","cmc":2,"type":"Instant","rarity":"Common","text":"Target creature that dealt damage this turn gets -5/-5 until end of turn.","flavor":"\"The contract specified an appendage for a missed payment. Read the fine print: the head is an appendage.\"","artist":"Karl Kopinski","number":"161","power":null,"toughness":null,"loyalty":null,"multiverseid":366444,"imageName":"executioner's swing","watermark":"Orzhov","setCode":"GTC","imageCode":"gtc","count":1},"1585038":{"name":"Thornwood Falls","layout":"normal","manaCost":null,"cmc":null,"type":"Land","rarity":"Common","text":"Thornwood Falls enters the battlefield tapped.\nWhen Thornwood Falls enters the battlefield, you gain 1 life.\n{T}: Add {G} or {U} to your mana pool.","flavor":null,"artist":"Eytan Zana","number":"173","power":null,"toughness":null,"loyalty":null,"multiverseid":391944,"imageName":"thornwood falls","watermark":null,"setCode":"FRF","imageCode":"frf","count":2},"131989":{"name":"Accursed Spirit","layout":"normal","manaCost":"{3}{B}","cmc":4,"type":"Creature — Spirit","rarity":"Common","text":"Intimidate (This creature can't be blocked except by artifact creatures and/or creatures that share a color with it.)","flavor":"Many have heard the slither of dragging armor and the soft squelch of its voice. But only its victims ever meet its icy gaze.","artist":"Kev Walker","number":"85","power":"3","toughness":"2","loyalty":null,"multiverseid":383175,"imageName":"accursed spirit","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"117658":{"name":"Dromoka Dunecaster","layout":"normal","manaCost":"{W}","cmc":1,"type":"Creature — Human Wizard","rarity":"Common","text":"{1}{W}, {T}: Tap target creature without flying.","flavor":"\"The dragonlords rule the tempests of the skies. Here in the wastes, the storms are mine to command.\"","artist":"Mark Winters","number":"13","power":"0","toughness":"2","loyalty":null,"multiverseid":394555,"imageName":"dromoka dunecaster","watermark":"Dromoka","setCode":"DTK","imageCode":"dtk","count":1},"1586105":{"name":"Blur Sliver","layout":"normal","manaCost":"{2}{R}","cmc":3,"type":"Creature — Sliver","rarity":"Common","text":"Sliver creatures you control have haste. (They can attack and {T} as soon as they come under your control.)","flavor":"They move in a synchronized swarm, turning entire squads into heaps of bloody rags and bones in an instant.","artist":"Daarken","number":"129","power":"2","toughness":"2","loyalty":null,"multiverseid":370593,"imageName":"blur sliver","watermark":null,"setCode":"M14","imageCode":"m14","count":2},"1584059":{"name":"Mark of the Vampire","layout":"normal","manaCost":"{3}{B}","cmc":4,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nEnchanted creature gets +2/+2 and has lifelink. (Damage dealt by the creature also causes its controller to gain that much life.)","flavor":"\"My ‘condition' is a trial. The weak are consumed by it. The strong transcend it.\"\n—Sorin Markov","artist":"Winona Nelson","number":"105","power":null,"toughness":null,"loyalty":null,"multiverseid":370787,"imageName":"mark of the vampire","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1616827":{"name":"Tyrant's Machine","layout":"normal","manaCost":"{2}","cmc":2,"type":"Artifact","rarity":"Common","text":"{4}, {T}: Tap target creature.","flavor":"\"Though tempered differently, all wills can be broken.\"\n—Inquisitor Kyrik","artist":"Yeong-Hao Han","number":"238","power":null,"toughness":null,"loyalty":null,"multiverseid":383421,"imageName":"tyrant's machine","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1614781":{"name":"Bronze Sable","layout":"normal","manaCost":"{2}","cmc":2,"type":"Artifact Creature — Sable","rarity":"Common","text":null,"flavor":"The Champion stood alone between the horde of the Returned and the shrine to Karametra, cutting down scores among hundreds. She would have been overcome if not for the aid of the temple guardians whom Karametra awakened.\n—The Theriad","artist":"Jasper Sandner","number":"214","power":"2","toughness":"1","loyalty":null,"multiverseid":383197,"imageName":"bronze sable","watermark":null,"setCode":"M15","imageCode":"m15","count":2},"132011":{"name":"Sultai Scavenger","layout":"normal","manaCost":"{5}{B}","cmc":6,"type":"Creature — Bird Warrior","rarity":"Common","text":"Delve (Each card you exile from your graveyard while casting this spell pays for {1}.)\nFlying","flavor":"Since they guard armies of walking carrion, Sultai aven are never far from a meal.","artist":"Anthony Palumbo","number":"91","power":"3","toughness":"3","loyalty":null,"multiverseid":386678,"imageName":"sultai scavenger","watermark":"Sultai","setCode":"KTK","imageCode":"ktk","count":1},"1594289":{"name":"Ordeal of Purphoros","layout":"normal","manaCost":"{1}{R}","cmc":2,"type":"Enchantment — Aura","rarity":"Uncommon","text":"Enchant creature\nWhenever enchanted creature attacks, put a +1/+1 counter on it. Then if it has three or more +1/+1 counters on it, sacrifice Ordeal of Purphoros.\nWhen you sacrifice Ordeal of Purphoros, it deals 3 damage to target creature or player.","flavor":null,"artist":"Maciej Kuciara","number":"131","power":null,"toughness":null,"loyalty":null,"multiverseid":373647,"imageName":"ordeal of purphoros","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1616818":{"name":"Swiftwater Cliffs","layout":"normal","manaCost":null,"cmc":null,"type":"Land","rarity":"Common","text":"Swiftwater Cliffs enters the battlefield tapped.\nWhen Swiftwater Cliffs enters the battlefield, you gain 1 life.\n{T}: Add {U} or {R} to your mana pool.","flavor":null,"artist":"Eytan Zana","number":"243","power":null,"toughness":null,"loyalty":null,"multiverseid":386689,"imageName":"swiftwater cliffs","watermark":null,"setCode":"KTK","imageCode":"ktk","count":2},"1587112":{"name":"Paranoid Delusions","layout":"normal","manaCost":"{U}{B}","cmc":2,"type":"Sorcery","rarity":"Common","text":"Target player puts the top three cards of his or her library into his or her graveyard.\nCipher (Then you may exile this spell card encoded on a creature you control. Whenever that creature deals combat damage to a player, its controller may cast a copy of the encoded card without paying its mana cost.)","flavor":null,"artist":"Christopher Moeller","number":"186","power":null,"toughness":null,"loyalty":null,"multiverseid":366324,"imageName":"paranoid delusions","watermark":"Dimir","setCode":"GTC","imageCode":"gtc","count":1},"133042":{"name":"Festering Newt","layout":"normal","manaCost":"{B}","cmc":1,"type":"Creature — Salamander","rarity":"Common","text":"When Festering Newt dies, target creature an opponent controls gets -1/-1 until end of turn. That creature gets -4/-4 instead if you control a creature named Bogbrew Witch.","flavor":"Its back bubbles like a witch's cauldron, and it smells just as vile.","artist":"Eric Deschamps","number":"98","power":"1","toughness":"1","loyalty":null,"multiverseid":370772,"imageName":"festering newt","watermark":null,"setCode":"M14","imageCode":"m14","count":2},"133043":{"name":"Flesh to Dust","layout":"normal","manaCost":"{3}{B}{B}","cmc":5,"type":"Instant","rarity":"Common","text":"Destroy target creature. It can't be regenerated.","flavor":"\"Pain is temporary. So is life.\"\n—Liliana Vess","artist":"Julie Dillon","number":"98","power":null,"toughness":null,"loyalty":null,"multiverseid":383240,"imageName":"flesh to dust","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"130997":{"name":"Peel from Reality","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Instant","rarity":"Common","text":"Return target creature you control and target creature you don't control to their owners' hands.","flavor":"\"Soulless demon, you are bound to me. Now we will both dwell in oblivion.\"","artist":"Jason Felix","number":"74","power":null,"toughness":null,"loyalty":null,"multiverseid":383341,"imageName":"peel from reality","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"124852":{"name":"Pilfered Plans","layout":"normal","manaCost":"{1}{U}{B}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Target player puts the top two cards of his or her library into his or her graveyard. Draw two cards.","flavor":"Mirko Vosk hunted anyone with knowledge of the maze, draining the chances of the other guilds.","artist":"Michael C. Hayes","number":"90","power":null,"toughness":null,"loyalty":null,"multiverseid":369099,"imageName":"pilfered plans","watermark":"Dimir","setCode":"DGM","imageCode":"dgm","count":1},"132020":{"name":"Black Cat","layout":"normal","manaCost":"{1}{B}","cmc":2,"type":"Creature — Zombie Cat","rarity":"Common","text":"When Black Cat dies, target opponent discards a card at random.","flavor":"Its last life is spent tormenting your dreams.","artist":"David Palumbo","number":"86","power":"1","toughness":"1","loyalty":null,"multiverseid":383191,"imageName":"black cat","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"116662":{"name":"Sunbond","layout":"normal","manaCost":"{3}{W}","cmc":4,"type":"Enchantment — Aura","rarity":"Uncommon","text":"Enchant creature\nEnchanted creature has \"Whenever you gain life, put that many +1/+1 counters on this creature.\"","flavor":"\"I was not chosen for my faith in the gods. Sometimes the gods must put their faith in us.\"\n—Elspeth","artist":"Noah Bradley","number":"28","power":null,"toughness":null,"loyalty":null,"multiverseid":378400,"imageName":"sunbond","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"1588143":{"name":"Woolly Loxodon","layout":"normal","manaCost":"{5}{G}{G}","cmc":7,"type":"Creature — Elephant Warrior","rarity":"Common","text":"Morph {5}{G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its morph cost.)","flavor":"Even among the hardiest warriors of the Temur, loxodons are respected for their adaptation to the mountain snows.","artist":"Karla Ortiz","number":"158","power":"6","toughness":"7","loyalty":null,"multiverseid":386730,"imageName":"woolly loxodon","watermark":"Temur","setCode":"KTK","imageCode":"ktk","count":1},"1583023":{"name":"Cunning Strike","layout":"normal","manaCost":"{3}{U}{R}","cmc":5,"type":"Instant","rarity":"Common","text":"Cunning Strike deals 2 damage to target creature and 2 damage to target player.\nDraw a card.","flavor":"\"The opponent who blocks the path, becomes the path.\"\n—Shu Yun, the Silent Tempest","artist":"Clint Cearley","number":"150","power":null,"toughness":null,"loyalty":null,"multiverseid":391814,"imageName":"cunning strike","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"1585113":{"name":"Tenacious Dead","layout":"normal","manaCost":"{B}","cmc":1,"type":"Creature — Skeleton Warrior","rarity":"Uncommon","text":"When Tenacious Dead dies, you may pay {1}{B}. If you do, return it to the battlefield tapped under its owner's control.","flavor":"Raising the bones of Hekjek the Mad proved far easier than getting them to lie back down.","artist":"John Stanko","number":"118","power":"1","toughness":"1","loyalty":null,"multiverseid":370606,"imageName":"tenacious dead","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1584090":{"name":"Mind Rot","layout":"normal","manaCost":"{2}{B}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Target player discards two cards.","flavor":"\"What a pity. You should have written it down.\"\n—Liliana Vess","artist":"Steve Luke","number":"106","power":null,"toughness":null,"loyalty":null,"multiverseid":370711,"imageName":"mind rot","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1576923":{"name":"Trostani's Summoner","layout":"normal","manaCost":"{5}{G}{W}","cmc":7,"type":"Creature — Elf Shaman","rarity":"Uncommon","text":"When Trostani's Summoner enters the battlefield, put a 2/2 white Knight creature token with vigilance, a 3/3 green Centaur creature token, and a 4/4 green Rhino creature token with trample onto the battlefield.","flavor":null,"artist":"Howard Lyon","number":"110","power":"1","toughness":"1","loyalty":null,"multiverseid":369072,"imageName":"trostani's summoner","watermark":"Selesnya","setCode":"DGM","imageCode":"dgm","count":1},"1613789":{"name":"Titanic Growth","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Instant","rarity":"Common","text":"Target creature gets +4/+4 until end of turn.","flavor":"The massive dominate through might. The tiny survive with guile. Beware the tiny who become massive.","artist":"Ryan Pancoast","number":"203","power":null,"toughness":null,"loyalty":null,"multiverseid":383415,"imageName":"titanic growth","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"1586128":{"name":"Highland Game","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Creature — Elk","rarity":"Common","text":"When Highland Game dies, you gain 2 life.","flavor":"\"Bring down a stag and fix its horns upon her head. This one hears the whispers.\"\n—Chianul, at the weaving of Arel","artist":"John Severin Brassell","number":"135","power":"2","toughness":"1","loyalty":null,"multiverseid":386555,"imageName":"highland game","watermark":null,"setCode":"KTK","imageCode":"ktk","count":2},"1585105":{"name":"Naturalize","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Instant","rarity":"Common","text":"Destroy target artifact or enchantment.","flavor":"The remains of ancient civilizations litter the run-down land.","artist":"James Paick","number":"193","power":null,"toughness":null,"loyalty":null,"multiverseid":394634,"imageName":"naturalize","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"70600":{"name":"Artful Maneuver","layout":"normal","manaCost":"{1}{W}","cmc":2,"type":"Instant","rarity":"Common","text":"Target creature gets +2/+2 until end of turn.\nRebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast this card from exile without paying its mana cost.)","flavor":null,"artist":"Lars Grant-West","number":"4","power":null,"toughness":null,"loyalty":null,"multiverseid":394496,"imageName":"artful maneuver","watermark":"Ojutai","setCode":"DTK","imageCode":"dtk","count":2},"1584082":{"name":"Hordeling Outburst","layout":"normal","manaCost":"{1}{R}{R}","cmc":3,"type":"Sorcery","rarity":"Uncommon","text":"Put three 1/1 red Goblin creature tokens onto the battlefield.","flavor":"\"Leave no scraps, lest you attract pests.\"\n—Mardu threat","artist":"Zoltan Boros","number":"111","power":null,"toughness":null,"loyalty":null,"multiverseid":386560,"imageName":"hordeling outburst","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"1615826":{"name":"Dismal Backwater","layout":"normal","manaCost":null,"cmc":null,"type":"Land","rarity":"Common","text":"Dismal Backwater enters the battlefield tapped.\nWhen Dismal Backwater enters the battlefield, you gain 1 life.\n{T}: Add {U} or {B} to your mana pool.","flavor":null,"artist":"Sam Burley","number":"232","power":null,"toughness":null,"loyalty":null,"multiverseid":386520,"imageName":"dismal backwater","watermark":null,"setCode":"KTK","imageCode":"ktk","count":3},"1614803":{"name":"Ghostfire Blade","layout":"normal","manaCost":"{1}","cmc":1,"type":"Artifact — Equipment","rarity":"Rare","text":"Equipped creature gets +2/+2.\nEquip {3}\nGhostfire Blade's equip ability costs {2} less to activate if it targets a colorless creature.","flavor":"If you fear the dragon's fire, you are unworthy to wield it.","artist":"Cyril Van Der Haegen","number":"220","power":null,"toughness":null,"loyalty":null,"multiverseid":386545,"imageName":"ghostfire blade","watermark":null,"setCode":"KTK","imageCode":"ktk","count":2},"134095":{"name":"Paralyzing Grasp","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nEnchanted creature doesn't untap during its controller's untap step.","flavor":"\"Obviously, the Firemind's mission is worth more than a few goblins.\"\n—Pelener, chamberlain of Niv-Mizzet","artist":"Scott Chou","number":"46","power":null,"toughness":null,"loyalty":null,"multiverseid":270955,"imageName":"paralyzing grasp","watermark":null,"setCode":"RTR","imageCode":"rtr","count":1},"132050":{"name":"Blood Bairn","layout":"normal","manaCost":"{2}{B}","cmc":3,"type":"Creature — Vampire","rarity":"Common","text":"Sacrifice another creature: Blood Bairn gets +2/+2 until end of turn.","flavor":"The travelers were warned to watch out for children on the road.","artist":"Ryan Yee","number":"87","power":"2","toughness":"2","loyalty":null,"multiverseid":370698,"imageName":"blood bairn","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"131027":{"name":"Tome Scour","layout":"normal","manaCost":"{U}","cmc":1,"type":"Sorcery","rarity":"Common","text":"Target player puts the top five cards of his or her library into his or her graveyard.","flavor":"\"I hope none of those were important!\"","artist":"Steven Belledin","number":"75","power":null,"toughness":null,"loyalty":null,"multiverseid":370706,"imageName":"tome scour","watermark":null,"setCode":"M14","imageCode":"m14","count":3},"133073":{"name":"Gnawing Zombie","layout":"normal","manaCost":"{1}{B}","cmc":2,"type":"Creature — Zombie","rarity":"Uncommon","text":"{1}{B}, Sacrifice a creature: Target player loses 1 life and you gain 1 life.","flavor":"On still nights you can hear its rotted teeth grinding tirelessly on scavenged bones.","artist":"Greg Staples","number":"99","power":"1","toughness":"3","loyalty":null,"multiverseid":370682,"imageName":"gnawing zombie","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"132049":{"name":"Seller of Songbirds","layout":"normal","manaCost":"{2}{W}","cmc":3,"type":"Creature — Human","rarity":"Common","text":"When Seller of Songbirds enters the battlefield, put a 1/1 white Bird creature token with flying onto the battlefield.","flavor":"\"Lady Wren is the one merchant in Keyhole Downs who isn't running a scam.\"\n—Mirela, Azorius hussar","artist":"Christopher Moeller","number":"22","power":"1","toughness":"2","loyalty":null,"multiverseid":253656,"imageName":"seller of songbirds","watermark":null,"setCode":"RTR","imageCode":"rtr","count":1},"128981":{"name":"Disperse","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Instant","rarity":"Common","text":"Return target nonland permanent to its owner's hand.","flavor":"Gryffid found his way home and resumed life as best he could, constantly hiding his newfound fear of clouds.","artist":"Steve Ellis","number":"51","power":null,"toughness":null,"loyalty":null,"multiverseid":370818,"imageName":"disperse","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"130005":{"name":"Jace's Ingenuity","layout":"normal","manaCost":"{3}{U}{U}","cmc":5,"type":"Instant","rarity":"Uncommon","text":"Draw three cards.","flavor":"\"Brute force can sometimes kick down a locked door, but knowledge is a skeleton key.\"","artist":"Igor Kieryluk","number":"63","power":null,"toughness":null,"loyalty":null,"multiverseid":383286,"imageName":"jace's ingenuity","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"116693":{"name":"Vanguard of Brimaz","layout":"normal","manaCost":"{W}{W}","cmc":2,"type":"Creature — Cat Soldier","rarity":"Uncommon","text":"Vigilance\nHeroic — Whenever you cast a spell that targets Vanguard of Brimaz, put a 1/1 white Cat Soldier creature token with vigilance onto the battlefield.","flavor":"\"The humans and their gods never blessed me. Only the pride deserves my allegiance.\"","artist":"Mark Zug","number":"29","power":"2","toughness":"2","loyalty":null,"multiverseid":378401,"imageName":"vanguard of brimaz","watermark":null,"setCode":"BNG","imageCode":"bng","count":1},"1585100":{"name":"Wind-Scarred Crag","layout":"normal","manaCost":null,"cmc":null,"type":"Land","rarity":"Common","text":"Wind-Scarred Crag enters the battlefield tapped.\nWhen Wind-Scarred Crag enters the battlefield, you gain 1 life.\n{T}: Add {R} or {W} to your mana pool.","flavor":null,"artist":"Eytan Zana","number":"175","power":null,"toughness":null,"loyalty":null,"multiverseid":391963,"imageName":"wind-scarred crag","watermark":null,"setCode":"FRF","imageCode":"frf","count":2},"130004":{"name":"Messenger Drake","layout":"normal","manaCost":"{3}{U}{U}","cmc":5,"type":"Creature — Drake","rarity":"Common","text":"Flying\nWhen Messenger Drake dies, draw a card.","flavor":"The more important the message, the larger the messenger.","artist":"Yeong-Hao Han","number":"63","power":"3","toughness":"3","loyalty":null,"multiverseid":370807,"imageName":"messenger drake","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1597389":{"name":"Nylea's Emissary","layout":"normal","manaCost":"{3}{G}","cmc":4,"type":"Enchantment Creature — Cat","rarity":"Uncommon","text":"Bestow {5}{G} (If you cast this card for its bestow cost, it's an Aura spell with enchant creature. It becomes a creature again if it's not attached to a creature.)\nTrample\nEnchanted creature gets +3/+3 and has trample.","flavor":null,"artist":"Sam Burley","number":"168","power":"3","toughness":"3","loyalty":null,"multiverseid":373510,"imageName":"nylea's emissary","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1584121":{"name":"Minotaur Abomination","layout":"normal","manaCost":"{4}{B}{B}","cmc":6,"type":"Creature — Zombie Minotaur","rarity":"Common","text":null,"flavor":"\"Look at that. Shuffling, wobbling, entrails placed haphazardly. It's shameful. Who would let that kind of work flap about for all to see?\"\n—Lestin, necromancer","artist":"Karl Kopinski","number":"107","power":"4","toughness":"6","loyalty":null,"multiverseid":370683,"imageName":"minotaur abomination","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1576954":{"name":"Unflinching Courage","layout":"normal","manaCost":"{1}{G}{W}","cmc":3,"type":"Enchantment — Aura","rarity":"Uncommon","text":"Enchant creature\nEnchanted creature gets +2/+2 and has trample and lifelink.","flavor":"As Trostani's influence grew, vitality spread through the Conclave—much to the other guilds' dismay.","artist":"Mike Bierek","number":"111","power":null,"toughness":null,"loyalty":null,"multiverseid":369074,"imageName":"unflinching courage","watermark":"Selesnya","setCode":"DGM","imageCode":"dgm","count":1},"1585146":{"name":"Satyr Grovedancer","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Creature — Satyr Shaman","rarity":"Common","text":"When Satyr Grovedancer enters the battlefield, put a +1/+1 counter on target creature.","flavor":"\"Some of my kin dance for themselves, without greater purpose. Nylea gives me purpose, and with it strength.\"","artist":"Jason A. Engle","number":"139","power":"1","toughness":"1","loyalty":null,"multiverseid":380492,"imageName":"satyr grovedancer","watermark":null,"setCode":"JOU","imageCode":"jou","count":2},"1582077":{"name":"Magma Spray","layout":"normal","manaCost":"{R}","cmc":1,"type":"Instant","rarity":"Common","text":"Magma Spray deals 2 damage to target creature. If that creature would die this turn, exile it instead.","flavor":"The ancient dragon Thraxes sleeps in Purphoros's sacred peak. When he stirs in dreams, so does the mountain.","artist":"Richard Wright","number":"103","power":null,"toughness":null,"loyalty":null,"multiverseid":380452,"imageName":"magma spray","watermark":null,"setCode":"JOU","imageCode":"jou","count":1},"1585136":{"name":"Trumpet Blast","layout":"normal","manaCost":"{2}{R}","cmc":3,"type":"Instant","rarity":"Common","text":"Attacking creatures get +2/+0 until end of turn.","flavor":"\"Do you hear that, Sarkhan? The glory of the horde! I made a legend from what you abandoned.\"\n—Zurgo, khan of the Mardu","artist":"Steve Prescott","number":"124","power":null,"toughness":null,"loyalty":null,"multiverseid":386706,"imageName":"trumpet blast","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"1616880":{"name":"Tomb of the Spirit Dragon","layout":"normal","manaCost":null,"cmc":null,"type":"Land","rarity":"Uncommon","text":"{T}: Add {1} to your mana pool.\n{2}, {T}: You gain 1 life for each colorless creature you control.","flavor":"\"The voice calls me here, yet I see only bones. Is this more dragon trickery?\"\n—Sarkhan Vol","artist":"Sam Burley","number":"245","power":null,"toughness":null,"loyalty":null,"multiverseid":386700,"imageName":"tomb of the spirit dragon","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"1584113":{"name":"Display of Dominance","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Instant","rarity":"Uncommon","text":"Choose one —\n• Destroy target blue or black noncreature permanent.\n• Permanents you control can't be the targets of blue or black spells your opponents control this turn.","flavor":null,"artist":"Tomasz Jedruszek","number":"182","power":null,"toughness":null,"loyalty":null,"multiverseid":394538,"imageName":"display of dominance","watermark":null,"setCode":"DTK","imageCode":"dtk","count":1},"1583090":{"name":"Aerie Bowmasters","layout":"normal","manaCost":"{2}{G}{G}","cmc":4,"type":"Creature — Hound Archer","rarity":"Common","text":"Reach (This creature can block creatures with flying.)\nMegamorph {5}{G} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)","flavor":null,"artist":"Matt Stewart","number":"170","power":"3","toughness":"4","loyalty":null,"multiverseid":394486,"imageName":"aerie bowmasters","watermark":"Dromoka","setCode":"DTK","imageCode":"dtk","count":2},"132073":{"name":"Throttle","layout":"normal","manaCost":"{4}{B}","cmc":5,"type":"Instant","rarity":"Common","text":"Target creature gets -4/-4 until end of turn.","flavor":"\"The best servants are made from those who died without a scratch.\"\n—Sidisi, khan of the Sultai","artist":"Wayne Reynolds","number":"93","power":null,"toughness":null,"loyalty":null,"multiverseid":386698,"imageName":"throttle","watermark":null,"setCode":"KTK","imageCode":"ktk","count":1},"134126":{"name":"Psychic Spiral","layout":"normal","manaCost":"{4}{U}","cmc":5,"type":"Instant","rarity":"Uncommon","text":"Shuffle all cards from your graveyard into your library. Target player puts that many cards from the top of his or her library into his or her graveyard.","flavor":"An elocutor forces criminals to confess to the laws they merely intended to break.","artist":"Ryan Pancoast","number":"47","power":null,"toughness":null,"loyalty":null,"multiverseid":270794,"imageName":"psychic spiral","watermark":null,"setCode":"RTR","imageCode":"rtr","count":1},"1585128":{"name":"Fortress Cyclops","layout":"normal","manaCost":"{3}{R}{W}","cmc":5,"type":"Creature — Cyclops Soldier","rarity":"Uncommon","text":"Whenever Fortress Cyclops attacks, it gets +3/+0 until end of turn.\nWhenever Fortress Cyclops blocks, it gets +0/+3 until end of turn.","flavor":"\"They think they tamed him, but he will always be a wild titan, a force of nature.\"\n—Nedja, Gruul shaman","artist":"Maciej Kuciara","number":"164","power":"3","toughness":"3","loyalty":null,"multiverseid":366280,"imageName":"fortress cyclops","watermark":"Boros","setCode":"GTC","imageCode":"gtc","count":1},"1583082":{"name":"Wildwood Rebirth","layout":"normal","manaCost":"{1}{G}","cmc":2,"type":"Instant","rarity":"Common","text":"Return target creature card from your graveyard to your hand.","flavor":"In Ravnica, there are maladies far more difficult to treat than death.","artist":"Dan Scott","number":"140","power":null,"toughness":null,"loyalty":null,"multiverseid":366425,"imageName":"wildwood rebirth","watermark":null,"setCode":"GTC","imageCode":"gtc","count":1},"131059":{"name":"Quickling","layout":"normal","manaCost":"{1}{U}","cmc":2,"type":"Creature — Faerie Rogue","rarity":"Uncommon","text":"Flash (You may cast this spell any time you could cast an instant.)\nFlying\nWhen Quickling enters the battlefield, sacrifice it unless you return another creature you control to its owner's hand.","flavor":null,"artist":"Clint Cearley","number":"76","power":"2","toughness":"2","loyalty":null,"multiverseid":383354,"imageName":"quickling","watermark":null,"setCode":"M15","imageCode":"m15","count":1},"127989":{"name":"Suntail Hawk","layout":"normal","manaCost":"{W}","cmc":1,"type":"Creature — Bird","rarity":"Common","text":"Flying","flavor":"\"They are the finest companions in the realm. Swift, clever, and easily trained to hunt intruders.\"\n—Almira, falconer","artist":"Heather Hudson","number":"40","power":"1","toughness":"1","loyalty":null,"multiverseid":370720,"imageName":"suntail hawk","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"129013":{"name":"Divination","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Draw two cards.","flavor":"\"The key to unlocking this puzzle is within you.\"\n—Doriel, mentor of Mistral Isle","artist":"Howard Lyon","number":"52","power":null,"toughness":null,"loyalty":null,"multiverseid":383227,"imageName":"divination","watermark":null,"setCode":"M15","imageCode":"m15","count":2},"129012":{"name":"Divination","layout":"normal","manaCost":"{2}{U}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Draw two cards.","flavor":"\"The key to unlocking this puzzle is within you.\"\n—Doriel, mentor of Mistral Isle","artist":"Howard Lyon","number":"52","power":null,"toughness":null,"loyalty":null,"multiverseid":370616,"imageName":"divination","watermark":null,"setCode":"M14","imageCode":"m14","count":1},"1596397":{"name":"Fade into Antiquity","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Exile target artifact or enchantment.","flavor":"\"Are the gods angry at our discontent with what they give us, or jealous that we made a thing they cannot?\"\n—Kleon the Iron-Booted","artist":"Noah Bradley","number":"157","power":null,"toughness":null,"loyalty":null,"multiverseid":373576,"imageName":"fade into antiquity","watermark":null,"setCode":"THS","imageCode":"ths","count":1},"1583085":{"name":"Ethereal Ambush","layout":"normal","manaCost":"{3}{G}{U}","cmc":5,"type":"Instant","rarity":"Common","text":"Manifest the top two cards of your library. (To manifest a card, put it onto the battlefield face down as a 2/2 creature. Turn it face up any time for its mana cost if it's a creature card.)","flavor":"The energies of the Temur lands are readily unleashed upon intruders.","artist":"Lius Lasahido","number":"152","power":null,"toughness":null,"loyalty":null,"multiverseid":391828,"imageName":"ethereal ambush","watermark":null,"setCode":"FRF","imageCode":"frf","count":1},"1587182":{"name":"Scout the Borders","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Sorcery","rarity":"Common","text":"Reveal the top five cards of your library. You may put a creature or land card from among them into your hand. Put the rest into your graveyard.","flavor":"\"I am in my element: the element of surprise.\"\n—Mogai, Sultai scout","artist":"James Paick","number":"148","power":null,"toughness":null,"loyalty":null,"multiverseid":386656,"imageName":"scout the borders","watermark":"Sultai","setCode":"KTK","imageCode":"ktk","count":2},"117751":{"name":"Enduring Victory","layout":"normal","manaCost":"{4}{W}","cmc":5,"type":"Instant","rarity":"Common","text":"Destroy target attacking or blocking creature. Bolster 1. (Choose a creature with the least toughness among creatures you control and put a +1/+1 counter on it.)","flavor":"\"My dragonlord is immortal. Most dragons are not.\"\n—Kadri, Dromoka warrior","artist":"Mike Sass","number":"16","power":null,"toughness":null,"loyalty":null,"multiverseid":394566,"imageName":"enduring victory","watermark":"Dromoka","setCode":"DTK","imageCode":"dtk","count":2},"1582062":{"name":"Temur Runemark","layout":"normal","manaCost":"{2}{G}","cmc":3,"type":"Enchantment — Aura","rarity":"Common","text":"Enchant creature\nEnchanted creature gets +2/+2.\nEnchanted creature has trample as long as you control a blue or red permanent.","flavor":null,"artist":"Ryan Alexander Lee","number":"140","power":null,"toughness":null,"loyalty":null,"multiverseid":391941,"imageName":"temur runemark","watermark":"Temur","setCode":"FRF","imageCode":"frf","count":1},"1594351":{"name":"Portent of Betrayal","layout":"normal","manaCost":"{3}{R}","cmc":4,"type":"Sorcery","rarity":"Common","text":"Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)","flavor":null,"artist":"Daarken","number":"133","power":null,"toughness":null,"loyalty":null,"multiverseid":373667,"imageName":"portent of betrayal","watermark":null,"setCode":"THS","imageCode":"ths","count":1}} \ No newline at end of file
diff --git a/test/eu/equalparts/test/cardbase/notjson.txt b/test/eu/equalparts/cardbase/notjson.txt
index 7705955..7705955 100644
--- a/test/eu/equalparts/test/cardbase/notjson.txt
+++ b/test/eu/equalparts/cardbase/notjson.txt
diff --git a/test/eu/equalparts/test/cardbase/shivandragon.json b/test/eu/equalparts/cardbase/shivandragon.json
index f846d35..f846d35 100644
--- a/test/eu/equalparts/test/cardbase/shivandragon.json
+++ b/test/eu/equalparts/cardbase/shivandragon.json
diff --git a/test/eu/equalparts/test/cardbase/testbase.cb b/test/eu/equalparts/cardbase/testbase.cb
index 80dc98f..80dc98f 100644
--- a/test/eu/equalparts/test/cardbase/testbase.cb
+++ b/test/eu/equalparts/cardbase/testbase.cb
diff --git a/test/eu/equalparts/test/cardbase/testcards.json b/test/eu/equalparts/cardbase/testcards.json
index 18b3783..18b3783 100644
--- a/test/eu/equalparts/test/cardbase/testcards.json
+++ b/test/eu/equalparts/cardbase/testcards.json