diff --git a/forge-core/src/main/java/forge/StaticData.java b/forge-core/src/main/java/forge/StaticData.java index 388b8707b03..3ebb8092dad 100644 --- a/forge-core/src/main/java/forge/StaticData.java +++ b/forge-core/src/main/java/forge/StaticData.java @@ -18,9 +18,9 @@ import java.util.*; import java.util.function.Predicate; import java.util.concurrent.CompletableFuture; import java.util.concurrent.ConcurrentLinkedQueue; +import java.util.regex.Pattern; import java.util.stream.Collectors; - /** * The class holding game invariants, such as cards, editions, game formats. All that data, which is not supposed to be changed by player * @@ -784,6 +784,7 @@ public class StaticData { Queue TOKEN_Q = new ConcurrentLinkedQueue<>(); boolean nifHeader = false; boolean cniHeader = false; + final Pattern funnyCardCollectorNumberPattern = Pattern.compile("^F\\d+"); for (CardEdition e : editions) { if (CardEdition.Type.FUNNY.equals(e.getType())) continue; @@ -791,11 +792,13 @@ public class StaticData { Map> cardCount = new HashMap<>(); List> futures = new ArrayList<>(); for (CardEdition.EditionEntry c : e.getObtainableCards()) { + int amount = 1; + if (cardCount.containsKey(c.name())) { - cardCount.put(c.name(), Pair.of(c.collectorNumber() != null && c.collectorNumber().startsWith("F"), cardCount.get(c.name()).getRight() + 1)); - } else { - cardCount.put(c.name(), Pair.of(c.collectorNumber() != null && c.collectorNumber().startsWith("F"), 1)); + amount = cardCount.get(c.name()).getRight() + 1; } + + cardCount.put(c.name(), Pair.of(c.collectorNumber() != null && funnyCardCollectorNumberPattern.matcher(c.collectorNumber()).matches(), amount)); } // loop through the cards in this edition, considering art variations... diff --git a/forge-core/src/main/java/forge/deck/CardPool.java b/forge-core/src/main/java/forge/deck/CardPool.java index d75b8118387..e868ae68537 100644 --- a/forge-core/src/main/java/forge/deck/CardPool.java +++ b/forge-core/src/main/java/forge/deck/CardPool.java @@ -37,7 +37,6 @@ import java.util.function.Predicate; import java.util.regex.Matcher; import java.util.regex.Pattern; - public class CardPool extends ItemPool { private static final long serialVersionUID = -5379091255613968393L; diff --git a/forge-core/src/main/java/forge/item/PaperCard.java b/forge-core/src/main/java/forge/item/PaperCard.java index 364f0a79623..a467dc2c71f 100644 --- a/forge-core/src/main/java/forge/item/PaperCard.java +++ b/forge-core/src/main/java/forge/item/PaperCard.java @@ -46,7 +46,7 @@ public class PaperCard implements Comparable, InventoryItemFromSet, // These fields are kinda PK for PrintedCard private final String name; - private final String edition; + private String edition; /* [NEW] Attribute to store reference to CollectorNumber of each PaperCard. By default the attribute is marked as "unset" so that it could be retrieved and set. (see getCollectorNumber()) diff --git a/forge-gui-desktop/src/test/java/forge/card/CardDbLazyCardLoadingCardMockTestCase.java b/forge-gui-desktop/src/test/java/forge/card/CardDbLazyCardLoadingCardMockTestCase.java index a4a999fa2c5..d548a30aac4 100644 --- a/forge-gui-desktop/src/test/java/forge/card/CardDbLazyCardLoadingCardMockTestCase.java +++ b/forge-gui-desktop/src/test/java/forge/card/CardDbLazyCardLoadingCardMockTestCase.java @@ -32,7 +32,7 @@ public class CardDbLazyCardLoadingCardMockTestCase extends CardMockTestCase { @Test public void testLoadAndGetBorrowing100_000ArrowsCardFromAllEditions() { String cardName = "Borrowing 100,000 Arrows"; - String[] allAvailableEds = new String[] { "PTK", "ME3", "C13", "CMA", "A25", "MB1" }; + String[] allAvailableEds = new String[] { "PTK", "ME3", "C13", "CMA", "A25", "PLST" }; assertEquals(this.cardDb.getCardArtPreference(), CardDb.CardArtPreference.LATEST_ART_ALL_EDITIONS); @@ -45,7 +45,7 @@ public class CardDbLazyCardLoadingCardMockTestCase extends CardMockTestCase { borrowingCard = this.cardDb.getCard(cardName); assertNotNull(borrowingCard); assertEquals(borrowingCard.getName(), cardName); - assertEquals(borrowingCard.getEdition(), "MB1"); + assertEquals(borrowingCard.getEdition(), "PLST"); // Now get card from all the specified editions for (String setCode : allAvailableEds) { diff --git a/forge-gui-desktop/src/test/java/forge/deck/DeckRecognizerTest.java b/forge-gui-desktop/src/test/java/forge/deck/DeckRecognizerTest.java index e5883ab5c63..4a504545970 100644 --- a/forge-gui-desktop/src/test/java/forge/deck/DeckRecognizerTest.java +++ b/forge-gui-desktop/src/test/java/forge/deck/DeckRecognizerTest.java @@ -1757,7 +1757,7 @@ public class DeckRecognizerTest extends CardMockTestCase { // SIMULATE A GAME OF VINTAGE DeckRecognizer recognizer = new DeckRecognizer(); List allowedSetCodes = Arrays.asList(StringUtils.split( - "7ED, 9ED, ORI, M14, M15, 6ED, 8ED, M11, 3ED, M10, M12, 10E, M13, G18, M21, M20, M19, 5ED, 2ED, 4ED, LEB, LEA, 5DN, SOM, KTK, THS, DIS, JOU, MOR, TMP, SOI, FEM, USG, ALL, ROE, EXO, TSP, LRW, TOR, ALA, RIX, DGM, DKA, MBS, AER, RNA, GTC, CSP, HML, NPH, OGW, ZNR, EMN, UDS, SHM, BNG, SOK, EVE, INV, THB, DOM, NMS, VIS, WAR, GRN, PCY, SCG, MRD, XLN, ONS, IKO, MMQ, CHK, ULG, AKH, MIR, ISD, AVR, KLD, APC, RTR, WWK, PLC, HOU, LEG, AFR, ARN, ICE, STX, LGN, ARB, KHM, CFX, TSB, ZEN, ELD, JUD, GPT, BFZ, BOK, DTK, FRF, FUT, WTH, ODY, RAV, ATQ, DRK, PLS, STH, DST, TD2, HA1, ME4, HA3, HA2, HA5, HA4, MED, ANB, ME3, KLR, PZ2, ANA, PRM, PZ1, AJMP, ME2, TD1, TD0, TPR, VMA, AKR, MBP, PZEN, PGTW, PL21, PFUT, PWAR, PAL01, PJUD, PAL00, PTKDF, PWOR, PWP12, PSTH, POGW, PFRF, PG07, PSUS, PUST, J18, PWP10, PAL02, PAL03, PWP11, J19, PGRN, PM10, PDP14, PRTR, PMPS06, PBNG, PJ21, G09, PNPH, PM15, PAL06, G08, PDST, J20, PMBS, PMPS07, PEXO, PDOM, PONS, PRW2, PMPS11, PMPS, PM19, PWWK, PCEL, PAL04, PAL05, PMPS10, PDTK, PALP, F10, F04, PMOR, PAL99, PEMN, PCNS, PPLC, PRAV, PPP1, PI14, PXLN, PF20, PTSP, F05, F11, PSCG, PBOOK, F07, F13, PODY, PM12, P08, PSS1, P2HG, P09, PTOR, PDP13, F12, F06, PALA, PXTC, F02, F16, PHOU, PSOM, PI13, PCON, PDGM, PIDW, PMRD, PRNA, P9ED, PHEL, F17, F03, PURL, F15, F01, PWOS, PPC1, PBOK, PTMP, PS19, PS18, PF19, PGPT, PCHK, FNM, F14, PISD, PAKH, PDP15, PRIX, PS15, PPCY, OLGC, OVNT, PLGN, PS14, P03, PDTP, PM14, FS, PPLS, MPR, PKTK, PS16, PRWK, PS17, PBFZ, PSS2, PINV, G03, P8ED, PARL, P04, P10, PSDC, JGP, G99, WW, P11, P05, PDIS, PROE, PDP10, F08, P10E, PELP, PMH1, P07, P5DN, PGRU, SHC, PM11, P06, PUSG, PCMP, PULG, F09, PUDS, PARB, DRC94, PMPS09, PORI, J12, G06, PMMQ, G07, J13, PMPS08, PM20, PSOI, PJSE, G05, G11, PNAT, PSOK, PEVE, PRED, G10, G04, PSHM, PPRO, PAPC, PJJT, ARENA, PKLD, G00, J14, PLGM, P15A, PCSP, PWPN, PJAS, PWP21, PWP09, PDKA, PNEM, PPTK, J15, G01, PG08, PLRW, PMEI, PM13, PHJ, PGTC, J17, PRES, PWCQ, PJOU, PDP12, PAER, PAVR, PTHS, G02, J16, PSUM, PGPX, UGF, PSS3, MM2, MM3, MB1, FMB1, A25, 2XM, MMA, PLIST, CHR, EMA, IMA, TSR, UMA, PUMA, E02, DPA, ATH, MD1, GK1, GK2, CST, BRB, BTD, DKM, FVE, V17, V13, STA, MPS_RNA, V16, SLD, V12, CC1, MPS_GRN, DRB, FVR, SS3, SS1, MPS_AKH, FVL, V15, MPS_KLD, ZNE, PDS, SS2, PD3, SLU, V14, PD2, EXP, MPS_WAR, DDQ, DDE, GS1, DDS, DDU, DD1, DDL, DDF, DDP, DD2, DDR, DDH, DDT, DDK, DDG, DDC, DDM, DDJ, DDO, GVL, JVC, DDI, DVD, DDN, EVG, DDD, C18, C19, C21, C20, C13, CMA, C14, C15, KHC, ZNC, AFC, C17, C16, COM, CM1,CM2,PO2,S99,W16,W17,S00,PTK,CP3,POR,CP1,CP2,CMR,MH2,H1R,CNS,BBD,MH1,CN2,JMP,PCA,GNT,ARC,GN2,PC2,E01,HOP,PLG20,PLG21,CC2,MID,MIC,VOW,VOC", + "7ED, 9ED, ORI, M14, M15, 6ED, 8ED, M11, 3ED, M10, M12, 10E, M13, G18, M21, M20, M19, 5ED, 2ED, 4ED, LEB, LEA, 5DN, SOM, KTK, THS, DIS, JOU, MOR, TMP, SOI, FEM, USG, ALL, ROE, EXO, TSP, LRW, TOR, ALA, RIX, DGM, DKA, MBS, AER, RNA, GTC, CSP, HML, NPH, OGW, ZNR, EMN, UDS, SHM, BNG, SOK, EVE, INV, THB, DOM, NMS, VIS, WAR, GRN, PCY, SCG, MRD, XLN, ONS, IKO, MMQ, CHK, ULG, AKH, MIR, ISD, AVR, KLD, APC, RTR, WWK, PLC, HOU, LEG, AFR, ARN, ICE, STX, LGN, ARB, KHM, CFX, TSB, ZEN, ELD, JUD, GPT, BFZ, BOK, DTK, FRF, FUT, WTH, ODY, RAV, ATQ, DRK, PLS, STH, DST, TD2, HA1, ME4, HA3, HA2, HA5, HA4, ME1, ANB, ME3, KLR, PZ2, ANA, PRM, PZ1, AJMP, ME2, TD1, TD0, TPR, VMA, AKR, MBP, PZEN, PGTW, PL21, PFUT, PWAR, PAL01, PJUD, PAL00, PTKDF, PWOR, PWP12, PSTH, POGW, PFRF, PG07, PSUS, PUST, J18, PWP10, PAL02, PAL03, PWP11, J19, PGRN, PM10, PDP14, PRTR, PMPS06, PBNG, PJ21, G09, PNPH, PM15, PAL06, G08, PDST, J20, PMBS, PMPS07, PEXO, PDOM, PONS, PRW2, PMPS11, PMPS, PM19, PWWK, PCEL, PAL04, PAL05, PMPS10, PDTK, PALP, F10, F04, PMOR, PAL99, PEMN, PCNS, PPLC, PRAV, PPP1, PI14, PXLN, PF20, PTSP, F05, F11, PSCG, PBOOK, F07, F13, PODY, PM12, P08, PSS1, P2HG, P09, PTOR, PDP13, F12, F06, PALA, PXTC, F02, F16, PHOU, PSOM, PI13, PCON, PDGM, PIDW, PMRD, PRNA, P9ED, PHEL, F17, F03, PURL, F15, F01, PWOS, PPC1, PBOK, PTMP, PS19, PS18, PF19, PGPT, PCHK, FNM, F14, PISD, PAKH, PDP15, PRIX, PS15, PPCY, OLGC, OVNT, PLGN, PS14, P03, PDTP, PM14, FS, PPLS, MPR, PKTK, PS16, PRWK, PS17, PBFZ, PSS2, PINV, G03, P8ED, PARL, P04, P10, PSDC, JGP, G99, WW, P11, P05, PDIS, PROE, PDP10, F08, P10E, PELP, PMH1, P07, P5DN, PGRU, SHC, PM11, P06, PUSG, PCMP, PULG, F09, PUDS, PARB, DRC94, PMPS09, PORI, J12, G06, PMMQ, G07, J13, PMPS08, PM20, PSOI, PJSE, G05, G11, PNAT, PSOK, PEVE, PRED, G10, G04, PSHM, PPRO, PAPC, PJJT, ARENA, PKLD, G00, J14, PLGM, P15A, PCSP, PWPN, PJAS, PWP21, PWP09, PDKA, PNEM, PPTK, J15, G01, PG08, PLRW, PMEI, PM13, PHJ, PGTC, J17, PRES, PWCQ, PJOU, PDP12, PAER, PAVR, PTHS, G02, J16, PSUM, PGPX, UGF, PSS3, MM2, MM3, MB1, A25, 2XM, MMA, PLIST, CHR, EMA, IMA, TSR, UMA, PUMA, E02, DPA, ATH, MD1, GK1, GK2, CST, BRB, BTD, DKM, FVE, V17, V13, STA, MPS_RNA, V16, SLD, V12, CC1, MPS_GRN, DRB, FVR, SS3, SS1, MPS_AKH, FVL, V15, MPS_KLD, ZNE, PDS, SS2, PD3, SLU, V14, PD2, EXP, MPS_WAR, DDQ, DDE, GS1, DDS, DDU, DD1, DDL, DDF, DDP, DD2, DDR, DDH, DDT, DDK, DDG, DDC, DDM, DDJ, DDO, GVL, JVC, DDI, DVD, DDN, EVG, DDD, C18, C19, C21, C20, C13, CMA, C14, C15, KHC, ZNC, AFC, C17, C16, COM, CM1,CM2,PO2,S99,W16,W17,S00,PTK,CP3,POR,CP1,CP2,CMR,MH2,H1R,CNS,BBD,MH1,CN2,JMP,PCA,GNT,ARC,GN2,PC2,E01,HOP,PLG20,PLG21,CC2,MID,MIC,VOW,VOC", ",")); allowedSetCodes = allowedSetCodes.stream().map(String::trim).collect(Collectors.toList()); List bannedCards = Arrays.asList(StringUtils.split( @@ -1818,7 +1818,7 @@ public class DeckRecognizerTest extends CardMockTestCase { assertNotNull(cardToken.getCard()); assertEquals(cardToken.getCard().getName(), "Viashino Sandstalker"); assertEquals(cardToken.getQuantity(), 1); - assertEquals(cardToken.getCard().getEdition(), "MB1"); + assertEquals(cardToken.getCard().getEdition(), "PLST"); assertTrue(cardToken.cardRequestHasNoCode()); cardRequest = "4x Viashino Sandstalker"; @@ -1830,7 +1830,7 @@ public class DeckRecognizerTest extends CardMockTestCase { assertNotNull(cardToken.getCard()); assertEquals(cardToken.getCard().getName(), "Viashino Sandstalker"); assertEquals(cardToken.getQuantity(), 4); - assertEquals(cardToken.getCard().getEdition(), "MB1"); + assertEquals(cardToken.getCard().getEdition(), "PLST"); assertTrue(cardToken.cardRequestHasNoCode()); // Requesting now what will be a Banned card later in this test @@ -1870,7 +1870,7 @@ public class DeckRecognizerTest extends CardMockTestCase { assertNotNull(cardToken.getCard()); assertEquals(cardToken.getCard().getName(), "Viashino Sandstalker"); assertEquals(cardToken.getQuantity(), 4); - assertEquals(cardToken.getCard().getEdition(), "MB1"); + assertEquals(cardToken.getCard().getEdition(), "PLST"); assertTrue(cardToken.cardRequestHasNoCode()); cardRequest = "Squandered Resources"; @@ -2726,7 +2726,7 @@ public class DeckRecognizerTest extends CardMockTestCase { assertNotNull(cardToken.getCard()); assertEquals(cardToken.getCard().getName(), "Viashino Sandstalker"); assertEquals(cardToken.getQuantity(), 1); - assertEquals(cardToken.getCard().getEdition(), "MB1"); + assertEquals(cardToken.getCard().getEdition(), "PLST"); // Token Key Token.TokenKey tokenKey = cardToken.getKey(); @@ -2901,7 +2901,7 @@ public class DeckRecognizerTest extends CardMockTestCase { recognizer = new DeckRecognizer(); recognizer.setGameFormatConstraint(Arrays.asList("MIR", "VIS"), null, null); - line = "Viashino Sandstalker|MB1"; + line = "Viashino Sandstalker|PLST"; lineToken = recognizer.recognizeLine(line, null); assertNotNull(lineToken); assertEquals(lineToken.getType(), TokenType.CARD_FROM_NOT_ALLOWED_SET); @@ -2928,7 +2928,7 @@ public class DeckRecognizerTest extends CardMockTestCase { assertNotNull(cardToken.getCard()); assertEquals(cardToken.getCard().getName(), "Viashino Sandstalker"); assertEquals(cardToken.getQuantity(), 1); - assertEquals(cardToken.getCard().getEdition(), "MB1"); + assertEquals(cardToken.getCard().getEdition(), "PLST"); // Token Key Token.TokenKey tokenKey = cardToken.getKey(); diff --git a/forge-gui/res/adventure/common/decks/miniboss/frogboss.dck b/forge-gui/res/adventure/common/decks/miniboss/frogboss.dck index da88a9ecf09..ffd2d96c618 100644 --- a/forge-gui/res/adventure/common/decks/miniboss/frogboss.dck +++ b/forge-gui/res/adventure/common/decks/miniboss/frogboss.dck @@ -18,10 +18,10 @@ Name=frogboss 1 Swamp|2XM|1 2 Swamp|2XM|2 4 Terramorphic Expanse|DMC|1 -2 The Gitrog Monster|MB1|1 +2 The Gitrog Monster|PLST|1 2 Uurg, Spawn of Turg|DMU|1 2 Yargle and Multani|MOM|1 -2 Yargle, Glutton of Urborg|MB1|1 +2 Yargle, Glutton of Urborg|PLST|1 4 Zagoth Triome|IKO|1 [Sideboard] diff --git a/forge-gui/res/adventure/common/decks/miniboss/garruk.dck b/forge-gui/res/adventure/common/decks/miniboss/garruk.dck index 5a6954c0aaa..08d142e2c0f 100644 --- a/forge-gui/res/adventure/common/decks/miniboss/garruk.dck +++ b/forge-gui/res/adventure/common/decks/miniboss/garruk.dck @@ -24,7 +24,7 @@ Name=garruk 1 Kogla, the Titan Ape|IKO|1 2 Krosan Warchief|C13|1 1 Nature's Chosen|ALL|1 -4 Nature's Claim|MB1|1 +4 Nature's Claim|PLST|1 4 Prey Upon|ISD|1 2 Primeval Titan|IMA|1 1 Rampaging Baloths|C14|1 diff --git a/forge-gui/res/adventure/common/decks/miniboss/kiora.dck b/forge-gui/res/adventure/common/decks/miniboss/kiora.dck index 6a6101e84c7..28c28205cd1 100644 --- a/forge-gui/res/adventure/common/decks/miniboss/kiora.dck +++ b/forge-gui/res/adventure/common/decks/miniboss/kiora.dck @@ -26,7 +26,7 @@ Name=kiora 4 Kenessos, Priest of Thassa|J22|1 4 Kiora Bests the Sea God|THB|1 4 Kiora's Dambreaker|WAR|1 -1 Kiora's Follower|MB1|1 +1 Kiora's Follower|PLST|1 3 Kiora's Follower|PBNG|1 4 Kiora, Behemoth Beckoner|WAR|1 1 Kiora, Master of the Depths|BFZ|1 diff --git a/forge-gui/res/adventure/common/decks/miniboss/slimefoot.dck b/forge-gui/res/adventure/common/decks/miniboss/slimefoot.dck index 93338752d61..c967e946ab2 100644 --- a/forge-gui/res/adventure/common/decks/miniboss/slimefoot.dck +++ b/forge-gui/res/adventure/common/decks/miniboss/slimefoot.dck @@ -37,7 +37,7 @@ Name=slimefoot 3 Moldervine Reclamation|KHC|1 4 Mortality Spear|STX|1 2 Mycoid Shepherd|ARB|1 -2 Mycoloth|MB1|1 +2 Mycoloth|PLST|1 4 Myconid Spore Tender|CLB|1 4 Nature's Lore|DMR|1 2 Nemata, Grove Guardian|CMM|1 diff --git a/forge-gui/res/adventure/common/decks/standard/aerie_guard.dck b/forge-gui/res/adventure/common/decks/standard/aerie_guard.dck index 7bd792b99b9..27280bdf1b9 100644 --- a/forge-gui/res/adventure/common/decks/standard/aerie_guard.dck +++ b/forge-gui/res/adventure/common/decks/standard/aerie_guard.dck @@ -8,7 +8,7 @@ Name=aerie_guard 1 Firemane Commando|MOC|1 2 Flooded Strand|KTK|1 3 Hallowed Fountain|SLD|1 -2 Healer's Hawk|MB1|1 +2 Healer's Hawk|PLST|1 1 Inniaz, the Gale Force|JMP|1 2 Irrigated Farmland|C20|1 2 Ishai, Ojutai Dragonspeaker|CM2|1 diff --git a/forge-gui/res/adventure/common/decks/standard/amphin_warrior.dck b/forge-gui/res/adventure/common/decks/standard/amphin_warrior.dck index 1f5308530f4..1958561531b 100644 --- a/forge-gui/res/adventure/common/decks/standard/amphin_warrior.dck +++ b/forge-gui/res/adventure/common/decks/standard/amphin_warrior.dck @@ -4,7 +4,7 @@ Name=salamander 1 Aetherspouts|C21|1 4 Amphin Cutthroat|M12|1 4 Amphin Mutineer|CMR|1 -4 Amphin Pathmage|MB1|1 +4 Amphin Pathmage|PLST|1 1 Angler Turtle|GN3|1 1 Asinine Antics|WOE|1 2 Coiling Oracle|CMR|2 diff --git a/forge-gui/res/adventure/common/decks/standard/armored_knight.dck b/forge-gui/res/adventure/common/decks/standard/armored_knight.dck index 9f973debca4..31887af10f4 100644 --- a/forge-gui/res/adventure/common/decks/standard/armored_knight.dck +++ b/forge-gui/res/adventure/common/decks/standard/armored_knight.dck @@ -29,7 +29,7 @@ Name=armored_knight 3 Puresteel Paladin|2XM|1 4 Sacred Foundry|GRN|1 1 Shadowspear|THB|1 -1 Shining Armor|MB1|1 +1 Shining Armor|PLST|1 1 Sword of Vengeance|GN3|1 1 The Circle of Loyalty|ELD|1 1 The Reaver Cleaver|DMC|1 diff --git a/forge-gui/res/adventure/common/decks/standard/badger.dck b/forge-gui/res/adventure/common/decks/standard/badger.dck index 8efce4e2cb2..00a16b8f831 100644 --- a/forge-gui/res/adventure/common/decks/standard/badger.dck +++ b/forge-gui/res/adventure/common/decks/standard/badger.dck @@ -10,6 +10,6 @@ Name=badger 4 Greensleeves, Maro-Sorcerer|DMC|1 4 Harrow|C20|1 4 Nature's Lore|AFC|1 -4 Nimble Mongoose|MB1|1 +4 Nimble Mongoose|PLST|1 4 Prismatic Vista|MH1|1 4 Rysorian Badger|HML|1 diff --git a/forge-gui/res/adventure/common/decks/standard/beastmaster.dck b/forge-gui/res/adventure/common/decks/standard/beastmaster.dck index e2cb1fcb9c2..9136a90d7b6 100644 --- a/forge-gui/res/adventure/common/decks/standard/beastmaster.dck +++ b/forge-gui/res/adventure/common/decks/standard/beastmaster.dck @@ -2,7 +2,7 @@ Name=beastmaster [Main] 2 Abzan Beastmaster|FRF|1 -2 Ancient Brontodon|MB1|1 +2 Ancient Brontodon|PLST|1 2 Assault Formation|JMP|1 1 Aura Mutation|NCC|1 2 Captured by Lagacs|MH2|1 diff --git a/forge-gui/res/adventure/common/decks/standard/blackconstruct.dck b/forge-gui/res/adventure/common/decks/standard/blackconstruct.dck index 2ae5758c062..2f64af1754d 100644 --- a/forge-gui/res/adventure/common/decks/standard/blackconstruct.dck +++ b/forge-gui/res/adventure/common/decks/standard/blackconstruct.dck @@ -18,7 +18,7 @@ Name=blackconstruct 2 Noxious Gearhulk|KLD|1 2 Phyrexian Scriptures|DOM|1 1 Reaver Titan|40K|1 -2 Revel in Riches|MB1|1 +2 Revel in Riches|PLST|1 1 Salvage Titan|2XM|1 14 Swamp|MRD|3 1 Technomancer|40K|1 diff --git a/forge-gui/res/adventure/common/decks/standard/bluewizard_apprentice_1.dck b/forge-gui/res/adventure/common/decks/standard/bluewizard_apprentice_1.dck index caa8c774a9e..736cc7e12f4 100644 --- a/forge-gui/res/adventure/common/decks/standard/bluewizard_apprentice_1.dck +++ b/forge-gui/res/adventure/common/decks/standard/bluewizard_apprentice_1.dck @@ -11,7 +11,7 @@ Name=Adventure - Blue Apprentice 1 1 Field Research|ZNR|1 1 Frantic Search|DMR|2 1 Geology Enthusiast|BRO|1 -1 Glacial Crasher|MB1|1 +1 Glacial Crasher|PLST|1 22 Island|M13|1 1 Jace's Triumph|WAR|1 1 Ludevic's Test Subject|ISD|1 diff --git a/forge-gui/res/adventure/common/decks/standard/bluewizard_medium_mill.dck b/forge-gui/res/adventure/common/decks/standard/bluewizard_medium_mill.dck index 2b3062c64d0..22cd3088a91 100644 --- a/forge-gui/res/adventure/common/decks/standard/bluewizard_medium_mill.dck +++ b/forge-gui/res/adventure/common/decks/standard/bluewizard_medium_mill.dck @@ -16,7 +16,7 @@ Name=Mill 2 Manic Scribe|SOI|1 1 Memory Erosion|ALA|1 2 Merfolk Windrobber|ZNR|1 -2 Millstone|MB1|1 +2 Millstone|PLST|1 1 Mindscour Dragon|FRF|1 2 Overwhelmed Apprentice|ELD|1 1 Plated Seastrider|CNS|1 @@ -25,13 +25,13 @@ Name=Mill 1 Riptide Turtle|THB|1 2 Ruin Crab|ZNR|1 1 Sphinx Mindbreaker|THB|1 -1 Sphinx's Tutelage|MB1|1 +1 Sphinx's Tutelage|PLST|1 1 Startled Awake|SOI|1 1 Surge Mare|M19|1 1 Teferi's Tutelage|M21|1 1 Undead Alchemist|ISD|1 2 Wall of Air|10E|1 -1 Wall of Frost|MB1|1 +1 Wall of Frost|PLST|1 1 Wall of Mist|GRN|1 [Sideboard] [Schemes] diff --git a/forge-gui/res/adventure/common/decks/standard/bonedragon.dck b/forge-gui/res/adventure/common/decks/standard/bonedragon.dck index b040f957f70..e24989cd3b2 100644 --- a/forge-gui/res/adventure/common/decks/standard/bonedragon.dck +++ b/forge-gui/res/adventure/common/decks/standard/bonedragon.dck @@ -3,7 +3,7 @@ Name=bonedragon [Main] 1 Ancient Brass Dragon|CLB|1 1 Black Dragon|AFR|1 -1 Bladewing the Risen|MB1|1 +1 Bladewing the Risen|PLST|1 1 Bladewing, Deathless Tyrant|DMC|1 1 Bone Dragon|M19|1 1 Boneyard Parley|C19|1 diff --git a/forge-gui/res/adventure/common/decks/standard/bull.dck b/forge-gui/res/adventure/common/decks/standard/bull.dck index 2ce62e2352d..926a208bf59 100644 --- a/forge-gui/res/adventure/common/decks/standard/bull.dck +++ b/forge-gui/res/adventure/common/decks/standard/bull.dck @@ -3,7 +3,7 @@ Name=bull [Main] 4 Aurochs|ME2|1 4 Aurochs Herd|CSP|1 -4 Bartered Cow|MB1|1 +4 Bartered Cow|PLST|1 4 Bull Aurochs|CSP|1 4 Earth-Origin Yak|GS1|1 3 Forest|CST|1 diff --git a/forge-gui/res/adventure/common/decks/standard/cat_greenblack.dck b/forge-gui/res/adventure/common/decks/standard/cat_greenblack.dck index 9b3a9e03222..0309acee4ea 100644 --- a/forge-gui/res/adventure/common/decks/standard/cat_greenblack.dck +++ b/forge-gui/res/adventure/common/decks/standard/cat_greenblack.dck @@ -4,7 +4,7 @@ Name=cat_greenblack 4 Black Cat|J21|1 2 Deathreap Ritual|2XM|1 4 Dreadmalkin|WAR|1 -4 Echoing Decay|FMB1|1 +4 Echoing Decay|PLST|1 4 Feral Prowler|AKR|1 9 Forest|NEO|1 4 Hungry Lynx|C17|1 diff --git a/forge-gui/res/adventure/common/decks/standard/cat_greenwhite.dck b/forge-gui/res/adventure/common/decks/standard/cat_greenwhite.dck index dc3f8495df7..94b71e7c7cd 100644 --- a/forge-gui/res/adventure/common/decks/standard/cat_greenwhite.dck +++ b/forge-gui/res/adventure/common/decks/standard/cat_greenwhite.dck @@ -5,7 +5,7 @@ Name=cat_greenwhite 3 Attended Healer|ZNR|1 4 Charmed Stray|ANB|1 3 Chrome Cat|SNC|1 -4 Ephemerate|MB1|1 +4 Ephemerate|PLST|1 4 Feline Sovereign|M21|1 12 Forest|SNC|1 3 Generous Stray|ANB|1 diff --git a/forge-gui/res/adventure/common/decks/standard/cat_greenwhite2.dck b/forge-gui/res/adventure/common/decks/standard/cat_greenwhite2.dck index 571ea7c680d..4e8bef4c229 100644 --- a/forge-gui/res/adventure/common/decks/standard/cat_greenwhite2.dck +++ b/forge-gui/res/adventure/common/decks/standard/cat_greenwhite2.dck @@ -1,7 +1,7 @@ [metadata] Name=cat_greenwhite2 [Main] -4 Adorned Pouncer|MB1|1 +4 Adorned Pouncer|PLST|1 1 Colossification|IKO|1 3 Enlarge|2XM|1 4 Feral Invocation|JMP|1 diff --git a/forge-gui/res/adventure/common/decks/standard/cave_spider.dck b/forge-gui/res/adventure/common/decks/standard/cave_spider.dck index bff04c6d30b..7700ab27f0d 100644 --- a/forge-gui/res/adventure/common/decks/standard/cave_spider.dck +++ b/forge-gui/res/adventure/common/decks/standard/cave_spider.dck @@ -20,7 +20,7 @@ Name=cave_spider 1 Llanowar Greenwidow|DMU|1 2 Lolth, Spider Queen|AFR|1 1 Mountain|MH2|1 -2 Penumbra Spider|MB1|1 +2 Penumbra Spider|PLST|1 1 Spider Spawning|C15|1 2 Sporeweb Weaver|M21|1 1 Swamp|MH2|1 diff --git a/forge-gui/res/adventure/common/decks/standard/challenger_21_dimir_rogue.dck b/forge-gui/res/adventure/common/decks/standard/challenger_21_dimir_rogue.dck index 3238f4926eb..a62dd7ac825 100644 --- a/forge-gui/res/adventure/common/decks/standard/challenger_21_dimir_rogue.dck +++ b/forge-gui/res/adventure/common/decks/standard/challenger_21_dimir_rogue.dck @@ -3,7 +3,7 @@ Name=Challenger_21_Dimir_Rogue [Main] 2 Blackbloom Rogue|ZNR|1 2 Bloodchief's Thirst|ZNR|1 -4 Dismal Backwater|MB1|1 +4 Dismal Backwater|PLST|1 4 Drown in the Loch|ELD|1 2 Eliminate|M21|1 2 Heartless Act|IKO|1 diff --git a/forge-gui/res/adventure/common/decks/standard/cloudguard.dck b/forge-gui/res/adventure/common/decks/standard/cloudguard.dck index 0118eef5a57..3d63ff02ec7 100644 --- a/forge-gui/res/adventure/common/decks/standard/cloudguard.dck +++ b/forge-gui/res/adventure/common/decks/standard/cloudguard.dck @@ -41,4 +41,4 @@ Name=cloudguard 1 The Immortal Sun|RIX|1 4 Tundra|PRM|1 1 Wall of Omens|COM|1 -1 Wall of Omens|MB1|1 +1 Wall of Omens|PLST|1 diff --git a/forge-gui/res/adventure/common/decks/standard/crawler.dck b/forge-gui/res/adventure/common/decks/standard/crawler.dck index f56a1d4ba63..d0fc79291fd 100644 --- a/forge-gui/res/adventure/common/decks/standard/crawler.dck +++ b/forge-gui/res/adventure/common/decks/standard/crawler.dck @@ -11,7 +11,7 @@ Name=crawler 1 Hogaak, Arisen Necropolis|MH1|1 1 Izoni, Thousand-Eyed|GK1|1 2 Jarad, Golgari Lich Lord|C15|1 -2 Living Death|MB1|1 +2 Living Death|PLST|1 4 Llanowar Wastes|C19|1 2 Nyx Weaver|C20|1 2 Old Stickfingers|MID|1 @@ -19,7 +19,7 @@ Name=crawler 1 Palantír of Orthanc|LTR|1 2 Putrefy|GK1|1 2 Ravenous Chupacabra|CLB|1 -1 Sewer Nemesis|MB1|1 +1 Sewer Nemesis|PLST|1 2 Shambling Shell|GK1|1 2 Skull Prophet|J21|1 2 Squirming Emergence|LCI|1 diff --git a/forge-gui/res/adventure/common/decks/standard/cultist.dck b/forge-gui/res/adventure/common/decks/standard/cultist.dck index 2d00b17330e..b1ef6e81888 100644 --- a/forge-gui/res/adventure/common/decks/standard/cultist.dck +++ b/forge-gui/res/adventure/common/decks/standard/cultist.dck @@ -6,7 +6,7 @@ Name=cultist 2 Bloodsoaked Champion|NCC|1 2 Demon of Catastrophes|J22|1 1 Doomed Dissenter|BBD|1 -1 Doomed Dissenter|MB1|1 +1 Doomed Dissenter|PLST|1 2 Ecstatic Awakener|DBL|1 2 Ecstatic Awakener|MID|1 2 Feaster of Fools|MH1|1 diff --git a/forge-gui/res/adventure/common/decks/standard/cyclops.dck b/forge-gui/res/adventure/common/decks/standard/cyclops.dck index d0ef0a13628..c7e9436bf06 100644 --- a/forge-gui/res/adventure/common/decks/standard/cyclops.dck +++ b/forge-gui/res/adventure/common/decks/standard/cyclops.dck @@ -6,7 +6,7 @@ Name=cyclops 2 Careless Celebrant|THB|1 1 Chainwhip Cyclops|WAR|1 1 Cyclops Tyrant|M14|1 -1 Fall of the Hammer|MB1|1 +1 Fall of the Hammer|PLST|1 1 Flummoxed Cyclops|THB|1 1 Gluttonous Cyclops|JOU|1 1 Lightning Strike|AJMP|1 @@ -20,7 +20,7 @@ Name=cyclops 1 Phoenix of Ash|THB|1 1 Pinnacle of Rage|BNG|1 2 Piston-Fist Cyclops|GRN|1 -1 Quakefoot Cyclops|MB1|1 +1 Quakefoot Cyclops|PLST|1 1 Rage of Purphoros|THS|1 4 Rise to the Challenge|BNG|1 2 Satyr Rambler|THS|1 diff --git a/forge-gui/res/adventure/common/decks/standard/dark_spirit.dck b/forge-gui/res/adventure/common/decks/standard/dark_spirit.dck index 8a49cdd05e8..82531ca08e4 100644 --- a/forge-gui/res/adventure/common/decks/standard/dark_spirit.dck +++ b/forge-gui/res/adventure/common/decks/standard/dark_spirit.dck @@ -1,7 +1,7 @@ [metadata] Name=Spirit_Dark [Main] -4 Accursed Spirit|MB1|1 +4 Accursed Spirit|PLST|1 2 Consume Spirit|10E|1 2 Crypt Ghast|C14|1 2 Darkling Stalker|TMP|1 diff --git a/forge-gui/res/adventure/common/decks/standard/darkenchanter.dck b/forge-gui/res/adventure/common/decks/standard/darkenchanter.dck index 9c1ca69efce..b3c47a16292 100644 --- a/forge-gui/res/adventure/common/decks/standard/darkenchanter.dck +++ b/forge-gui/res/adventure/common/decks/standard/darkenchanter.dck @@ -15,7 +15,7 @@ Name=darkenchanter 4 Overgrown Tomb|SLD|1 1 Swamp|ELD|2 2 Swamp|ELD|4 -4 Trial of Ambition|MB1|1 +4 Trial of Ambition|PLST|1 4 Verdant Catacombs|SLU|1 3 Verduran Enchantress|SLD|1 4 Wild Growth|AFC|1 diff --git a/forge-gui/res/adventure/common/decks/standard/death_knight.dck b/forge-gui/res/adventure/common/decks/standard/death_knight.dck index f36e0741fd7..df83ee94bfe 100644 --- a/forge-gui/res/adventure/common/decks/standard/death_knight.dck +++ b/forge-gui/res/adventure/common/decks/standard/death_knight.dck @@ -6,7 +6,7 @@ Name=death_knight 1 Bloodcrazed Paladin|XLN|1 1 Cadaverous Knight|HOP|1 1 Cavalier of Night|M20|1 -1 Coat with Venom|MB1|1 +1 Coat with Venom|PLST|1 4 Corpse Churn|OGW|1 1 Deathless Ancient|XLN|1 1 Dread Rider|KHM|1 diff --git a/forge-gui/res/adventure/common/decks/standard/demonmonoblack.dck b/forge-gui/res/adventure/common/decks/standard/demonmonoblack.dck index 1f1c45fb1d0..60efc48e10e 100644 --- a/forge-gui/res/adventure/common/decks/standard/demonmonoblack.dck +++ b/forge-gui/res/adventure/common/decks/standard/demonmonoblack.dck @@ -3,7 +3,7 @@ Name=demonmonoblack [Main] 4 Daggerdrome Imp|BBD|1 3 Demon's Due|SNC|1 -2 Demon's Grasp|MB1|1 +2 Demon's Grasp|PLST|1 3 Demon's Horn|DVD|1 4 Indulgent Tormentor|IMA|1 4 Pilfering Imp|GRN|1 diff --git a/forge-gui/res/adventure/common/decks/standard/djinn_tarkir.dck b/forge-gui/res/adventure/common/decks/standard/djinn_tarkir.dck index c376a84cef3..83c2f532bf0 100644 --- a/forge-gui/res/adventure/common/decks/standard/djinn_tarkir.dck +++ b/forge-gui/res/adventure/common/decks/standard/djinn_tarkir.dck @@ -13,7 +13,7 @@ Name=djinn_tarkir 1 Master the Way|KTK|1 1 Mijae Djinn|ME4|1 2 Mistfire Weaver|KTK|1 -3 Monastery Loremaster|MB1|1 +3 Monastery Loremaster|PLST|1 1 Mountain|DTK|1 1 Mountain|DTK|2 1 Mountain|STX|2 diff --git a/forge-gui/res/adventure/common/decks/standard/dog_w_beginner.dck b/forge-gui/res/adventure/common/decks/standard/dog_w_beginner.dck index 002ef16ed36..def8ef34288 100644 --- a/forge-gui/res/adventure/common/decks/standard/dog_w_beginner.dck +++ b/forge-gui/res/adventure/common/decks/standard/dog_w_beginner.dck @@ -3,8 +3,8 @@ Name=Adventure - dog beginner [Main] 4 Alpine Watchdog|M21|1 4 Boros Mastiff|DGM|1 -4 Champion of Arashin|MB1|1 -4 Isamaru, Hound of Konda|FMB1|1 +4 Champion of Arashin|PLST|1 +4 Isamaru, Hound of Konda|PLST|1 24 Plains|M21|4 4 Potion of Healing|AFR|1 2 Rambunctious Mutt|M21|1 diff --git a/forge-gui/res/adventure/common/decks/standard/earth_elemental.dck b/forge-gui/res/adventure/common/decks/standard/earth_elemental.dck index f25011b9422..0fe01dff7da 100644 --- a/forge-gui/res/adventure/common/decks/standard/earth_elemental.dck +++ b/forge-gui/res/adventure/common/decks/standard/earth_elemental.dck @@ -14,7 +14,7 @@ Name=earth_elemental 2 Flamekin Village|CM2|1 2 Foundry Champion|GTC|1 4 Genasi Rabble-Rouser|HBG|1 -1 Miner's Bane|MB1|1 +1 Miner's Bane|PLST|1 6 Mountain|MOM|1 1 Mountain|MOM|2 4 Needle Spires|OGW|1 diff --git a/forge-gui/res/adventure/common/decks/standard/efreet.dck b/forge-gui/res/adventure/common/decks/standard/efreet.dck index ba1bd35af08..f845af2eb4f 100644 --- a/forge-gui/res/adventure/common/decks/standard/efreet.dck +++ b/forge-gui/res/adventure/common/decks/standard/efreet.dck @@ -32,7 +32,7 @@ Name=efreet 4 Swiftwater Cliffs|KTK|1 1 Veyran, Voice of Duality|C21|1 1 Volcanic Vision|DTK|1 -1 Wildfire Emissary|MB1|1 +1 Wildfire Emissary|PLST|1 1 Ydwen Efreet|ARN|1 1 Yusri, Fortune's Flame|MH2|1 [Sideboard] diff --git a/forge-gui/res/adventure/common/decks/standard/eldraine_faerie.dck b/forge-gui/res/adventure/common/decks/standard/eldraine_faerie.dck index 89125782bed..bae5804d14f 100644 --- a/forge-gui/res/adventure/common/decks/standard/eldraine_faerie.dck +++ b/forge-gui/res/adventure/common/decks/standard/eldraine_faerie.dck @@ -31,7 +31,7 @@ Name=eldraine_faerie 1 Oko, the Trickster|ELD|1 1 Return to Nature|ELD|1 1 Rosethorn Acolyte|ELD|1 -1 Rosethorn Halberd|MB1|1 +1 Rosethorn Halberd|PLST|1 1 So Tiny|ELD|1 1 Spinning Wheel|ELD|1 1 Stolen by the Fae|ELD|1 diff --git a/forge-gui/res/adventure/common/decks/standard/eldrazilarge.dck b/forge-gui/res/adventure/common/decks/standard/eldrazilarge.dck index 962f0045160..14303842957 100644 --- a/forge-gui/res/adventure/common/decks/standard/eldrazilarge.dck +++ b/forge-gui/res/adventure/common/decks/standard/eldrazilarge.dck @@ -22,7 +22,7 @@ Name=eldrazilarge 4 Reality Smasher|SLD|1 1 Rise of the Eldrazi|CMM|1 4 Thought-Knot Seer|PLIST|1 -4 Thran Dynamo|MB1|1 +4 Thran Dynamo|PLST|1 1 Ulamog, the Ceaseless Hunger|CMM|1 2 Ulamog, the Infinite Gyre|2X2|2 2 Void Winnower|BFZ|1 diff --git a/forge-gui/res/adventure/common/decks/standard/elemental_air.dck b/forge-gui/res/adventure/common/decks/standard/elemental_air.dck index dc20acb9ef6..f742e483fbf 100644 --- a/forge-gui/res/adventure/common/decks/standard/elemental_air.dck +++ b/forge-gui/res/adventure/common/decks/standard/elemental_air.dck @@ -8,7 +8,7 @@ Name=elemental_air 2 Cavalier of Gales|M20|1 2 Cloud Elemental|10E|1 3 Cloudkin Seer|M20|1 -3 Clutch of Currents|MB1|1 +3 Clutch of Currents|PLST|1 2 Frost Walker|F15|1 24 Island|M20|1 3 Mu Yanling, Sky Dancer|M20|1 diff --git a/forge-gui/res/adventure/common/decks/standard/elk.dck b/forge-gui/res/adventure/common/decks/standard/elk.dck index 447231f6ab6..e05f1bbd316 100644 --- a/forge-gui/res/adventure/common/decks/standard/elk.dck +++ b/forge-gui/res/adventure/common/decks/standard/elk.dck @@ -12,7 +12,7 @@ Name=elk 15 Forest|M20|3 1 Fully Grown|IKO|1 1 Gang of Elk|7ED|1 -4 Gift of Growth|MB1|1 +4 Gift of Growth|PLST|1 3 Golden Hind|JOU|1 1 Great Sable Stag|M10|1 2 Highland Game|M19|1 diff --git a/forge-gui/res/adventure/common/decks/standard/evilgoblin.dck b/forge-gui/res/adventure/common/decks/standard/evilgoblin.dck index 681324e2b80..67487e4b35f 100644 --- a/forge-gui/res/adventure/common/decks/standard/evilgoblin.dck +++ b/forge-gui/res/adventure/common/decks/standard/evilgoblin.dck @@ -5,7 +5,7 @@ Name=evilgoblin 2 Boggart Birth Rite|LRW|1 2 Canyon Slough|AKH|1 2 Dragonskull Summit|WHO|1 -2 Goblin Deathraiders|MB1|1 +2 Goblin Deathraiders|PLST|1 1 Goblin Offensive|HOP|1 1 Goblin Rabblemaster|PM15|1 2 Grenzo, Dungeon Warden|PLIST|1 diff --git a/forge-gui/res/adventure/common/decks/standard/eye.dck b/forge-gui/res/adventure/common/decks/standard/eye.dck index 6cc3cea25e3..a490360ed4f 100644 --- a/forge-gui/res/adventure/common/decks/standard/eye.dck +++ b/forge-gui/res/adventure/common/decks/standard/eye.dck @@ -12,4 +12,4 @@ Name=murder 4 Murder|CLB|1 5 Swamp|STX|1 15 Swamp|STX|2 -4 Tragic Slip|MB1|1 +4 Tragic Slip|PLST|1 diff --git a/forge-gui/res/adventure/common/decks/standard/fire_elemental.dck b/forge-gui/res/adventure/common/decks/standard/fire_elemental.dck index 5d3aa31b2b1..fa01a33a897 100644 --- a/forge-gui/res/adventure/common/decks/standard/fire_elemental.dck +++ b/forge-gui/res/adventure/common/decks/standard/fire_elemental.dck @@ -6,9 +6,9 @@ Name=fire_elemental 1 Bonfire of the Damned|MM3|1 1 Charging Cinderhorn|C16|1 1 Ember Swallower|THS|1 -1 Fervent Strike|MB1|1 -1 Fiery Hellhound|MB1|1 -1 Fire Elemental|MB1|1 +1 Fervent Strike|PLST|1 +1 Fiery Hellhound|PLST|1 +1 Fire Elemental|PLST|1 1 Fire Urchin|GRN|1 4 Flame Jet|UDS|1 1 Flame Wave|TPR|1 @@ -39,7 +39,7 @@ Name=fire_elemental 1 Rage Nimbus|ROE|1 1 Regathan Firecat|M14|1 1 Rekindling Phoenix|RIX|1 -1 Stigma Lasher|FMB1|1 +1 Stigma Lasher|PLST|1 1 Sunflare Shaman|MOR|1 1 Underworld Rage-Hound|THB|1 [Sideboard] diff --git a/forge-gui/res/adventure/common/decks/standard/firedragon.dck b/forge-gui/res/adventure/common/decks/standard/firedragon.dck index d29385e91fd..b77644cb397 100644 --- a/forge-gui/res/adventure/common/decks/standard/firedragon.dck +++ b/forge-gui/res/adventure/common/decks/standard/firedragon.dck @@ -16,7 +16,7 @@ Name=firedragon 2 Orb of Dragonkind|AFR|1 4 Scorching Dragonfire|AJMP|1 3 Shivan Dragon|30A|1 -2 Smelt|MB1|1 +2 Smelt|PLST|1 2 Themberchaud|SLD|1 2 Thunder Dragon|CLB|1 2 Wrathful Red Dragon|CLB|1 diff --git a/forge-gui/res/adventure/common/decks/standard/froghemoth.dck b/forge-gui/res/adventure/common/decks/standard/froghemoth.dck index 86c96a9fb76..26c2bfb804d 100644 --- a/forge-gui/res/adventure/common/decks/standard/froghemoth.dck +++ b/forge-gui/res/adventure/common/decks/standard/froghemoth.dck @@ -34,7 +34,7 @@ Name=froghemoth 1 Swamp|SIR|2 3 Swamp|SIR|3 2 Thalia and The Gitrog Monster|MOM|1 -2 The Gitrog Monster|MB1|1 +2 The Gitrog Monster|PLST|1 2 The Gitrog, Ravenous Ride|OTJ|1 4 Titania, Voice of Gaea|BRO|1 4 Verdant Catacombs|MM3|1 diff --git a/forge-gui/res/adventure/common/decks/standard/ghost_blue.dck b/forge-gui/res/adventure/common/decks/standard/ghost_blue.dck index 59a27444f3e..e2eea28e323 100644 --- a/forge-gui/res/adventure/common/decks/standard/ghost_blue.dck +++ b/forge-gui/res/adventure/common/decks/standard/ghost_blue.dck @@ -6,8 +6,8 @@ Name=Ghost Blue 2 Crippling Chill|MM3|1 2 Erdwal Illuminator|SOI|1 1 Essence Flux|JMP|1 -1 Fogwalker|MB1|1 -2 Grasp of Phantoms|MB1|1 +1 Fogwalker|PLST|1 +2 Grasp of Phantoms|PLST|1 1 Griptide|DDM|1 1 Island|AVR|1 2 Island|AVR|2 diff --git a/forge-gui/res/adventure/common/decks/standard/ghoulgravecrawler.dck b/forge-gui/res/adventure/common/decks/standard/ghoulgravecrawler.dck index d82abd62899..2ae686fa4dc 100644 --- a/forge-gui/res/adventure/common/decks/standard/ghoulgravecrawler.dck +++ b/forge-gui/res/adventure/common/decks/standard/ghoulgravecrawler.dck @@ -9,7 +9,7 @@ Name=ghoulgravecrawler 4 Ghoulish Procession|MID|1 1 Ghouls' Night Out|MIC|1 1 Gorex, the Tombshell|MIC|1 -4 Gravecrawler|MB1|1 +4 Gravecrawler|PLST|1 2 Graveyard Marshal|M19|1 1 Haunting Voyage|KHM|1 4 Jadar, Ghoulcaller of Nephalia|MID|1 diff --git a/forge-gui/res/adventure/common/decks/standard/giant_crab.dck b/forge-gui/res/adventure/common/decks/standard/giant_crab.dck index fc3fbf43c41..b3c43172138 100644 --- a/forge-gui/res/adventure/common/decks/standard/giant_crab.dck +++ b/forge-gui/res/adventure/common/decks/standard/giant_crab.dck @@ -8,7 +8,7 @@ Name=crab 4 Ice Tunnel|KHM|1 4 Iceberg Cancrix|MH1|1 4 Mesmeric Orb|2XM|1 -4 Purple-Crystal Crab|MB1|1 +4 Purple-Crystal Crab|PLST|1 4 Ruin Crab|ZNR|1 4 Shorecomber Crab|ANA|1 9 Snow-Covered Island|CSP|1 diff --git a/forge-gui/res/adventure/common/decks/standard/giralfgisa.dck b/forge-gui/res/adventure/common/decks/standard/giralfgisa.dck index 4e9c7da40b2..d5aa1858778 100644 --- a/forge-gui/res/adventure/common/decks/standard/giralfgisa.dck +++ b/forge-gui/res/adventure/common/decks/standard/giralfgisa.dck @@ -2,7 +2,7 @@ Name=giralfgisa [Main] 2 Agadeem's Awakening|ZNR|1 -3 Animate Dead|MB1|1 +3 Animate Dead|PLST|1 2 Crypt of Agadeem|C14|1 4 Dimir Aqueduct|CLU|1 2 Distant Melody|ZNC|1 diff --git a/forge-gui/res/adventure/common/decks/standard/gladiator.dck b/forge-gui/res/adventure/common/decks/standard/gladiator.dck index 03a6edc6f13..1fbddf38016 100644 --- a/forge-gui/res/adventure/common/decks/standard/gladiator.dck +++ b/forge-gui/res/adventure/common/decks/standard/gladiator.dck @@ -2,7 +2,7 @@ Name=gladiator [Main] 2 Bloodmark Mentor|DDG|1 -2 Boros Reckoner|MB1|1 +2 Boros Reckoner|PLST|1 1 Chandra, Awakened Inferno|M20|1 1 City on Fire|MOM|1 4 Cyclops Gladiator|M11|1 diff --git a/forge-gui/res/adventure/common/decks/standard/goblin_artificer.dck b/forge-gui/res/adventure/common/decks/standard/goblin_artificer.dck index b6efc95eff4..b86329b60f0 100644 --- a/forge-gui/res/adventure/common/decks/standard/goblin_artificer.dck +++ b/forge-gui/res/adventure/common/decks/standard/goblin_artificer.dck @@ -2,7 +2,7 @@ Name=goblin_artificer [Main] 3 Boompile|C16|1 -2 Coat of Arms|MB1|1 +2 Coat of Arms|PLST|1 4 Door of Destinies|C17|1 4 Goblin Influx Array|YDMU|1 4 Goblin Kaboomist|M15|1 diff --git a/forge-gui/res/adventure/common/decks/standard/goblin_chief_medium.dck b/forge-gui/res/adventure/common/decks/standard/goblin_chief_medium.dck index b3e2bbe7260..72582c8740d 100644 --- a/forge-gui/res/adventure/common/decks/standard/goblin_chief_medium.dck +++ b/forge-gui/res/adventure/common/decks/standard/goblin_chief_medium.dck @@ -6,7 +6,7 @@ Name=goblin_chief_medium 2 Conspicuous Snoop|M21|1 2 Den of the Bugbear|AFR|1 2 Foundry Street Denizen|M15|1 -2 Goblin Burrows|MB1|1 +2 Goblin Burrows|PLST|1 2 Goblin Chieftain|JMP|1 2 Goblin Goon|DDT|1 2 Goblin Influx Array|YDMU|1 diff --git a/forge-gui/res/adventure/common/decks/standard/goblin_warrior_easy.dck b/forge-gui/res/adventure/common/decks/standard/goblin_warrior_easy.dck index 9cc52ba15b2..61f846c317e 100644 --- a/forge-gui/res/adventure/common/decks/standard/goblin_warrior_easy.dck +++ b/forge-gui/res/adventure/common/decks/standard/goblin_warrior_easy.dck @@ -5,7 +5,7 @@ Name=goblin_warrior_easy 1 Battle Squadron|J22|1 2 Bloodmark Mentor|DDG|1 2 Crazed Goblin|DST|1 -3 Dragon Fodder|MB1|1 +3 Dragon Fodder|PLST|1 2 Goblin Assailant|WAR|1 2 Goblin Balloon Brigade|30A|1 2 Goblin Elite Infantry|10E|1 diff --git a/forge-gui/res/adventure/common/decks/standard/gorgon.dck b/forge-gui/res/adventure/common/decks/standard/gorgon.dck index 9f2010fd000..a8e05e560b1 100644 --- a/forge-gui/res/adventure/common/decks/standard/gorgon.dck +++ b/forge-gui/res/adventure/common/decks/standard/gorgon.dck @@ -35,7 +35,7 @@ Name=Gorgon 2 Swamp|RTR|3 1 Swamp|RTR|5 1 Visara the Dreadful|EMA|1 -3 Vraska's Finisher|MB1|1 +3 Vraska's Finisher|PLST|1 1 Vraska's Stoneglare|GRN|1 1 Vraska, Regal Gorgon|GRN|1 1 Wasteland Viper|GK2|1 diff --git a/forge-gui/res/adventure/common/decks/standard/gorilla.dck b/forge-gui/res/adventure/common/decks/standard/gorilla.dck index 63c937d9752..dc13d2051a5 100644 --- a/forge-gui/res/adventure/common/decks/standard/gorilla.dck +++ b/forge-gui/res/adventure/common/decks/standard/gorilla.dck @@ -10,7 +10,7 @@ Name=kogla 4 Gorilla Titan|ODY|1 3 Gorilla Warrior|POR|1 1 Grunn, the Lonely King|DOM|1 -1 Hooting Mandrills|MB1|1 +1 Hooting Mandrills|PLST|1 2 Kibo, Uktabi Prince|J22|1 4 Kird Ape|EMA|1 2 Kogla and Yidaro|MOM|1 diff --git a/forge-gui/res/adventure/common/decks/standard/hellhound.dck b/forge-gui/res/adventure/common/decks/standard/hellhound.dck index 12e0176b6de..03f4b97bc88 100644 --- a/forge-gui/res/adventure/common/decks/standard/hellhound.dck +++ b/forge-gui/res/adventure/common/decks/standard/hellhound.dck @@ -23,5 +23,5 @@ Name=hellhound 1 Underworld Cerberus|THS|1 4 Underworld Rage-Hound|THB|1 1 Valakut, the Molten Pinnacle|ZNE|1 -2 Volcanic Rush|MB1|1 +2 Volcanic Rush|PLST|1 2 Wildfire Cerberus|JOU|1 diff --git a/forge-gui/res/adventure/common/decks/standard/ice_elemental.dck b/forge-gui/res/adventure/common/decks/standard/ice_elemental.dck index b87c5690491..bc72b6114c9 100644 --- a/forge-gui/res/adventure/common/decks/standard/ice_elemental.dck +++ b/forge-gui/res/adventure/common/decks/standard/ice_elemental.dck @@ -7,7 +7,7 @@ Name=ice_elemental 2 Balduvian Conjurer|ME2|1 1 Berg Strider|J22|1 4 Blizzard Brawl|KHM|1 -2 Deep Freeze|MB1|1 +2 Deep Freeze|PLST|1 2 Embodiment of Spring|KTK|1 2 Frost Augur|KHM|1 4 Frost Raptor|CSP|1 diff --git a/forge-gui/res/adventure/common/decks/standard/illusion.dck b/forge-gui/res/adventure/common/decks/standard/illusion.dck index 812b8a555b9..bb40f3460e8 100644 --- a/forge-gui/res/adventure/common/decks/standard/illusion.dck +++ b/forge-gui/res/adventure/common/decks/standard/illusion.dck @@ -5,7 +5,7 @@ Name=illusion 1 Ephemeron|VMA|1 23 Island|KLD|3 4 Krovikan Mist|CSP|1 -2 Labyrinth Guardian|MB1|1 +2 Labyrinth Guardian|PLST|1 4 Lord of the Unreal|M12|1 2 Minn, Wily Illusionist|AFC|1 1 Mordenkainen|AFR|1 diff --git a/forge-gui/res/adventure/common/decks/standard/jackal.dck b/forge-gui/res/adventure/common/decks/standard/jackal.dck index c66445fca51..a8583a4ffed 100644 --- a/forge-gui/res/adventure/common/decks/standard/jackal.dck +++ b/forge-gui/res/adventure/common/decks/standard/jackal.dck @@ -20,12 +20,12 @@ Name=jackal 3 Mountain|AKR|2 1 Mountain|AKR|4 1 Mountain|AKR|7 -2 Nature's Claim|MB1|1 +2 Nature's Claim|PLST|1 3 Nimble-Blade Khenra|AKH|1 2 Rampant Growth|AFC|1 2 Resilient Khenra|AKR|1 1 Sheltered Thicket|AKH|1 -4 Shock|MB1|1 +4 Shock|PLST|1 2 Trueheart Twins|AKH|1 [Sideboard] [Schemes] diff --git a/forge-gui/res/adventure/common/decks/standard/jellyfish.dck b/forge-gui/res/adventure/common/decks/standard/jellyfish.dck index 636bb6ff667..6bb74b1ea41 100644 --- a/forge-gui/res/adventure/common/decks/standard/jellyfish.dck +++ b/forge-gui/res/adventure/common/decks/standard/jellyfish.dck @@ -8,7 +8,7 @@ Name=jellyfish 2 Forest|CM2|6 4 Glimmerbell|IKO|1 4 Gluntch, the Bestower|CLB|1 -4 Guard Gomazoa|MB1|1 +4 Guard Gomazoa|PLST|1 4 Hydroid Krasis|2X2|1 2 Island|CM2|1 2 Island|CM2|2 diff --git a/forge-gui/res/adventure/common/decks/standard/junddragon.dck b/forge-gui/res/adventure/common/decks/standard/junddragon.dck index 80697963522..62f1fd39e70 100644 --- a/forge-gui/res/adventure/common/decks/standard/junddragon.dck +++ b/forge-gui/res/adventure/common/decks/standard/junddragon.dck @@ -30,7 +30,7 @@ Name=junddragon 15 Mountain|AKH|1 4 Nature's Lore|DMR|1 2 Orb of Dragonkind|AFR|1 -2 Preyseizer Dragon|MB1|1 +2 Preyseizer Dragon|PLST|1 2 Prossh, Skyraider of Kher|PLIST|1 2 Rampant Growth|C15|1 2 Rampant Growth|C21|1 diff --git a/forge-gui/res/adventure/common/decks/standard/kor_warrior.dck b/forge-gui/res/adventure/common/decks/standard/kor_warrior.dck index f26b335e661..b1aa3c1a621 100644 --- a/forge-gui/res/adventure/common/decks/standard/kor_warrior.dck +++ b/forge-gui/res/adventure/common/decks/standard/kor_warrior.dck @@ -28,7 +28,7 @@ Name=Kor Warrior 3 Plains|ZNR|3 1 Plains|ZNR|4 1 Priest of Possibility|YDMU|1 -1 Retreat to Emeria|MB1|1 +1 Retreat to Emeria|PLST|1 4 Sacred Foundry|SLD|1 1 Seraphic Greatsword|CMR|1 1 Shadowspear|THB|1 diff --git a/forge-gui/res/adventure/common/decks/standard/lich.dck b/forge-gui/res/adventure/common/decks/standard/lich.dck index 1904a072d89..f758bd427da 100644 --- a/forge-gui/res/adventure/common/decks/standard/lich.dck +++ b/forge-gui/res/adventure/common/decks/standard/lich.dck @@ -2,7 +2,7 @@ Name=lich [Main] 1 Acererak the Archlich|AFR|1 -1 Blessing of Belzenlok|MB1|1 +1 Blessing of Belzenlok|PLST|1 1 Blighted Bat|AKR|1 1 Bone Dragon|M19|1 1 Calculating Lich|GN2|1 @@ -17,7 +17,7 @@ Name=lich 1 Highborn Ghoul|DKA|1 1 Josu Vess, Lich Knight|DOM|1 4 Lich's Caress|M19|1 -1 Lich's Mirror|FMB1|1 +1 Lich's Mirror|PLST|1 1 Lich's Tomb|DST|1 1 Lord of the Accursed|MIC|1 1 Malefic Scythe|M21|1 diff --git a/forge-gui/res/adventure/common/decks/standard/manticore.dck b/forge-gui/res/adventure/common/decks/standard/manticore.dck index 00bfd79b0da..681227c1857 100644 --- a/forge-gui/res/adventure/common/decks/standard/manticore.dck +++ b/forge-gui/res/adventure/common/decks/standard/manticore.dck @@ -12,6 +12,6 @@ Name=manticore 2 Mount Velus Manticore|MH2|1 23 Mountain|HOU|1 4 Ruby Medallion|CM2|1 -4 Shock|MB1|1 +4 Shock|PLST|1 [Sideboard] [Schemes] diff --git a/forge-gui/res/adventure/common/decks/standard/merfolk_elite.dck b/forge-gui/res/adventure/common/decks/standard/merfolk_elite.dck index ed80b00cfb6..9828ad92dc2 100644 --- a/forge-gui/res/adventure/common/decks/standard/merfolk_elite.dck +++ b/forge-gui/res/adventure/common/decks/standard/merfolk_elite.dck @@ -6,7 +6,7 @@ Name=merfolk_elite 4 Breeding Pool|RNA|1 2 Cold-Eyed Selkie|DDT|1 4 Cosi's Trickster|ZEN|1 -4 Crashing Tide|MB1|1 +4 Crashing Tide|PLST|1 1 Cryptolith Rite|SOI|1 2 Cultivate|PZ1|1 4 Deeproot Waters|XLN|1 diff --git a/forge-gui/res/adventure/common/decks/standard/mimic.dck b/forge-gui/res/adventure/common/decks/standard/mimic.dck index f4bc225bd46..2248b371263 100644 --- a/forge-gui/res/adventure/common/decks/standard/mimic.dck +++ b/forge-gui/res/adventure/common/decks/standard/mimic.dck @@ -9,7 +9,7 @@ Name=Mimic 1 Dralnu's Pet|PLS|1 1 Eldrazi Mimic|OGW|1 1 Escaped Shapeshifter|TMP|1 -1 Ghostly Changeling|MB1|1 +1 Ghostly Changeling|PLST|1 1 Glasspool Mimic|ZNR|1 1 Island|AFR|1 3 Island|AFR|2 diff --git a/forge-gui/res/adventure/common/decks/standard/mimic_multicolor.dck b/forge-gui/res/adventure/common/decks/standard/mimic_multicolor.dck index 855fd57dae9..ce1dedc51da 100644 --- a/forge-gui/res/adventure/common/decks/standard/mimic_multicolor.dck +++ b/forge-gui/res/adventure/common/decks/standard/mimic_multicolor.dck @@ -39,7 +39,7 @@ Name=Mimic_Multicolor 4 Shorecrasher Mimic|EVE|1 1 Spara's Headquarters|SNC|1 1 Stormcarved Coast|DBL|1 -1 Sultai Charm|MB1|1 +1 Sultai Charm|PLST|1 1 Sundown Pass|DBL|1 1 Temur Charm|KTK|1 4 Transguild Courier|DMC|1 diff --git a/forge-gui/res/adventure/common/decks/standard/minotaurblackredmadness.dck b/forge-gui/res/adventure/common/decks/standard/minotaurblackredmadness.dck index a13bfc27411..f56f8cda8a8 100644 --- a/forge-gui/res/adventure/common/decks/standard/minotaurblackredmadness.dck +++ b/forge-gui/res/adventure/common/decks/standard/minotaurblackredmadness.dck @@ -3,7 +3,7 @@ Name=minotaurblackredmadness [Main] 4 Bloodrage Brawler|JMP|1 4 Burning-Fist Minotaur|AKR|1 -4 Fiery Temper|MB1|1 +4 Fiery Temper|PLST|1 3 Font of Return|JOU|1 2 Glint-Horn Buccaneer|M20|1 4 Grisly Survivor|HOU|1 diff --git a/forge-gui/res/adventure/common/decks/standard/minotaurmonored.dck b/forge-gui/res/adventure/common/decks/standard/minotaurmonored.dck index a55a5e46abe..94effa429f2 100644 --- a/forge-gui/res/adventure/common/decks/standard/minotaurmonored.dck +++ b/forge-gui/res/adventure/common/decks/standard/minotaurmonored.dck @@ -2,7 +2,7 @@ Name=minotaurmonored [Main] 4 Anaba Ancestor|ME3|1 -2 Barrage of Boulders|MB1|1 +2 Barrage of Boulders|PLST|1 2 Fanatic of Mogis|AJMP|1 4 Felhide Spiritbinder|BNG|1 4 Furious Rise|M21|1 diff --git a/forge-gui/res/adventure/common/decks/standard/ooze_greenblackred.dck b/forge-gui/res/adventure/common/decks/standard/ooze_greenblackred.dck index 8e4c663d0fe..3def9f6d807 100644 --- a/forge-gui/res/adventure/common/decks/standard/ooze_greenblackred.dck +++ b/forge-gui/res/adventure/common/decks/standard/ooze_greenblackred.dck @@ -3,7 +3,7 @@ Name=ooze_greenblackred [Main] 3 Biogenic Ooze|RNA|1 4 Bloodhall Ooze|CFX|1 -4 Experiment One|MB1|1 +4 Experiment One|PLST|1 8 Forest|CLB|1 3 Gelatinous Cube|AFR|1 4 Gluttonous Slug|MH1|1 diff --git a/forge-gui/res/adventure/common/decks/standard/orc_brute.dck b/forge-gui/res/adventure/common/decks/standard/orc_brute.dck index 4ec04b429fa..e9897d4728f 100644 --- a/forge-gui/res/adventure/common/decks/standard/orc_brute.dck +++ b/forge-gui/res/adventure/common/decks/standard/orc_brute.dck @@ -1,7 +1,7 @@ [metadata] Name=orc_brute [Main] -2 Animate Dead|MB1|1 +2 Animate Dead|PLST|1 2 Badlands|OLGC|1 2 Blasphemous Act|LTC|1 4 Bloodstained Mire|KTK|1 diff --git a/forge-gui/res/adventure/common/decks/standard/phoenix.dck b/forge-gui/res/adventure/common/decks/standard/phoenix.dck index cc46f4b72cd..b077fe3895d 100644 --- a/forge-gui/res/adventure/common/decks/standard/phoenix.dck +++ b/forge-gui/res/adventure/common/decks/standard/phoenix.dck @@ -11,7 +11,7 @@ Name=Phoenix 2 Firestorm|WTH|1 2 Flame-Wreathed Phoenix|BNG|1 4 Flamewake Phoenix|FRF|1 -2 Impact Tremors|MB1|1 +2 Impact Tremors|PLST|1 4 Lightning Phoenix|JMP|1 4 Managorger Phoenix|J21|1 2 Molten Echoes|VOC|1 diff --git a/forge-gui/res/adventure/common/decks/standard/pirate_captain_2.dck b/forge-gui/res/adventure/common/decks/standard/pirate_captain_2.dck index 059aa3ae0bb..7451b0e0505 100644 --- a/forge-gui/res/adventure/common/decks/standard/pirate_captain_2.dck +++ b/forge-gui/res/adventure/common/decks/standard/pirate_captain_2.dck @@ -4,7 +4,7 @@ Name=Pirate Captain 2 1 Blood Money|CLB|2 2 Deadeye Tracker|XLN|1 4 Deadly Derision|MOM|1 -4 Desperate Castaways|MB1|1 +4 Desperate Castaways|PLST|1 2 Dire Fleet Hoarder|2XM|1 2 Dire Fleet Interloper|XLN|1 2 Dire Fleet Poisoner|J21|1 diff --git a/forge-gui/res/adventure/common/decks/standard/polarbear.dck b/forge-gui/res/adventure/common/decks/standard/polarbear.dck index 78ecc1241a1..a15341cff69 100644 --- a/forge-gui/res/adventure/common/decks/standard/polarbear.dck +++ b/forge-gui/res/adventure/common/decks/standard/polarbear.dck @@ -5,7 +5,7 @@ Name=polarbear 2 Ascendant Spirit|KHM|1 1 Blessing of Frost|KHM|1 3 Blizzard Brawl|KHM|1 -3 Boreal Druid|FMB1|1 +3 Boreal Druid|PLST|1 1 Boreal Shelf|CSP|1 2 Coldsteel Heart|CM2|1 1 Counterspell|SLD|1 diff --git a/forge-gui/res/adventure/common/decks/standard/rakdos_vamps.dck b/forge-gui/res/adventure/common/decks/standard/rakdos_vamps.dck index cae98572aee..d2f6366745d 100644 --- a/forge-gui/res/adventure/common/decks/standard/rakdos_vamps.dck +++ b/forge-gui/res/adventure/common/decks/standard/rakdos_vamps.dck @@ -18,7 +18,7 @@ Name=Rakdos Vamps 1 Kazarov, Sengir Pureblood|DOM|1 5 Mountain|MID|1 1 Mountain|MID|3 -4 Murderous Compulsion|MB1|1 +4 Murderous Compulsion|PLST|1 1 Olivia Voldaren|ISD|1 1 Olivia, Crimson Bride|VOW|1 1 Olivia, Mobilized for War|SOI|1 diff --git a/forge-gui/res/adventure/common/decks/standard/rat_leader.dck b/forge-gui/res/adventure/common/decks/standard/rat_leader.dck index bed3f87b9a5..c63e2b30dd5 100644 --- a/forge-gui/res/adventure/common/decks/standard/rat_leader.dck +++ b/forge-gui/res/adventure/common/decks/standard/rat_leader.dck @@ -19,7 +19,7 @@ Name=ratking 4 Swarm of Rats|9ED|1 4 Tangled Colony|WOE|1 4 Tribute to Horobi|NEO|1 -4 Typhoid Rats|MB1|1 +4 Typhoid Rats|PLST|1 4 Vanquisher's Banner|LTC|1 [Sideboard] [Schemes] diff --git a/forge-gui/res/adventure/common/decks/standard/rat_poisonrat.dck b/forge-gui/res/adventure/common/decks/standard/rat_poisonrat.dck index 7fe65ea7a8f..7956f2b4224 100644 --- a/forge-gui/res/adventure/common/decks/standard/rat_poisonrat.dck +++ b/forge-gui/res/adventure/common/decks/standard/rat_poisonrat.dck @@ -4,7 +4,7 @@ Name=rat_poisonrat 4 Blightbelly Rat|ONE|1 1 Drainpipe Vermin|JMP|1 4 Drown in Ichor|ONE|1 -2 Grim Affliction|MB1|1 +2 Grim Affliction|PLST|1 2 Gulping Scraptrap|ONE|1 4 Ichor Rats|ONC|1 3 Karumonix, the Rat King|ONE|1 diff --git a/forge-gui/res/adventure/common/decks/standard/reanimator.dck b/forge-gui/res/adventure/common/decks/standard/reanimator.dck index 0bc4fa3a295..798c8beb00b 100644 --- a/forge-gui/res/adventure/common/decks/standard/reanimator.dck +++ b/forge-gui/res/adventure/common/decks/standard/reanimator.dck @@ -7,7 +7,7 @@ Name=reanimator 2 Balefire Dragon|UMA|1 1 Bladewing, Deathless Tyrant|DMC|1 1 Cavalier of Night|M20|1 -3 Coldsteel Heart|MB1|1 +3 Coldsteel Heart|PLST|1 1 Cunning Lethemancer|ALA|1 2 Delirium Skeins|MM3|1 1 Etali, Primal Conqueror|MOM|1 diff --git a/forge-gui/res/adventure/common/decks/standard/reassemblingskeleton.dck b/forge-gui/res/adventure/common/decks/standard/reassemblingskeleton.dck index e98f1b104e4..b6f7895b4ff 100644 --- a/forge-gui/res/adventure/common/decks/standard/reassemblingskeleton.dck +++ b/forge-gui/res/adventure/common/decks/standard/reassemblingskeleton.dck @@ -10,7 +10,7 @@ Name=reassemblingskeleton 2 Funeral Rites|THB|1 4 Gutterbones|RNA|1 4 Persistent Specimen|VOW|1 -4 Reassembling Skeleton|MB1|1 +4 Reassembling Skeleton|PLST|1 4 Sanitarium Skeleton|JMP|1 8 Swamp|MH2|1 12 Swamp|MH2|2 diff --git a/forge-gui/res/adventure/common/decks/standard/redwizard_easy_2.dck b/forge-gui/res/adventure/common/decks/standard/redwizard_easy_2.dck index 34d71ddbb76..cdc7de0cecb 100644 --- a/forge-gui/res/adventure/common/decks/standard/redwizard_easy_2.dck +++ b/forge-gui/res/adventure/common/decks/standard/redwizard_easy_2.dck @@ -8,7 +8,7 @@ Name=Adventure - Apprentice Red 2 4 Destructive Digger|M20|1 4 Dismissive Pyromancer|M19|1 2 Dreadhorde Twins|WAR|1 -4 Kird Ape|MB1|1 +4 Kird Ape|PLST|1 4 Lavastep Raider|J22|1 25 Mountain|AVR|1 1 Mycosynth Lattice|P23|1 diff --git a/forge-gui/res/adventure/common/decks/standard/redwizard_hard_lavaaxe.dck b/forge-gui/res/adventure/common/decks/standard/redwizard_hard_lavaaxe.dck index b29b50ff90b..50afba95c64 100644 --- a/forge-gui/res/adventure/common/decks/standard/redwizard_hard_lavaaxe.dck +++ b/forge-gui/res/adventure/common/decks/standard/redwizard_hard_lavaaxe.dck @@ -17,7 +17,7 @@ Name=lava_axe 1 Mountain|SOM|3 4 Mountain|SOM|4 4 Sarkhan's Catharsis|WAR|1 -1 Urza's Rage|MB1|1 +1 Urza's Rage|PLST|1 4 Volt Charge|DDL|1 2 Wall of Granite|POR|1 2 Wall of Heat|LEG|1 diff --git a/forge-gui/res/adventure/common/decks/standard/redwizard_medium_hasteburn.dck b/forge-gui/res/adventure/common/decks/standard/redwizard_medium_hasteburn.dck index 24e48c89028..d5fc4219b9e 100644 --- a/forge-gui/res/adventure/common/decks/standard/redwizard_medium_hasteburn.dck +++ b/forge-gui/res/adventure/common/decks/standard/redwizard_medium_hasteburn.dck @@ -10,8 +10,8 @@ Name=haste_burn 2 Brute Force|TSR|1 2 Burst Lightning|ZEN|1 2 Ember-Eye Wolf|SOI|1 -2 Fervent Strike|MB1|1 -2 Firebolt|MB1|1 +2 Fervent Strike|PLST|1 +2 Firebolt|PLST|1 3 Flame Slash|CN2|1 1 Goblin Guide|ZEN|1 1 Hall Monitor|STX|1 diff --git a/forge-gui/res/adventure/common/decks/standard/roshnakhtheroic.dck b/forge-gui/res/adventure/common/decks/standard/roshnakhtheroic.dck index 9677a317db1..793ffeb7b43 100644 --- a/forge-gui/res/adventure/common/decks/standard/roshnakhtheroic.dck +++ b/forge-gui/res/adventure/common/decks/standard/roshnakhtheroic.dck @@ -9,7 +9,7 @@ Name=roshnakht_heroic 4 Dragon Mantle|CMR|1 4 Expedite|OGW|1 1 Kher Keep|TSR|1 -2 Madcap Skills|MB1|1 +2 Madcap Skills|PLST|1 2 Mob Mentality|VIS|1 16 Mountain|DMU|4 4 Raze the Effigy|MID|1 diff --git a/forge-gui/res/adventure/common/decks/standard/runelord.dck b/forge-gui/res/adventure/common/decks/standard/runelord.dck index 2da7cc5bb35..eba814106e9 100644 --- a/forge-gui/res/adventure/common/decks/standard/runelord.dck +++ b/forge-gui/res/adventure/common/decks/standard/runelord.dck @@ -22,4 +22,4 @@ Name=runelord 4 Seaside Citadel|CMA|1 4 Spara's Headquarters|SNC|1 2 Sunpetal Grove|XLN|1 -4 Wild Growth|MB1|1 +4 Wild Growth|PLST|1 diff --git a/forge-gui/res/adventure/common/decks/standard/sandwurm.dck b/forge-gui/res/adventure/common/decks/standard/sandwurm.dck index 074bdb1e8eb..ce8d92c0899 100644 --- a/forge-gui/res/adventure/common/decks/standard/sandwurm.dck +++ b/forge-gui/res/adventure/common/decks/standard/sandwurm.dck @@ -1,7 +1,7 @@ [metadata] Name=sandwurm [Main] -4 Beneath the Sands|MB1|1 +4 Beneath the Sands|PLST|1 4 Dirtcowl Wurm|TMP|1 7 Forest|IKO|1 8 Forest|IKO|2 diff --git a/forge-gui/res/adventure/common/decks/standard/scarab.dck b/forge-gui/res/adventure/common/decks/standard/scarab.dck index 833dbc211cc..8103b0e2fce 100644 --- a/forge-gui/res/adventure/common/decks/standard/scarab.dck +++ b/forge-gui/res/adventure/common/decks/standard/scarab.dck @@ -3,7 +3,7 @@ Name=scarab [Main] 2 Blightbeetle|M20|1 2 Canoptek Scarab Swarm|40K|1 -4 Dune Beetle|MB1|1 +4 Dune Beetle|PLST|1 2 Midnight Banshee|MM2|1 4 Mortician Beetle|MM3|1 2 Necroskitter|MM2|1 diff --git a/forge-gui/res/adventure/common/decks/standard/sea_monster.dck b/forge-gui/res/adventure/common/decks/standard/sea_monster.dck index ed9a9311afc..46ff924d66e 100644 --- a/forge-gui/res/adventure/common/decks/standard/sea_monster.dck +++ b/forge-gui/res/adventure/common/decks/standard/sea_monster.dck @@ -3,12 +3,12 @@ Name=sea_monster [Main] 1 Aquatic Incursion|RIX|1 2 Biolume Egg|VOW|1 -1 Caller of Gales|MB1|1 +1 Caller of Gales|PLST|1 1 Charix, the Raging Isle|ZNR|1 1 Consuming Tide|VOW|1 1 Coral Commando|RNA|1 1 Coralhelm Commander|ROE|1 -1 Coralhelm Guide|MB1|1 +1 Coralhelm Guide|PLST|1 1 Deeproot Waters|XLN|1 2 Dive Down|XLN|1 1 Giant Octopus|9ED|1 diff --git a/forge-gui/res/adventure/common/decks/standard/skeleton_champion.dck b/forge-gui/res/adventure/common/decks/standard/skeleton_champion.dck index c8e255656c6..4b0448adf8b 100644 --- a/forge-gui/res/adventure/common/decks/standard/skeleton_champion.dck +++ b/forge-gui/res/adventure/common/decks/standard/skeleton_champion.dck @@ -11,7 +11,7 @@ Name=Skeleton_Champion 2 Death-Priest of Myrkul|AFR|1 3 Drain Life|5ED|1 4 Gutterbones|RNA|1 -1 Hot Soup|MB1|1 +1 Hot Soup|PLST|1 4 Leechridden Swamp|J22|1 1 Malefic Scythe|M21|1 4 Metallic Mimic|KLR|1 diff --git a/forge-gui/res/adventure/common/decks/standard/sliver_black.dck b/forge-gui/res/adventure/common/decks/standard/sliver_black.dck index 22d3e71b6f4..00798f55f1c 100644 --- a/forge-gui/res/adventure/common/decks/standard/sliver_black.dck +++ b/forge-gui/res/adventure/common/decks/standard/sliver_black.dck @@ -30,5 +30,5 @@ Name=Black Sliver 1 Swamp|TPR|3 4 Syphon Sliver|M14|1 2 Thorncaster Sliver|M14|1 -3 Toxin Sliver|MB1|1 +3 Toxin Sliver|PLST|1 [Sideboard] diff --git a/forge-gui/res/adventure/common/decks/standard/sliver_blue.dck b/forge-gui/res/adventure/common/decks/standard/sliver_blue.dck index 19a275ed527..1ffcd7ce053 100644 --- a/forge-gui/res/adventure/common/decks/standard/sliver_blue.dck +++ b/forge-gui/res/adventure/common/decks/standard/sliver_blue.dck @@ -8,7 +8,7 @@ Name=Sliver_Blue 4 Diffusion Sliver|M15|1 4 Equilibrium|EXO|1 2 Hibernation Sliver|STH|1 -4 Intruder Alarm|FMB1|1 +4 Intruder Alarm|PLST|1 3 Island|M15|1 1 Island|M15|2 1 Island|M15|3 diff --git a/forge-gui/res/adventure/common/decks/standard/sliver_green.dck b/forge-gui/res/adventure/common/decks/standard/sliver_green.dck index 74ca32d2e95..b5fc30309f8 100644 --- a/forge-gui/res/adventure/common/decks/standard/sliver_green.dck +++ b/forge-gui/res/adventure/common/decks/standard/sliver_green.dck @@ -7,7 +7,7 @@ Name=Sliver_Green 1 Constricting Sliver|M15|1 2 Essence Sliver|SLD|1 4 Gemhide Sliver|TSR|1 -4 Harmonic Sliver|FMB1|1 +4 Harmonic Sliver|PLST|1 2 Homing Sliver|TSR|1 4 Manaweft Sliver|M14|1 4 Muscle Sliver|TPR|1 diff --git a/forge-gui/res/adventure/common/decks/standard/sliver_metallicsliver.dck b/forge-gui/res/adventure/common/decks/standard/sliver_metallicsliver.dck index 1184abd4e6c..f23ceaef219 100644 --- a/forge-gui/res/adventure/common/decks/standard/sliver_metallicsliver.dck +++ b/forge-gui/res/adventure/common/decks/standard/sliver_metallicsliver.dck @@ -2,10 +2,10 @@ Name=metallic sliver [Main] 3 Adaptive Automaton|2XM|1 -2 All Is Dust|MB1|1 +2 All Is Dust|PLST|1 2 Bloodline Pretender|J22|1 3 Coalition Construct|YDMU|1 -2 Coat of Arms|MB1|1 +2 Coat of Arms|PLST|1 2 Faceless Agent|J21|1 1 Heirloom Blade|C17|1 4 Metallic Mimic|AER|1 diff --git a/forge-gui/res/adventure/common/decks/standard/snake.dck b/forge-gui/res/adventure/common/decks/standard/snake.dck index 43b8342975e..efdf9a1fe0d 100644 --- a/forge-gui/res/adventure/common/decks/standard/snake.dck +++ b/forge-gui/res/adventure/common/decks/standard/snake.dck @@ -21,7 +21,7 @@ Name=snake 1 Jewel-Eyed Cobra|MH2|1 1 Jungle Hollow|FRF|1 1 Jungle Hollow|IKO|1 -1 Jungle Hollow|MB1|1 +1 Jungle Hollow|PLST|1 1 Moss Viper|THB|1 1 Necrobite|AVR|1 1 Nemesis of Mortals|THS|1 diff --git a/forge-gui/res/adventure/common/decks/standard/spider_token.dck b/forge-gui/res/adventure/common/decks/standard/spider_token.dck index 091e691a2b0..f389dbb4de1 100644 --- a/forge-gui/res/adventure/common/decks/standard/spider_token.dck +++ b/forge-gui/res/adventure/common/decks/standard/spider_token.dck @@ -4,10 +4,10 @@ Name=Spider Token 1 Aquastrand Spider|MM2|1 1 Arachnogenesis|C15|1 2 Arachnus Spinner|MM3|1 -4 Arachnus Web|MB1|1 +4 Arachnus Web|PLST|1 1 Arasta of the Endless Web|THB|1 2 Brood Weaver|MID|1 -1 Canopy Spider|MB1|1 +1 Canopy Spider|PLST|1 1 Chainweb Aracnir|THB|1 1 Curse of Clinging Webs|MIC|1 2 Deadly Recluse|DDL|1 diff --git a/forge-gui/res/adventure/common/decks/standard/straycat.dck b/forge-gui/res/adventure/common/decks/standard/straycat.dck index a11c81ea6da..9dc8b944c33 100644 --- a/forge-gui/res/adventure/common/decks/standard/straycat.dck +++ b/forge-gui/res/adventure/common/decks/standard/straycat.dck @@ -1,7 +1,7 @@ [metadata] Name=straycat [Main] -4 Adorned Pouncer|MB1|1 +4 Adorned Pouncer|PLST|1 4 Charmed Stray|WAR|1 4 Condemn|C17|1 4 Garrison Cat|IKO|1 diff --git a/forge-gui/res/adventure/common/decks/standard/sun titan.dck b/forge-gui/res/adventure/common/decks/standard/sun titan.dck index f63eba30133..652d7562afa 100644 --- a/forge-gui/res/adventure/common/decks/standard/sun titan.dck +++ b/forge-gui/res/adventure/common/decks/standard/sun titan.dck @@ -1,7 +1,7 @@ [metadata] Name=sun titan [Main] -4 Bulwark Giant|MB1|1 +4 Bulwark Giant|PLST|1 4 Caravan Hurda|ZEN|1 4 Goliath Paladin|CLB|1 4 Hundred-Handed One|CN2|1 diff --git a/forge-gui/res/adventure/common/decks/standard/tiger.dck b/forge-gui/res/adventure/common/decks/standard/tiger.dck index 0e1c1ccf995..433dd8ab622 100644 --- a/forge-gui/res/adventure/common/decks/standard/tiger.dck +++ b/forge-gui/res/adventure/common/decks/standard/tiger.dck @@ -6,7 +6,7 @@ Name=tiger 12 Forest|M21|1 5 Forest|M21|2 7 Forest|M21|3 -3 Giant Growth|MB1|1 +3 Giant Growth|PLST|1 2 Giant Regrowth|YSNC|1 4 Keeper of Fables|ELD|1 4 Prey Upon|J22|1 diff --git a/forge-gui/res/adventure/common/decks/standard/unholyknight.dck b/forge-gui/res/adventure/common/decks/standard/unholyknight.dck index d6213df1744..056c034355c 100644 --- a/forge-gui/res/adventure/common/decks/standard/unholyknight.dck +++ b/forge-gui/res/adventure/common/decks/standard/unholyknight.dck @@ -30,7 +30,7 @@ Name=unholyknight 1 Rankle, Pitiless Trickster|YOTJ|1 35 Swamp|DMU|4 1 The Immortal Sun|RIX|1 -4 Wrench Mind|MB1|1 +4 Wrench Mind|PLST|1 1 Yahenni's Expertise|PAER|1 [Sideboard] [Schemes] diff --git a/forge-gui/res/adventure/common/decks/standard/vampire_monob.dck b/forge-gui/res/adventure/common/decks/standard/vampire_monob.dck index df578d3e6bf..02e4165aa3c 100644 --- a/forge-gui/res/adventure/common/decks/standard/vampire_monob.dck +++ b/forge-gui/res/adventure/common/decks/standard/vampire_monob.dck @@ -27,7 +27,7 @@ Name=vampire_monob 1 Timothar, Baron of Bats|VOC|1 4 Urge to Feed|E02|1 4 Vampire Lacerator|MM2|1 -4 Vampire Nighthawk|MB1|1 +4 Vampire Nighthawk|PLST|1 4 Vampire Nocturnus|M10|1 1 Vengeant Vampire|G18|1 4 Vicious Conquistador|XLN|1 diff --git a/forge-gui/res/adventure/common/decks/standard/viashino.dck b/forge-gui/res/adventure/common/decks/standard/viashino.dck index 92435e7708b..b1034de22e9 100644 --- a/forge-gui/res/adventure/common/decks/standard/viashino.dck +++ b/forge-gui/res/adventure/common/decks/standard/viashino.dck @@ -26,7 +26,7 @@ Name=viashino 1 Mountain|DOM|2 1 Mountain|DOM|3 3 Mountain|RNA|1 -1 Naturalize|MB1|1 +1 Naturalize|PLST|1 1 Obelisk of Jund|C13|1 1 Predatory Advantage|ARB|1 2 Rubblebelt Runner|RNA|1 @@ -41,7 +41,7 @@ Name=viashino 4 Viashino Pyromancer|M19|1 2 Viashino Sandscout|10E|1 1 Viashino Sandsprinter|MH1|1 -1 Viashino Sandstalker|MB1|1 +1 Viashino Sandstalker|PLST|1 1 Viashino Slasher|RAV|1 4 Viashino Slaughtermaster|MM2|1 1 Woodland Cemetery|DOM|1 diff --git a/forge-gui/res/adventure/common/decks/standard/wanderinggiant.dck b/forge-gui/res/adventure/common/decks/standard/wanderinggiant.dck index 96c6c79d95e..170b6533599 100644 --- a/forge-gui/res/adventure/common/decks/standard/wanderinggiant.dck +++ b/forge-gui/res/adventure/common/decks/standard/wanderinggiant.dck @@ -7,7 +7,7 @@ Name=wanderinggiant 3 Crush Underfoot|LRW|1 2 Desolation Giant|CM2|1 1 Fire Giant's Fury|KHM|1 -4 Hammer Dropper|MB1|1 +4 Hammer Dropper|PLST|1 4 Hill Giant|10E|1 4 Hundred-Handed One|THS|1 2 Lowland Giant|TPR|1 diff --git a/forge-gui/res/adventure/common/decks/standard/water_elemental.dck b/forge-gui/res/adventure/common/decks/standard/water_elemental.dck index f88e7037e06..1a168be3951 100644 --- a/forge-gui/res/adventure/common/decks/standard/water_elemental.dck +++ b/forge-gui/res/adventure/common/decks/standard/water_elemental.dck @@ -7,7 +7,7 @@ Name=water_elemental 1 Boreal Elemental|M20|1 1 Brine Elemental|TSP|1 2 Cavalier of Gales|M20|1 -3 Cloudkin Seer|MB1|1 +3 Cloudkin Seer|PLST|1 4 Floodhound|J22|1 3 Glimmerbell|IKO|1 23 Island|BRO|4 @@ -20,4 +20,4 @@ Name=water_elemental 2 Water Elemental|30A|1 2 Water Servant|M14|1 2 Water Weird|HBG|1 -1 Watercourser|MB1|1 +1 Watercourser|PLST|1 diff --git a/forge-gui/res/adventure/common/decks/standard/yeti.dck b/forge-gui/res/adventure/common/decks/standard/yeti.dck index 44c541f36fe..10d93041f79 100644 --- a/forge-gui/res/adventure/common/decks/standard/yeti.dck +++ b/forge-gui/res/adventure/common/decks/standard/yeti.dck @@ -33,7 +33,7 @@ Name=Yeti 2 Snow-Covered Mountain|KHM|2 1 Snow-Covered Mountain|MH1|1 1 Snow-Covered Mountain|SLD|1 -1 Summit Prowler|MB1|1 +1 Summit Prowler|PLST|1 1 Tundra Fumarole|KHM|1 4 Volatile Fjord|KHM|1 1 Wiitigo|ME2|1 diff --git a/forge-gui/res/adventure/common/decks/standard/zombie_black_easy.dck b/forge-gui/res/adventure/common/decks/standard/zombie_black_easy.dck index efd7b480528..60b75c0329b 100644 --- a/forge-gui/res/adventure/common/decks/standard/zombie_black_easy.dck +++ b/forge-gui/res/adventure/common/decks/standard/zombie_black_easy.dck @@ -21,7 +21,7 @@ Name=zombie_easy 2 Vile Rebirth|M13|1 1 Vogar, Necropolis Tyrant|GN3|1 2 Walking Corpse|M15|1 -2 Wight of Precinct Six|MB1|1 +2 Wight of Precinct Six|PLST|1 2 Zombie Goliath|M12|1 [Sideboard] [Schemes] diff --git a/forge-gui/res/adventure/common/decks/starter/Adventure - Low Black.dck b/forge-gui/res/adventure/common/decks/starter/Adventure - Low Black.dck index 39319cfbd01..3b07c287f88 100644 --- a/forge-gui/res/adventure/common/decks/starter/Adventure - Low Black.dck +++ b/forge-gui/res/adventure/common/decks/starter/Adventure - Low Black.dck @@ -3,7 +3,7 @@ Name=Adventure - Low Black [Avatar] [Main] -1 Animate Dead|MB1|1 +1 Animate Dead|PLST|1 1 Archfiend of Depravity|E01|1 1 Banewhip Punisher|HOU|1 2 Cartouche of Ambition|AKR|1 diff --git a/forge-gui/res/adventure/common/decks/starter/Adventure - Low Dimir.dck b/forge-gui/res/adventure/common/decks/starter/Adventure - Low Dimir.dck index ceae01e4d2f..09231cfe35d 100644 --- a/forge-gui/res/adventure/common/decks/starter/Adventure - Low Dimir.dck +++ b/forge-gui/res/adventure/common/decks/starter/Adventure - Low Dimir.dck @@ -3,14 +3,14 @@ Name=Adventure - Low Dimir [Avatar] [Main] -1 Animate Dead|MB1|1 +1 Animate Dead|PLST|1 2 Blink of an Eye|DOM|1 2 Chainer's Edict|VMA|1 2 Deathcult Rogue|GTC|1 1 Halo Forager|MOM|1 2 Dimir Locket|GRN|1 2 Gravelgill Duo|SHM|1 -2 Hideous End|MB1|1 +2 Hideous End|PLST|1 2 Infiltrate|NMS|1 1 Inkfathom Infiltrator|SHM|1 7 Island|GK1|1 diff --git a/forge-gui/res/adventure/common/decks/starter/Adventure - Low Golgari.dck b/forge-gui/res/adventure/common/decks/starter/Adventure - Low Golgari.dck index 1f76f0ef502..aa264072bfc 100644 --- a/forge-gui/res/adventure/common/decks/starter/Adventure - Low Golgari.dck +++ b/forge-gui/res/adventure/common/decks/starter/Adventure - Low Golgari.dck @@ -11,7 +11,7 @@ Name=Adventure - Low Golgari 1 Ghost-Lit Stalker|DDD|1 2 Golgari Locket|GRN|1 2 Headless Specter|MH1|1 -2 Hideous End|MB1|1 +2 Hideous End|PLST|1 2 Ivy Lane Denizen|GTC|1 1 Liliana's Caress|M11|1 2 Mind Drain|ZNR|1 diff --git a/forge-gui/res/adventure/common/decks/starter/Adventure - Low Orzhov.dck b/forge-gui/res/adventure/common/decks/starter/Adventure - Low Orzhov.dck index ed4dcdf9b79..e6913431a69 100644 --- a/forge-gui/res/adventure/common/decks/starter/Adventure - Low Orzhov.dck +++ b/forge-gui/res/adventure/common/decks/starter/Adventure - Low Orzhov.dck @@ -9,7 +9,7 @@ Name=Adventure - Low Orzhov 1 Faith Unbroken|CMR|1 4 Forsaken Sanctuary|M19|1 2 Herald of Hadar|AFR|1 -2 Hideous End|MB1|1 +2 Hideous End|PLST|1 2 Marauding Blight-Priest|ZNR|1 1 Obzedat, Ghost Council|MM3|1 1 Okiba Reckoner Raid|NEO|1 diff --git a/forge-gui/res/adventure/common/decks/starter/Adventure - Low Rakdos.dck b/forge-gui/res/adventure/common/decks/starter/Adventure - Low Rakdos.dck index 4ef1c845620..4053e584368 100644 --- a/forge-gui/res/adventure/common/decks/starter/Adventure - Low Rakdos.dck +++ b/forge-gui/res/adventure/common/decks/starter/Adventure - Low Rakdos.dck @@ -7,7 +7,7 @@ Name=Adventure - Low Rakdos 1 Falkenrath Exterminator|AVR|1 1 Florian, Voldaren Scion|MID|1 2 Gift of Fangs|VOW|1 -2 Hideous End|MB1|1 +2 Hideous End|PLST|1 1 Hungry for More|MID|1 2 Mark of the Vampire|M13|1 2 Midnight Assassin|SNC|1 diff --git a/forge-gui/res/adventure/common/decks/starter/Adventure - Low Red.dck b/forge-gui/res/adventure/common/decks/starter/Adventure - Low Red.dck index c620f36338a..2ddb409e4ad 100644 --- a/forge-gui/res/adventure/common/decks/starter/Adventure - Low Red.dck +++ b/forge-gui/res/adventure/common/decks/starter/Adventure - Low Red.dck @@ -5,7 +5,7 @@ Name=Adventure - Low Red [Main] 10 Dragon's Approach|STX|1 1 Fire Servant|M11|1 -1 Guttersnipe|MB1|1 +1 Guttersnipe|PLST|1 2 Kiln Fiend|IMA|1 17 Mountain|GK2|2 2 Pyre Hound|A25|1 @@ -14,7 +14,7 @@ Name=Adventure - Low Red 1 Syr Carah, the Bold|ELD|1 2 Thermo-Alchemist|EMN|1 1 Voltaic Visionary|VOW|1 -1 Young Pyromancer|MB1|1 +1 Young Pyromancer|PLST|1 [Sideboard] [Planes] diff --git a/forge-gui/res/adventure/common/decks/starter/Adventure - Low Selesnya.dck b/forge-gui/res/adventure/common/decks/starter/Adventure - Low Selesnya.dck index ac4a51f0ee3..f0880e6a56e 100644 --- a/forge-gui/res/adventure/common/decks/starter/Adventure - Low Selesnya.dck +++ b/forge-gui/res/adventure/common/decks/starter/Adventure - Low Selesnya.dck @@ -7,7 +7,7 @@ Name=Adventure - Low Selesnya 1 Archon of Valor's Reach|C20|1 2 Armadillo Cloak|ARC|1 1 Assault Formation|PLIST|1 -1 Belligerent Brontodon|MB1|1 +1 Belligerent Brontodon|PLST|1 2 Tuskguard Captain|ZNC|1 7 Forest|GK1|2 2 Looming Altisaur|XLN|1 diff --git a/forge-gui/res/cardsfolder/a/animate_dead.txt b/forge-gui/res/cardsfolder/a/animate_dead.txt index a868f37e7db..f505055471f 100644 --- a/forge-gui/res/cardsfolder/a/animate_dead.txt +++ b/forge-gui/res/cardsfolder/a/animate_dead.txt @@ -3,6 +3,7 @@ ManaCost:1 B Types:Enchantment Aura K:Enchant:Creature.inZoneGraveyard:creature card in a graveyard SVar:AttachAILogic:Reanimate +SVar:AttachAITgts:Creature.notnamedWorldgorger Dragon T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | IsPresent$ Card.StrictlySelf | Execute$ TrigReanimate | TriggerDescription$ When CARDNAME enters, if it's on the battlefield, it loses "enchant creature card in a graveyard" and gains "enchant creature put onto the battlefield with CARDNAME." Return enchanted creature card to the battlefield under your control and attach CARDNAME to it. When CARDNAME leaves the battlefield, that creature's controller sacrifices it. SVar:TrigReanimate:DB$ ChangeZone | Origin$ Graveyard | Destination$ Battlefield | Defined$ Enchanted | RememberChanged$ True | GainControl$ True | SubAbility$ DBAnimate SVar:DBAnimate:DB$ Animate | Defined$ Self | Keywords$ Enchant:Creature.IsRemembered:creature put onto the battlefield with CARDNAME | RemoveKeywords$ Enchant:Creature.inZoneGraveyard:creature card in a graveyard | Duration$ Permanent | SubAbility$ DBAttach diff --git a/forge-gui/res/cardsfolder/d/dance_of_the_dead.txt b/forge-gui/res/cardsfolder/d/dance_of_the_dead.txt index aa4c3aa6720..1477bb7f2b7 100644 --- a/forge-gui/res/cardsfolder/d/dance_of_the_dead.txt +++ b/forge-gui/res/cardsfolder/d/dance_of_the_dead.txt @@ -3,6 +3,7 @@ ManaCost:1 B Types:Enchantment Aura K:Enchant:Creature.inZoneGraveyard:creature card in a graveyard SVar:AttachAILogic:Reanimate +SVar:AttachAITgts:Creature.notnamedWorldgorger Dragon T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | IsPresent$ Card.StrictlySelf | Execute$ TrigReanimate | TriggerDescription$ When CARDNAME enters, if it's on the battlefield, it loses "enchant creature card in a graveyard" and gains "enchant creature put onto the battlefield with CARDNAME." Put enchanted creature card onto the battlefield tapped under your control and attach CARDNAME to it. When CARDNAME leaves the battlefield, that creature's controller sacrifices it. SVar:TrigReanimate:DB$ ChangeZone | Origin$ Graveyard | Destination$ Battlefield | Defined$ Enchanted | RememberChanged$ True | GainControl$ True | Tapped$ True | SubAbility$ DBAnimate SVar:DBAnimate:DB$ Animate | Defined$ Self | OverwriteSpells$ True | Keywords$ Enchant:Creature.IsRemembered:creature put onto the battlefield with CARDNAME | RemoveKeywords$ Enchant:Creature.inZoneGraveyard:creature card in a graveyard | Duration$ Permanent | SubAbility$ DBAttach diff --git a/forge-gui/res/conquest/planes/Eldraine/Vantress/Pursuit of Greatness.dck b/forge-gui/res/conquest/planes/Eldraine/Vantress/Pursuit of Greatness.dck index 2874eb32e1e..01deb4dc3dc 100644 --- a/forge-gui/res/conquest/planes/Eldraine/Vantress/Pursuit of Greatness.dck +++ b/forge-gui/res/conquest/planes/Eldraine/Vantress/Pursuit of Greatness.dck @@ -16,7 +16,7 @@ Name=Pursuit of Greatness 1 Frogify|ELD 1 Hypnotic Sprite|ELD|1 14 Island|ELD|4 -1 Laboratory Maniac|MB1 +1 Laboratory Maniac|PLST 1 Midnight Clock|ELD|1 1 Mystic Sanctuary|ELD 1 Mystical Dispute|ELD diff --git a/forge-gui/res/conquest/planes/Unstable_Realm/Research and Development/Slivdrazi Monstrosity.dck b/forge-gui/res/conquest/planes/Unstable_Realm/Research and Development/Slivdrazi Monstrosity.dck index 5431ed02481..d4bb2ebc35d 100644 --- a/forge-gui/res/conquest/planes/Unstable_Realm/Research and Development/Slivdrazi Monstrosity.dck +++ b/forge-gui/res/conquest/planes/Unstable_Realm/Research and Development/Slivdrazi Monstrosity.dck @@ -9,7 +9,7 @@ Name=Slivdrazi Monstrosity 1 Buzzing Whack-a-Doodle|UST 1 Crow Storm|UST 1 Enchantmentize|CMB1 -1 Eldrazi Devastator|MB1 +1 Eldrazi Devastator|PLST 1 Eldrazi Temple|DDP 1 Evil Boros Charm|CMB1 1 Fowl Play|UGL diff --git a/forge-gui/res/cube/Amaz Peasant Cube.dck b/forge-gui/res/cube/Amaz Peasant Cube.dck index eef9715d48c..8fe54464373 100644 --- a/forge-gui/res/cube/Amaz Peasant Cube.dck +++ b/forge-gui/res/cube/Amaz Peasant Cube.dck @@ -6,21 +6,21 @@ Name=Amaz Peasant Cube 1 Abolish|PCY 1 Abrade|HOU 1 Abzan Battle Priest|KTK -1 Abzan Charm|MB1 +1 Abzan Charm|PLST 1 Abzan Falconer|KTK 1 Accursed Witch|SOI -1 Acidic Slime|MB1 +1 Acidic Slime|PLST 1 Acolyte of Affliction|THB 1 Act of Aggression|NPH 1 Adanto Vanguard|XLN 1 Aerial Responder|KLD 1 Aerial Volley|ORI 1 Aetherize|IMA -1 Affectionate Indrik|MB1 -1 Agony Warp|MB1 -1 Ahn-Crop Crasher|MB1 +1 Affectionate Indrik|PLST +1 Agony Warp|PLST +1 Ahn-Crop Crasher|PLST 1 Ainok Bond-Kin|KTK -1 Ajani's Pridemate|MB1 +1 Ajani's Pridemate|PLST 1 Alabaster Mage|M12 1 Alirios, Enraptured|THB 1 Alpine Guide|MH1 @@ -30,23 +30,23 @@ Name=Amaz Peasant Cube 1 Angel of Despair|UMA 1 Angler Drake|AKH 1 Angrath's Rampage|WAR -1 Annihilate|MB1 +1 Annihilate|PLST 1 Answered Prayers|MH1 1 Arborback Stomper|KLD 1 Arc Lightning|KTK -1 Arcane Sanctum|MB1 -1 Armadillo Cloak|MB1 +1 Arcane Sanctum|PLST +1 Armadillo Cloak|PLST 1 Armament Corps|KTK -1 Artisan of Kozilek|MB1 -1 Ash Barrens|MB1 -1 Avacyn's Pilgrim|MB1 +1 Artisan of Kozilek|PLST +1 Ash Barrens|PLST +1 Avacyn's Pilgrim|PLST 1 Azorius Chancery|IMA 1 Azorius Signet|MM3 -1 Azra Oddsmaker|MB1 +1 Azra Oddsmaker|PLST 1 Azure Mage|MM3 1 Back for More|IKO -1 Baleful Strix|MB1 -1 Baloth Null|MB1 +1 Baleful Strix|PLST +1 Baloth Null|PLST 1 Bane of Bala Ged|BFZ 1 Banewhip Punisher|HOU 1 Banishing Light|THB @@ -57,102 +57,102 @@ Name=Amaz Peasant Cube 1 Bastion of Remembrance|IKO 1 Battle Screech|JUD 1 Beanstalk Giant|ELD|1 -1 Bear's Companion|MB1 +1 Bear's Companion|PLST 1 Beast Attack|ODY -1 Beast Within|MB1 +1 Beast Within|PLST 1 Bile Blight|BNG -1 Bituminous Blast|MB1 +1 Bituminous Blast|PLST 1 Blaze|10E 1 Blaze Commando|DGM 1 Blessed Alliance|EMN 1 Blinding Beam|MMA -1 Blood Artist|MB1 +1 Blood Artist|PLST 1 Blood for Bones|M20 -1 Bloodbraid Elf|MB1 +1 Bloodbraid Elf|PLST 1 Bloodfell Caves|IKO 1 Bloodfray Giant|RTR -1 Bloodlust Inciter|MB1 +1 Bloodlust Inciter|PLST 1 Bloodthirsty Aerialist|M20 1 Blossoming Defense|KLD 1 Blossoming Sands|IKO 1 Boar Umbra|UMA 1 Bogardan Dragonheart|MH1 1 Bone Picker|AKH -1 Boros Challenger|MB1 +1 Boros Challenger|PLST 1 Boros Garrison|IMA 1 Boros Signet|MM3 1 Bramblecrush|M14 1 Branching Bolt|ALA -1 Breaker of Armies|MB1 +1 Breaker of Armies|PLST 1 Breath of Darigaaz|INV -1 Briarhorn|MB1 +1 Briarhorn|PLST 1 Burn Away|KTK 1 Burning Oil|DKA 1 Burning-Fist Minotaur|HOU -1 Burnished Hart|MB1 -1 Burst Lightning|MB1 +1 Burnished Hart|PLST +1 Burst Lightning|PLST 1 Careless Celebrant|THB -1 Carrion Feeder|MB1 +1 Carrion Feeder|PLST 1 Cave of Temptation|MH1 1 Censor|AKH 1 Chainer's Edict|UMA 1 Chandra's Outrage|M20 -1 Charging Monstrosaur|MB1 -1 Chillbringer|MB1 +1 Charging Monstrosaur|PLST +1 Chillbringer|PLST 1 Chittering Rats|DST 1 Civic Wayfinder|EMA 1 Cloudblazer|A25 1 Cloudgoat Ranger|MMA -1 Cloudkin Seer|MB1 -1 Coiling Oracle|MB1 +1 Cloudkin Seer|PLST +1 Coiling Oracle|PLST 1 Compulsive Research|MM3 1 Conclave Cavalier|GRN -1 Condescend|MB1 +1 Condescend|PLST 1 Cone of Flame|M15 1 Consign // Oblivion|HOU 1 Consul's Lieutenant|ORI 1 Control Magic|EMA -1 Corpsejack Menace|MB1 +1 Corpsejack Menace|PLST 1 Corrosive Gale|NPH -1 Counterspell|MB1 +1 Counterspell|PLST 1 Crackling Drake|GRN 1 Crimson Mage|A25 -1 Crosis's Charm|MB1 -1 Crumbling Necropolis|MB1 +1 Crosis's Charm|PLST +1 Crumbling Necropolis|PLST 1 Cudgel Troll|M12 -1 Cultivate|MB1 +1 Cultivate|PLST 1 Cunning Sparkmage|WWK 1 Dance with Devils|SOI 1 Dauntless Bodyguard|DOM 1 Davriel, Rogue Shadowmage|WAR|1 1 Daxos, Blessed by the Sun|THB|1 -1 Daze|MB1 +1 Daze|PLST 1 Dead Drop|KTK -1 Death Denied|MB1 +1 Death Denied|PLST 1 Deathsprout|WAR 1 Deem Worthy|AKH -1 Deep Analysis|MB1 +1 Deep Analysis|PLST 1 Delver of Secrets|ISD -1 Demonic Tutor|MB1 +1 Demonic Tutor|PLST 1 Dimir Aqueduct|IMA 1 Dimir Guildmage|UMA 1 Dimir Signet|MM3 1 Dinrova Horror|MM3 1 Dismal Backwater|IKO -1 Dismember|MB1 +1 Dismember|PLST 1 Dismiss|TMP -1 Distortion Strike|MB1 +1 Distortion Strike|PLST 1 Domri's Ambush|WAR 1 Doom Blade|IMA 1 Doomfall|HOU -1 Drana's Emissary|MB1 +1 Drana's Emissary|PLST 1 Drown in Sorrow|BNG 1 Dryad Greenseeker|M19 1 Duskwatch Recruiter|SOI 1 Edge of Autumn|FUT 1 Edifice of Authority|AKH 1 Electrolyze|IMA -1 Elephant Guide|MB1 +1 Elephant Guide|PLST 1 Elite Guardmage|WAR 1 Elite Scaleguard|FRF 1 Elvish Mystic|M15 @@ -162,74 +162,74 @@ Name=Amaz Peasant Cube 1 Enlisted Wurm|ARB 1 Enslave|NPH 1 Entomber Exarch|MM3 -1 Ephemerate|MB1 -1 Esper Charm|MB1 +1 Ephemerate|PLST +1 Esper Charm|PLST 1 Essence Capture|RNA -1 Eternal Witness|MB1 +1 Eternal Witness|PLST 1 Etherwrought Page|ARB 1 Evolving Wilds|IKO -1 Exclude|MB1 -1 Experiment One|MB1 +1 Exclude|PLST +1 Experiment One|PLST 1 Eyes Everywhere|RNA -1 Fact or Fiction|MB1 +1 Fact or Fiction|PLST 1 Faerie Seer|MH1 -1 Faith's Fetters|MB1 -1 Faithless Looting|MB1 +1 Faith's Fetters|PLST +1 Faithless Looting|PLST 1 Falkenrath Noble|MM3 -1 Fallen Angel|MB1 +1 Fallen Angel|PLST 1 Far // Away|DGM 1 Fatestitcher|ALA 1 Field of Ruin|THB 1 Field of Souls|EMA -1 Fiend Hunter|MB1 +1 Fiend Hunter|PLST 1 Fight with Fire|DOM 1 Filigree Familiar|KLD -1 Fire // Ice|MB1 +1 Fire // Ice|PLST 1 Fire Prophecy|IKO -1 Firebolt|MB1 +1 Firebolt|PLST 1 Firespout|SHM 1 Firewing Phoenix|UMA -1 First-Sphere Gargantua|MB1 -1 Flame Jab|MB1 +1 First-Sphere Gargantua|PLST +1 Flame Jab|PLST 1 Flame Slash|ROE -1 Flametongue Kavu|MB1 +1 Flametongue Kavu|PLST 1 Flickerwisp|MM3 1 Flinthoof Boar|EMA -1 Forbidden Alchemy|MB1 +1 Forbidden Alchemy|PLST 1 Force Spike|7ED -1 Forgotten Cave|MB1 +1 Forgotten Cave|PLST 1 Frenzied Goblin|A25 1 Frilled Mystic|RNA -1 Frontier Bivouac|MB1 +1 Frontier Bivouac|PLST 1 Frost Lynx|IKO 1 Garna, the Bloodflame|UMA -1 Gelectrode|MB1 -1 Gideon's Lawkeeper|MB1 -1 Gifted Aetherborn|MB1 +1 Gelectrode|PLST +1 Gideon's Lawkeeper|PLST +1 Gifted Aetherborn|PLST 1 Glimmerpoint Stag|EMA 1 Gluttonous Slug|MH1 -1 Go for the Throat|MB1 +1 Go for the Throat|PLST 1 Goblin Banneret|GRN 1 Goblin Cratermaker|GRN -1 Gods Willing|MB1 +1 Gods Willing|PLST 1 Golden Demise|RIX 1 Golgari Rot Farm|IMA 1 Golgari Signet|MM3 1 Gore-House Chainwalker|RTR 1 Gorgon Flail|M10 1 Grafted Wargear|5DN -1 Grapple with the Past|MB1 +1 Grapple with the Past|PLST 1 Grave Upheaval|C16 1 Great Oak Guardian|C15 1 Griffin Guide|TSP 1 Grow from the Ashes|DOM -1 Gruul Signet|MB1 +1 Gruul Signet|PLST 1 Gruul Turf|IMA -1 Gurmag Angler|MB1 -1 Guttersnipe|MB1 -1 Harmonize|MB1 +1 Gurmag Angler|PLST +1 Guttersnipe|PLST +1 Harmonize|PLST 1 Harsh Scrutiny|KLD -1 Healer's Hawk|MB1 +1 Healer's Hawk|PLST 1 Hedron Archive|BFZ 1 Heroic Reinforcements|M19 1 Hoarding Dragon|IMA @@ -239,18 +239,18 @@ Name=Amaz Peasant Cube 1 Honden of Night's Reach|EMA 1 Honden of Seeing Winds|EMA 1 Honored Crop-Captain|AKH -1 Hooting Mandrills|MB1 +1 Hooting Mandrills|PLST 1 Hymn to Tourach|EMA 1 Hypnotic Sprite|ELD|1 -1 Icy Manipulator|MB1 +1 Icy Manipulator|PLST 1 Imperial Aerosaur|XLN 1 Incremental Blight|SHM 1 Indulgent Tormentor|IMA -1 Ingot Chewer|MB1 +1 Ingot Chewer|PLST 1 Inner Demon|BBD 1 Into the Maw of Hell|ISD 1 Into the Roil|ZEN -1 Invigorate|MB1 +1 Invigorate|PLST 1 Iroas's Blessing|THB 1 Iwamori of the Open Fist|A25 1 Izzet Boilerworks|IMA @@ -265,7 +265,7 @@ Name=Amaz Peasant Cube 1 Journey to Nowhere|ZEN 1 Jund Charm|ALA 1 Jungle Hollow|IKO -1 Jungle Shrine|MB1 +1 Jungle Shrine|PLST 1 Juniper Order Ranger|CSP 1 Kasmina, Enigmatic Mentor|WAR|1 1 Kaya, Bane of the Dead|WAR|1 @@ -275,8 +275,8 @@ Name=Amaz Peasant Cube 1 Knotvine Mystic|CFX 1 Kongming, "Sleeping Dragon"|A25 1 Kor Sanctifiers|ZEN -1 Kor Skyfisher|MB1 -1 Krosan Tusker|MB1 +1 Kor Skyfisher|PLST +1 Krosan Tusker|PLST 1 Lampad of Death's Vigil|THB 1 Lashweed Lurker|EMN 1 Lava Coil|GRN @@ -284,47 +284,47 @@ Name=Amaz Peasant Cube 1 Leyline Prowler|WAR 1 Light of Hope|IKO 1 Lightning Bolt|LEA -1 Lightning Helix|MB1 +1 Lightning Helix|PLST 1 Lightning Mauler|AVR 1 Liliana's Specter|M11 -1 Lingering Souls|MB1 +1 Lingering Souls|PLST 1 Living Lore|UMA -1 Llanowar Elves|MB1 +1 Llanowar Elves|PLST 1 Lone Rider|EMN 1 Lonely Sandbar|ONS 1 Looter il-Kor|TSP -1 Loxodon Warhammer|MB1 +1 Loxodon Warhammer|PLST 1 Magma Jet|MM3 1 Magmaw|UMA -1 Man-o'-War|MB1 +1 Man-o'-War|PLST 1 Mana Geode|WAR -1 Mana Leak|MB1 +1 Mana Leak|PLST 1 Maraleaf Pixie|ELD 1 Mardu Charm|KTK -1 Mardu Roughrider|MB1 -1 Mask of Memory|MB1 +1 Mardu Roughrider|PLST +1 Mask of Memory|PLST 1 Master Splicer|M20 -1 Maverick Thopterist|MB1 +1 Maverick Thopterist|PLST 1 Merfolk Branchwalker|XLN -1 Merfolk Looter|MB1 +1 Merfolk Looter|PLST 1 Merfolk Trickster|DOM 1 Meteor Golem|M19 -1 Migratory Route|MB1 +1 Migratory Route|PLST 1 Militia Bugler|M19 -1 Mind Stone|MB1 +1 Mind Stone|PLST 1 Ministrant of Obligation|RNA 1 Miraculous Recovery|UMA 1 Mirror Image|M19 -1 Mist Raven|MB1 -1 Mistmeadow Witch|MB1 +1 Mist Raven|PLST +1 Mistmeadow Witch|PLST 1 Moan of the Unhallowed|UMA -1 Momentary Blink|MB1 -1 Monastery Swiftspear|MB1 -1 Mortify|MB1 +1 Momentary Blink|PLST +1 Monastery Swiftspear|PLST +1 Mortify|PLST 1 Mother Bear|MH1 -1 Mother of Runes|MB1 -1 Mulldrifter|MB1 -1 Murder of Crows|MB1 +1 Mother of Runes|PLST +1 Mulldrifter|PLST +1 Murder of Crows|PLST 1 Murderous Cut|KTK 1 Murderous Redcap|UMA 1 Murmuring Mystic|GRN @@ -333,132 +333,132 @@ Name=Amaz Peasant Cube 1 Mystic Monastery|KTK 1 Mystic Retrieval|UMA 1 Nahiri, Storm of Stone|WAR|1 -1 Naya Charm|MB1 +1 Naya Charm|PLST 1 Necrogen Scudder|M15 1 Nekrataal|EMA -1 Night's Whisper|MB1 +1 Night's Whisper|PLST 1 Nightveil Sprite|GRN 1 Nissa's Judgment|OGW 1 Nomad Outpost|KTK -1 Nyx-Fleece Ram|MB1 +1 Nyx-Fleece Ram|PLST 1 Oblivion Ring|MM2 1 Oketra's Attendant|AKH 1 Ondu Rising|BFZ 1 Onyx Mage|M12 -1 Opportunity|MB1 +1 Opportunity|PLST 1 Opulent Palace|KTK 1 Order of Midnight|ELD|1 -1 Orzhov Basilica|MB1 +1 Orzhov Basilica|PLST 1 Orzhov Enforcer|RNA 1 Orzhov Signet|MM3 1 Pacification Array|AER -1 Palladium Myr|MB1 +1 Palladium Myr|PLST 1 Paradise Druid|WAR -1 Path to Exile|MB1 -1 Peace Strider|MB1 -1 Pelakka Wurm|MB1 -1 Penumbra Spider|MB1 +1 Path to Exile|PLST +1 Peace Strider|PLST +1 Pelakka Wurm|PLST +1 Penumbra Spider|PLST 1 Penumbra Wurm|UMA -1 Perilous Myr|MB1 -1 Phyrexian Ingester|MB1 -1 Phyrexian Rager|MB1 +1 Perilous Myr|PLST +1 Phyrexian Ingester|PLST +1 Phyrexian Rager|PLST 1 Pierce Strider|MBS -1 Pilgrim's Eye|MB1 -1 Pillory of the Sleepless|MB1 -1 Plaguecrafter|MB1 +1 Pilgrim's Eye|PLST +1 Pillory of the Sleepless|PLST +1 Plaguecrafter|PLST 1 Plated Crusher|BFZ -1 Pollenbright Wings|MB1 +1 Pollenbright Wings|PLST 1 Ponder|M12 -1 Pondering Mage|MB1 +1 Pondering Mage|PLST 1 Porcelain Legionnaire|NPH -1 Preordain|MB1 +1 Preordain|PLST 1 Prismatic Lens|UMA 1 Prismatic Strands|JUD 1 Prison Realm|WAR 1 Pristine Talisman|IMA -1 Prophetic Prism|MB1 +1 Prophetic Prism|PLST 1 Psychic Symbiont|M19 -1 Pulse of Murasa|MB1 -1 Putrefy|MB1 +1 Pulse of Murasa|PLST +1 Putrefy|PLST 1 Putrid Goblin|MH1 1 Pyroceratops|IKO 1 Pyrohemia|PLC 1 Pyrokinesis|EMA -1 Qasali Pridemage|MB1 +1 Qasali Pridemage|PLST 1 Quarry Colossus|JOU 1 Quicksand|A25 1 Radiant Fountain|IMA 1 Raging Regisaur|RIX -1 Raging Swordtooth|MB1 +1 Raging Swordtooth|PLST 1 Rakdos Carnarium|IMA 1 Rakdos Firewheeler|RNA 1 Rakdos Signet|MM3 1 Rakshasa Gravecaller|DTK 1 Ral's Outburst|WAR -1 Rancor|MB1 +1 Rancor|PLST 1 Ravaging Blaze|ORI 1 Raven's Crime|MMA -1 Ravenous Chupacabra|MB1 -1 Read the Bones|MB1 +1 Ravenous Chupacabra|PLST +1 Read the Bones|PLST 1 Reckless Charge|UMA 1 Reckless Racer|AER 1 Reclamation Sage|M19 -1 Reflector Mage|MB1 +1 Reflector Mage|PLST 1 Regal Bloodlord|M19 -1 Regrowth|MB1 +1 Regrowth|PLST 1 Relic of Progenitus|EMA 1 Remand|MM2 1 Renegade Wheelsmith|AER 1 Repeal|IMA 1 Return to Nature|THB 1 Rhox Veteran|MH1 -1 Rhox War Monk|MB1 +1 Rhox War Monk|PLST 1 Ribbons of Night|RAV 1 Ridgescale Tusker|AER -1 Riftwing Cloudskate|MB1 +1 Riftwing Cloudskate|PLST 1 Rimrock Knight|ELD|1 1 Rise from the Tides|UMA 1 Rite of the Raging Storm|C15 -1 River Hoopoe|MB1 -1 Rogue's Passage|MB1 +1 River Hoopoe|PLST +1 Rogue's Passage|PLST 1 Roil Spout|BFZ -1 Rolling Thunder|MB1 -1 Rosheen Meanderer|MB1 +1 Rolling Thunder|PLST +1 Rosheen Meanderer|PLST 1 Rugged Highlands|IKO 1 Rupture Spire|M19 1 Saheeli, Sublime Artificer|WAR|1 -1 Sakura-Tribe Elder|MB1 +1 Sakura-Tribe Elder|PLST 1 Sandsteppe Citadel|KTK -1 Saproling Migration|MB1 +1 Saproling Migration|PLST 1 Satyr Wayfinder|UMA 1 Savage Alliance|EMN 1 Savage Lands|MM3 1 Savage Swipe|MH1 -1 Savage Twister|MB1 +1 Savage Twister|PLST 1 Scaled Behemoth|AKH 1 Scorched Rusalka|MM3 1 Scoured Barrens|IKO 1 Scrabbling Claws|RNA -1 Sea Gate Oracle|MB1 -1 Search for Tomorrow|MB1 +1 Sea Gate Oracle|PLST +1 Search for Tomorrow|PLST 1 Seaside Citadel|MM3 1 Secluded Steppe|ONS -1 Sedraxis Specter|MB1 +1 Sedraxis Specter|PLST 1 Seed Guardian|OGW -1 Seeker of the Way|MB1 -1 Selesnya Guildmage|MB1 +1 Seeker of the Way|PLST +1 Selesnya Guildmage|PLST 1 Selesnya Sanctuary|IMA 1 Selesnya Signet|MM3 1 Senate Guildmage|RNA 1 Sentinel of the Eternal Watch|ORI 1 Serra Angel|DOM -1 Serrated Arrows|MB1 +1 Serrated Arrows|PLST 1 Shadowmage Infiltrator|A25 -1 Shardless Agent|MB1 +1 Shardless Agent|PLST 1 Shepherd of the Flock|ELD|1 -1 Shoulder to Shoulder|MB1 +1 Shoulder to Shoulder|PLST 1 Shredded Sails|IKO -1 Shriekmaw|MB1 +1 Shriekmaw|PLST 1 Sifter Wurm|HOU 1 Silent Departure|EMA 1 Simic Growth Chamber|IMA @@ -469,73 +469,73 @@ Name=Amaz Peasant Cube 1 Skinrender|SOM 1 Skittering Surveyor|DOM 1 Skull Prophet|IKO -1 Skymarcher Aspirant|MB1 +1 Skymarcher Aspirant|PLST 1 Skywise Teachings|IMA -1 Sleep|MB1 +1 Sleep|PLST 1 Slice and Dice|ONS 1 Slimefoot, the Stowaway|DOM -1 Smiting Helix|MB1 +1 Smiting Helix|PLST 1 Smoldering Werewolf|EMN -1 Snake Umbra|MB1 +1 Snake Umbra|PLST 1 Snare Thopter|KLD 1 Snuff Out|MMQ 1 Song of Freyalise|DOM -1 Soul Manipulation|MB1 +1 Soul Manipulation|PLST 1 Soul Snuffers|EVE 1 Soulherder|MH1 1 Spectral Sailor|M20 1 Spellgorger Weird|WAR -1 Spider Spawning|MB1 -1 Spikeshot Goblin|MB1 +1 Spider Spawning|PLST +1 Spikeshot Goblin|PLST 1 Spined Thopter|NPH 1 Spitemare|EVE 1 Splatter Thug|IMA 1 Splendor Mare|IKO 1 Springbloom Druid|MH1 1 Sprite Dragon|IKO|1 -1 Sprouting Thrinax|MB1 -1 Staggershock|MB1 +1 Sprouting Thrinax|PLST +1 Staggershock|PLST 1 Start // Finish|AKH 1 Steward of Solidarity|HOU 1 Stonecloaker|PLC 1 Stonewright|AVR 1 Suffer the Past|ROE -1 Sultai Charm|MB1 -1 Sultai Soothsayer|MB1 +1 Sultai Charm|PLST +1 Sultai Soothsayer|PLST 1 Sunhome Guildmage|MM3 1 Sunhome Stalwart|GRN -1 Sunlance|MB1 +1 Sunlance|PLST 1 Sunscourge Champion|HOU -1 Sunset Pyramid|MB1 +1 Sunset Pyramid|PLST 1 Supernatural Stamina|A25 1 Supreme Will|HOU 1 Swift Reckoning|UMA 1 Swift Warkite|DTK 1 Swiftwater Cliffs|IKO -1 Swords to Plowshares|MB1 +1 Swords to Plowshares|PLST 1 Sylvan Reclamation|C16 1 Sylvok Lifestaff|SOM 1 Syr Carah, the Bold|ELD 1 Syr Konrad, the Grim|ELD 1 Talrand's Invocation|M13 -1 Tatyova, Benthic Druid|MB1 +1 Tatyova, Benthic Druid|PLST 1 Telling Time|MM2 1 Temur Charm|KTK 1 Temur Sabertooth|FRF -1 Terminate|MB1 +1 Terminate|PLST 1 Terramorphic Expanse|UMA -1 Territorial Hammerskull|MB1 -1 The Eldest Reborn|MB1 +1 Territorial Hammerskull|PLST +1 The Eldest Reborn|PLST 1 The Wanderer|WAR|1 1 Thermo-Alchemist|UMA -1 Thieving Magpie|MB1 +1 Thieving Magpie|PLST 1 Thornwood Falls|IKO 1 Thraben Gargoyle|SOI -1 Thraben Inspector|MB1 +1 Thraben Inspector|PLST 1 Thrashing Brontodon|RIX 1 Thundering Djinn|MH1 1 Thunderstaff|DST -1 Tibalt's Rager|MB1 +1 Tibalt's Rager|PLST 1 Tibalt, Rakish Instigator|WAR|1 1 Tidings|10E 1 Torment of Scarabs|HOU @@ -544,9 +544,9 @@ Name=Amaz Peasant Cube 1 Tranquil Cove|IKO 1 Tranquil Thicket|ONS 1 Travel Preparations|UMA -1 Treacherous Terrain|MB1 -1 Treasure Cruise|MB1 -1 Treasure Hunt|MB1 +1 Treacherous Terrain|PLST +1 Treasure Cruise|PLST +1 Treasure Hunt|PLST 1 Treasure Keeper|A25 1 Tribal Flames|MM2 1 Tromp the Domains|MMA @@ -567,15 +567,15 @@ Name=Amaz Peasant Cube 1 Unearth|A25 1 Unmake|EVE 1 Untamed Kavu|DOM -1 Urban Evolution|MB1 +1 Urban Evolution|PLST 1 Urbis Protector|A25 -1 Vampire Envoy|MB1 +1 Vampire Envoy|PLST 1 Vampire Neonate|M19 -1 Vampire Nighthawk|MB1 +1 Vampire Nighthawk|PLST 1 Vampire Sovereign|M19 -1 Vengeful Rebirth|MB1 +1 Vengeful Rebirth|PLST 1 Vesperlark|MH1 -1 Virulent Swipe|MB1 +1 Virulent Swipe|PLST 1 Vital Splicer|MM3 1 Vithian Stinger|MM3 1 Vivid Crag|MMA @@ -584,11 +584,11 @@ Name=Amaz Peasant Cube 1 Vivid Marsh|MMA 1 Vivid Meadow|MMA 1 Void Beckoner|IKO|1 -1 Volcanic Dragon|MB1 +1 Volcanic Dragon|PLST 1 Volition Reins|SOM 1 Vraska, Swarm's Eminence|WAR|1 1 Wall of Denial|MM3 -1 Warden of the Eye|MB1 +1 Warden of the Eye|PLST 1 Watcher for Tomorrow|MH1 1 Wayfarer's Bauble|MM2 1 Weaver of Lightning|EMN @@ -599,10 +599,10 @@ Name=Amaz Peasant Cube 1 Winding Way|MH1 1 Wing Splicer|MM3 1 Wispweaver Angel|KLD -1 Wretched Gryff|MB1 -1 Yavimaya Elder|MB1 -1 Young Pyromancer|MB1 -1 Zealous Persecution|MB1 +1 Wretched Gryff|PLST +1 Yavimaya Elder|PLST +1 Young Pyromancer|PLST +1 Zealous Persecution|PLST [Sideboard] [Planes] diff --git a/forge-gui/res/cube/Caleb Gannon's Powered Synergy Cube.dck b/forge-gui/res/cube/Caleb Gannon's Powered Synergy Cube.dck index 7f189649174..316b6cda87e 100644 --- a/forge-gui/res/cube/Caleb Gannon's Powered Synergy Cube.dck +++ b/forge-gui/res/cube/Caleb Gannon's Powered Synergy Cube.dck @@ -124,7 +124,7 @@ name=Caleb Gannon's Powered Synergy Cube 1 Putrid Imp|TOR 1 Shambling Ghast|AFR 1 Stitcher's Supplier|PLIST -1 Viscera Seer|FMB1 +1 Viscera Seer|PLST 1 Blood Artist|AVR 1 Bloodghast|PLIST 1 Dark Confidant|MM2 @@ -221,7 +221,7 @@ name=Caleb Gannon's Powered Synergy Cube 1 Blast from the Past|UNH 1 Seething Song|MRD 1 Banefire|M19 -1 Burning Inquiry|FMB1 +1 Burning Inquiry|PLST 1 Chain Lightning|EMA 1 Conflagrate|UMA 1 Faithless Looting|C21 @@ -358,7 +358,7 @@ name=Caleb Gannon's Powered Synergy Cube 1 Coiling Oracle|MM3 1 Ice-Fang Coatl|H1R 1 Lonis, Cryptozoologist|MH2 -1 Shardless Agent|MB1 +1 Shardless Agent|PLST 1 Slogurk, the Overslime|MID 1 Thopter Foundry|2XM 1 Korvold, Fae-Cursed King|PLIST @@ -441,7 +441,7 @@ name=Caleb Gannon's Powered Synergy Cube 1 Smuggler's Copter|KLD 1 Spawning Pit|DST 1 Sword of the Meek|2XM -1 Ashnod's Altar|MB1 +1 Ashnod's Altar|PLST 1 Blasting Station|5DN 1 Crucible of Worlds|5DN 1 Grafted Wargear|CMR diff --git a/forge-gui/res/cube/Cultic.dck b/forge-gui/res/cube/Cultic.dck index 11cea90c436..511fd179cf2 100644 --- a/forge-gui/res/cube/Cultic.dck +++ b/forge-gui/res/cube/Cultic.dck @@ -320,17 +320,17 @@ Name=Cultic Cube (MTGO May 2020) 1 History of Benalia|DOM 1 Thought Courier|5DN 1 Quicksilver Amulet|ULG -1 Cast Out|MB1 -1 Oust|MB1 +1 Cast Out|PLST +1 Oust|PLST 1 Declaration in Stone|SOI -1 Grasp of Fate|MB1 +1 Grasp of Fate|PLST 1 Prison Realm|WAR 1 Sleight of Hand|7ED 1 Scour All Possibilities|MH1 1 Shimmer of Possibility|RNA -1 Hieroglyphic Illumination|MB1 +1 Hieroglyphic Illumination|PLST 1 Anticipate|DTK -1 Fblthp, the Lost|MB1 +1 Fblthp, the Lost|PLST 1 Censor|AKH 1 Quench|RNA 1 Rune Snag|CSP @@ -346,7 +346,7 @@ Name=Cultic Cube (MTGO May 2020) 1 Boon Satyr|THS 1 Call of the Herd|ODY 1 Mouth // Feed|AKH -1 Thrashing Brontodon|MB1 +1 Thrashing Brontodon|PLST 1 Troll Ascetic|MRD 1 Wolfir Avenger|AVR 1 Questing Beast|ELD @@ -376,7 +376,7 @@ Name=Cultic Cube (MTGO May 2020) 1 Rakdos Cackler|RTR 1 Emrakul, the Promised End|EMN 1 Wicked Wolf|ELD -1 Treasure Cruise|MB1 +1 Treasure Cruise|PLST 1 Memory Lapse|MIR 1 Ilharg, the Raze-Boar|WAR 1 Flames of the Firebrand|M14 diff --git a/forge-gui/res/cube/Dekkaru Cube.dck b/forge-gui/res/cube/Dekkaru Cube.dck index c2608e8a05f..840bb15cedf 100644 --- a/forge-gui/res/cube/Dekkaru Cube.dck +++ b/forge-gui/res/cube/Dekkaru Cube.dck @@ -42,10 +42,10 @@ name=Dekkaru Cube 1 Angel of the Ruins|C21 1 Serra's Emissary|MH2 1 Condemn|M11 -1 Ephemerate|MB1 +1 Ephemerate|PLST 1 Mana Tithe|TSR 1 Path to Exile|MMA -1 Swords to Plowshares|MB1 +1 Swords to Plowshares|PLST 1 Settle the Wreckage|XLN 1 Prismatic Ending|MH2 1 Winds of Abandon|MH1 @@ -108,7 +108,7 @@ name=Dekkaru Cube 1 Spell Pierce|ZEN 1 Thought Scour|IMA 1 Censor|AKH -1 Counterspell|MB1 +1 Counterspell|PLST 1 Daze|EMA 1 Deliberate|ZNR 1 Impulse|BBD @@ -125,7 +125,7 @@ name=Dekkaru Cube 1 Supreme Will|HOU 1 Fact or Fiction|MH1 1 Force of Will|ALL -1 Mystic Confluence|MB1 +1 Mystic Confluence|PLST 1 Sublime Epiphany|M21 1 Dig Through Time|KTK 1 Ancestral Vision|TSR @@ -133,7 +133,7 @@ name=Dekkaru Cube 1 Preordain|M11 1 Chart a Course|XLN 1 Upheaval|V14 -1 Treasure Cruise|MB1 +1 Treasure Cruise|PLST 1 Dress Down|MH2 1 Fall from Favor|CMR 1 Opposition|UDS @@ -192,11 +192,11 @@ name=Dekkaru Cube 1 Reanimate|UMA 1 Thoughtseize|SLD 1 Unearth|MH1 -1 Collective Brutality|MB1 +1 Collective Brutality|PLST 1 Demonic Tutor|3ED 1 Exhume|USG 1 Hymn to Tourach|EMA -1 Night's Whisper|MB1 +1 Night's Whisper|PLST 1 Persist|MH2 1 Unmarked Grave|MH2 1 Buried Alive|WTH @@ -242,7 +242,7 @@ name=Dekkaru Cube 1 Kiki-Jiki, Mirror Breaker|CHK 1 Zealous Conscripts|AVR 1 Inferno Titan|C15 -1 Daretti, Scrap Savant|MB1 +1 Daretti, Scrap Savant|PLST 1 Chandra, Flamecaller|OGW 1 Burst Lightning|MM2 1 Lightning Bolt|2X2 @@ -254,7 +254,7 @@ name=Dekkaru Cube 1 Seismic Wave|NEO 1 Staggershock|ROE 1 Earthquake|CMD -1 Faithless Looting|MB1 +1 Faithless Looting|PLST 1 Flame Slash|CN2 1 Forked Bolt|DDP 1 Arc Trail|SOM @@ -277,7 +277,7 @@ name=Dekkaru Cube 1 Splinter Twin|ROE 1 Arbor Elf|M13 1 Birds of Paradise|M11 -1 Elves of Deep Shadow|MB1 +1 Elves of Deep Shadow|PLST 1 Elvish Reclaimer|M20 1 Fyndhorn Elves|CMR 1 Hexdrinker|MH1 @@ -296,7 +296,7 @@ name=Dekkaru Cube 1 Wall of Blossoms|MH1 1 Wall of Roots|IMA 1 Courser of Kruphix|BNG -1 Eternal Witness|MB1 +1 Eternal Witness|PLST 1 Llanowar Visionary|M21 1 Managorger Hydra|ORI 1 Ramunap Excavator|HOU @@ -371,7 +371,7 @@ name=Dekkaru Cube 1 Ashen Rider|THS 1 Expressive Iteration|STX 1 Third Path Iconoclast|BRO -1 Fire // Ice|MB1 +1 Fire // Ice|PLST 1 Deathrite Shaman|RTR 1 Fiend Artisan|IKO 1 Meren of Clan Nel Toth|SLD @@ -452,10 +452,10 @@ name=Dekkaru Cube 1 Worn Powerstone|DDE 1 Coercive Portal|CNS 1 Smokestack|V14 -1 Thran Dynamo|MB1 +1 Thran Dynamo|PLST 1 Batterskull|2XM 1 Gilded Lotus|DOM -1 Mindslaver|FMB1 +1 Mindslaver|PLST 1 Planar Bridge|AER 1 Kaldra Compleat|MH2 1 Portal to Phyrexia|BRO diff --git a/forge-gui/res/cube/MTGACube.dck b/forge-gui/res/cube/MTGACube.dck index 7cd56c06474..90447775a5f 100644 --- a/forge-gui/res/cube/MTGACube.dck +++ b/forge-gui/res/cube/MTGACube.dck @@ -17,11 +17,11 @@ Name=MTGACube 1 Angrath, Captain of Chaos|SLD 1 Aphemia, the Cacophony|THB|1 1 Arboreal Grazer|WAR -1 Arch of Orazca|MB1 +1 Arch of Orazca|PLST 1 Archon of Sun's Grace|THB|1 1 Ardenvale Tactician|ELD|1 1 Arguel's Blood Fast|V17 -1 Arrester's Zeal|MB1 +1 Arrester's Zeal|PLST 1 Aryel, Knight of Windgrace|DOM 1 Ashiok, Dream Render|SLD 1 Ashiok, Nightmare Muse|THB|1 @@ -78,23 +78,23 @@ Name=MTGACube 1 Chainweb Aracnir|THB 1 Chandra, Acolyte of Flame|M20 1 Chandra, Awakened Inferno|M20 -1 Charging Monstrosaur|MB1 +1 Charging Monstrosaur|PLST 1 Charming Prince|ELD|1 -1 Chart a Course|MB1 +1 Chart a Course|PLST 1 Chemister's Insight|C20 1 Chevill, Bane of Monsters|IKO|1 -1 Chromatic Lantern|MB1 +1 Chromatic Lantern|PLST 1 Claim the Firstborn|ELD 1 Clifftop Retreat|DOM 1 Clockwork Servant|ELD -1 Cloudkin Seer|MB1 +1 Cloudkin Seer|PLST 1 Colossal Majesty|C19 1 Commence the Endgame|WAR 1 Conclave Tribunal|GRN 1 Connive // Concoct|GRN 1 Corpse Knight|M20 1 Crackling Drake|C20 -1 Crash Through|MB1 +1 Crash Through|PLST 1 Crucible of Worlds|M19 1 Cruel Celebrant|WAR 1 Cryptbreaker|HA1 @@ -134,8 +134,8 @@ Name=MTGACube 1 Dryad Greenseeker|M19 1 Dryad of the Ilysian Grove|THB|1 1 Dungeon Geists|M20 -1 Duress|MB1 -1 Dusk Legion Zealot|MB1 +1 Duress|PLST +1 Dusk Legion Zealot|PLST 1 Eat to Extinction|THB|1 1 Electrostatic Field|GRN 1 Elite Guardmage|WAR @@ -194,8 +194,8 @@ Name=MTGACube 1 Gallia of the Endless Dance|THB|1 1 Gemrazer|IKO|1 1 Ghalta, Primal Hunger|GN2 -1 Ghitu Lavarunner|MB1 -1 Giant Growth|MB1 +1 Ghitu Lavarunner|PLST +1 Giant Growth|PLST 1 Giant Killer|ELD|1 1 Gideon Blackblade|SLD 1 Gilded Goose|ELD|1 @@ -207,7 +207,7 @@ Name=MTGACube 1 Goblin Chainwhirler|DOM 1 God-Eternal Bontu|WAR 1 Godless Shrine|RNA -1 Gods Willing|MB1 +1 Gods Willing|PLST 1 Golden Demise|RIX 1 Golden Egg|ELD 1 Golos, Tireless Pilgrim|M20 @@ -234,7 +234,7 @@ Name=MTGACube 1 Hydroid Krasis|RNA 1 Hypnotic Specter|HA1 1 Hypnotic Sprite|ELD|1 -1 Icy Manipulator|MB1 +1 Icy Manipulator|PLST 1 Idyllic Tutor|THB|1 1 Ilysian Caryatid|THB 1 Imperial Aerosaur|XLN @@ -253,7 +253,7 @@ Name=MTGACube 1 Jhoira, Weatherlight Captain|DOM 1 Josu Vess, Lich Knight|DOM 1 Judith, the Scourge Diva|RNA -1 Juggernaut|MB1 +1 Juggernaut|PLST 1 Karn's Temporal Sundering|DOM 1 Karn, Scion of Urza|MPS_RNA 1 Kenrith's Transformation|ELD|1 @@ -283,7 +283,7 @@ Name=MTGACube 1 Lightning Strike|GN2 1 Liliana's Contract|M19 1 Liliana, Dreadhorde General|SLD -1 Llanowar Elves|MB1 +1 Llanowar Elves|PLST 1 Lonely Sandbar|C20 1 Lotus Field|M20 1 Lovestruck Beast|ELD|1 @@ -311,15 +311,15 @@ Name=MTGACube 1 Mire's Grasp|THB 1 Mist-Cloaked Herald|M19 1 Momentary Blink|HA3 -1 Mortify|MB1 +1 Mortify|PLST 1 Mox Amber|DOM 1 Murderous Rider|ELD|1 1 Murmuring Mystic|C20 -1 Mutiny|MB1 +1 Mutiny|PLST 1 Mythos of Illuna|IKO|1 1 Mythos of Nethroi|IKO|1 1 Nadir Kraken|THB|1 -1 Negate|MB1 +1 Negate|PLST 1 Nessian Hornbeetle|THB 1 Nessian Wanderer|THB 1 Neutralize|IKO @@ -348,13 +348,13 @@ Name=MTGACube 1 Pharika's Spawn|THB 1 Phoenix of Ash|THB|1 1 Phyrexian Arena|HA1 -1 Plaguecrafter|MB1 +1 Plaguecrafter|PLST 1 Planar Cleansing|M20 1 Planewide Celebration|WAR 1 Platinum Angel|HA2 1 Polukranos, Unchained|THB|1 1 Portal of Sanctuary|M20 -1 Prey Upon|MB1 +1 Prey Upon|PLST 1 Pride of Conquerors|RIX 1 Priest of Forgotten Gods|RNA 1 Prime Speaker Vannifar|RNA @@ -372,7 +372,7 @@ Name=MTGACube 1 Rankle, Master of Pranks|ELD|1 1 Raugrin Triome|IKO|1 1 Realm-Cloaked Giant|ELD|1 -1 Reassembling Skeleton|MB1 +1 Reassembling Skeleton|PLST 1 Reclamation Sage|C20 1 Reconnaissance Mission|IKO 1 Redcap Melee|ELD @@ -383,7 +383,7 @@ Name=MTGACube 1 Return of the Wildspeaker|ELD|1 1 Reverent Hoplite|THB 1 Revoke Existence|THB -1 Rhys the Redeemed|MB1 +1 Rhys the Redeemed|PLST 1 Rielle, the Everwise|IKO|1 1 Rigging Runner|XLN 1 Rimrock Knight|ELD|1 @@ -400,7 +400,7 @@ Name=MTGACube 1 Rupture Spire|M19 1 Sacred Foundry|GRN 1 Saheeli, Sublime Artificer|SLD -1 Saproling Migration|MB1 +1 Saproling Migration|PLST 1 Sarkhan the Masterless|SLD 1 Sarkhan's Unsealing|M19 1 Savage Stomp|XLN @@ -435,7 +435,7 @@ Name=MTGACube 1 Skittering Surveyor|DOM 1 Sky Terror|XLN 1 Skycat Sovereign|IKO|1 -1 Skymarcher Aspirant|MB1 +1 Skymarcher Aspirant|PLST 1 Slaughter-Priest of Mogis|THB 1 Slaying Fire|ELD|1 1 Song of Freyalise|DOM @@ -493,15 +493,15 @@ Name=MTGACube 1 The Akroan War|THB 1 The Birth of Meletis|THB 1 The Circle of Loyalty|ELD|1 -1 The Eldest Reborn|MB1 +1 The Eldest Reborn|PLST 1 The First Iroan Games|THB -1 The Gitrog Monster|MB1 +1 The Gitrog Monster|PLST 1 The Great Henge|ELD|1 1 The Immortal Sun|RIX 1 The Mending of Dominaria|DOM 1 Thief of Sanity|GRN 1 Thirst for Meaning|THB|1 -1 Thought Erasure|MB1 +1 Thought Erasure|PLST 1 Thrashing Brontodon|RIX 1 Threnody Singer|THB 1 Tibalt, Rakish Instigator|SLD diff --git a/forge-gui/res/cube/MTGO Vintage Cube 2023-05.dck b/forge-gui/res/cube/MTGO Vintage Cube 2023-05.dck index 19ad67c9b84..865261b1b4e 100644 --- a/forge-gui/res/cube/MTGO Vintage Cube 2023-05.dck +++ b/forge-gui/res/cube/MTGO Vintage Cube 2023-05.dck @@ -361,7 +361,7 @@ Name=MTGO Vintage Cube 2023-05 1 Razorverge Thicket|SOM 1 Reanimate|UMA 1 Reclamation Sage|TSR -1 Recruiter of the Guard|MB1 +1 Recruiter of the Guard|PLST 1 Recurring Nightmare|VMA 1 Red Elemental Blast|A25 1 Regrowth|A25 diff --git a/forge-gui/res/cube/MTGO Vintage Cube 2024-06.dck b/forge-gui/res/cube/MTGO Vintage Cube 2024-06.dck index 48c3fc49d97..f2787e96b26 100644 --- a/forge-gui/res/cube/MTGO Vintage Cube 2024-06.dck +++ b/forge-gui/res/cube/MTGO Vintage Cube 2024-06.dck @@ -3,7 +3,7 @@ Name=MTGO Vintage Cube 2024-06 [Main] 1 Abrade|HOU|1 1 Adeline, Resplendent Cathar|MID|1 -1 Aether Spellbomb|MB1|1 +1 Aether Spellbomb|PLST|1 1 Agatha's Soul Cauldron|WOE|1 1 Ajani, Nacatl Pariah|MH3|1 1 Ancestral Recall|2ED|1 @@ -472,7 +472,7 @@ Name=MTGO Vintage Cube 2024-06 1 Time Warp|TPR|1 1 Timeless Dragon|MH2|1 1 Timetwister|2ED|1 -1 Tinker|MB1|1 +1 Tinker|PLST|1 1 Tireless Tracker|SOI|1 1 Tishana's Tidebinder|LCI|1 1 Titania, Protector of Argoth|C14|1 diff --git a/forge-gui/res/cube/Pioneer Cube.dck b/forge-gui/res/cube/Pioneer Cube.dck index d2b25f884ba..dfed1353ecd 100644 --- a/forge-gui/res/cube/Pioneer Cube.dck +++ b/forge-gui/res/cube/Pioneer Cube.dck @@ -278,7 +278,7 @@ Name=Pioneer Cube 1 Fable of the Mirror-Breaker|NEO 1 Den of the Bugbear|AFR 1 Elvish Mystic|KHC -1 Experiment One|MB1 +1 Experiment One|PLST 1 Llanowar Elves|DOM 1 Pelt Collector|GRN 1 Armored Scrapgorger|ONE @@ -326,7 +326,7 @@ Name=Pioneer Cube 1 Hornet Queen|M15 1 Titan of Industry|SNC 1 Ghalta, Primal Hunger|RIX -1 Nissa, Voice of Zendikar|MB1 +1 Nissa, Voice of Zendikar|PLST 1 Vivien, Arkbow Ranger|M20 1 Nissa, Who Shakes the World|WAR 1 Nissa, Ascended Animist|ONE diff --git a/forge-gui/res/cube/Regular Cube.dck b/forge-gui/res/cube/Regular Cube.dck index e8f7c2d0f5e..513b4957659 100644 --- a/forge-gui/res/cube/Regular Cube.dck +++ b/forge-gui/res/cube/Regular Cube.dck @@ -26,7 +26,7 @@ name=Regular Cube 1 Whitemane Lion|A25 1 Ardenvale Tactician|ELD 1 Fabled Hero|THS -1 Fiend Hunter|MB1 +1 Fiend Hunter|PLST 1 Militia Bugler|M19 1 Ministrant of Obligation|RNA 1 Stonecloaker|DDN diff --git a/forge-gui/res/cube/The Arena Cube.dck b/forge-gui/res/cube/The Arena Cube.dck index 5f337facb1b..2578e35cdcb 100644 --- a/forge-gui/res/cube/The Arena Cube.dck +++ b/forge-gui/res/cube/The Arena Cube.dck @@ -457,7 +457,7 @@ Name=The Arena Cube 1 Treasure Map|XLN 1 Unlicensed Hearse|SNC 1 Aethersphere Harvester|AER -1 Chromatic Lantern|MB1 +1 Chromatic Lantern|PLST 1 Cultivator's Caravan|KLD 1 Oketra's Monument|AKH 1 Sigiled Sword of Valeron|M19 diff --git a/forge-gui/res/cube/The Pauper Cube (June 2023 ONE-BRO-40K).dck b/forge-gui/res/cube/The Pauper Cube (June 2023 ONE-BRO-40K).dck index d8055376675..bbedb041989 100644 --- a/forge-gui/res/cube/The Pauper Cube (June 2023 ONE-BRO-40K).dck +++ b/forge-gui/res/cube/The Pauper Cube (June 2023 ONE-BRO-40K).dck @@ -204,7 +204,7 @@ name=The Pauper Cube (June 2023 ONE-BRO-40K) 1 Pestilence|USG 1 Fanatical Firebrand|RIX 1 Frenzied Goblin|A25 -1 Goblin Bushwhacker|FMB1 +1 Goblin Bushwhacker|PLST 1 Goblin Motivator|M19 1 Grim Initiate|WAR 1 Insolent Neonate|SOI diff --git a/forge-gui/res/editions/Mystery Booster Retail Edition Foils.txt b/forge-gui/res/editions/Mystery Booster Retail Edition Foils.txt deleted file mode 100644 index 252ae544983..00000000000 --- a/forge-gui/res/editions/Mystery Booster Retail Edition Foils.txt +++ /dev/null @@ -1,129 +0,0 @@ -[metadata] -Code=FMB1 -Date=2020-03-08 -Name=Mystery Booster Retail Edition Foils -Type=Draft -ScryfallCode=FMB1 - -[cards] -1 U Not of This World @Izzy -2 R Celestial Dawn @Liz Danforth -3 R Celestial Kirin @Adam Rex -4 U Changeling Hero @Jeff Miracola -5 U Council Guardian @Volkan Baǵa -6 U Eidolon of Rhetoric @Ryan Yee -7 R Isamaru, Hound of Konda @Christopher Moeller -8 C Lapse of Certainty @Anthony Francisco -9 C Lumithread Field @Scott Altmann -10 R Norn's Annex @James Paick -11 R Proclamation of Rebirth @William Simpson -12 U Pull from Eternity @Ron Spears -13 R Rune-Tail, Kitsune Ascendant @Randy Gallegos -14 C Sinew Sliver @Steven Belledin -15 C Soul's Attendant @Steve Prescott -16 R Spelltithe Enforcer @Greg Staples -17 U Springjack Shepherd @Thomas Denmark -18 U Wall of Shards @Alex Horley-Orlandelli -19 U White Knight @Christopher Moeller -20 C Blighted Agent @Anthony Francisco -21 U Delay @Ron Spears -22 R Fatespinner @rk post -23 U Frozen Aether @Dan Dos Santos -24 R Grand Architect @Steven Belledin -25 R Intruder Alarm @Luca Zontini -26 M Misthollow Griffin @Jaime Jones -27 U Paradox Haze @Greg Staples -28 R Patron of the Moon @Scott M. Fischer -29 R Puca's Mischief @Scott Altmann -30 R Spellweaver Volute @Bud Cook -31 C Storm Crow @John Matson -32 R Zur's Weirding @Scott M. Fischer -33 R Bringer of the Black Dawn @Carl Critchlow -34 C Chimney Imp @Christopher Moeller -35 R Conspiracy @Jeff Easley -36 C Echoing Decay @Greg Staples -37 R Funeral Charm @Greg Spalenka -38 R Herald of Leshrac @Alex Horley-Orlandelli -39 R Marrow-Gnawer @Wayne Reynolds -40 R Nezumi Shortfang @Daren Bader -41 R One with Nothing @Jim Nelson -42 U Ravenous Trap @Cyril Van Der Haegen -43 U Rescue from the Underworld @Raymond Swanland -44 R Undead Warchief @Greg Hildebrandt -45 C Viscera Seer @John Stanko -46 U Balduvian Rage @John Matson -47 R Braid of Fire @Cyril Van Der Haegen -48 C Burning Inquiry @Zoltan Boros & Gabor Szikszai -49 R Fiery Gambit @Scott M. Fischer -50 U Flamekin Harbinger @Steve Prescott -51 R Form of the Dragon @Carl Critchlow -52 C Goblin Bushwhacker @Mark Tedin -53 U Guerrilla Tactics @Dave Dorman -54 U Lightning Storm @Luca Zontini -55 R Norin the Wary @Heather Hudson -56 C Ogre Gatecrasher @Daren Bader -57 C Pyretic Ritual @James Paick -58 M Scourge of the Throne @Michael Komarck -59 R Stigma Lasher @Aleksi Briclot -60 U Treasonous Ogre @Randy Gallegos -61 R Allosaurus Rider @Daren Bader -62 U Archetype of Endurance @Slawomir Maniak -63 C Boreal Druid @Dan Dos Santos -64 R Boundless Realms @Cliff Childs -65 U Bramblewood Paragon @Jim Murray -66 R Fungusaur @Heather Hudson -67 C Game-Trail Changeling @Martina Pilcerova -68 C Gleeful Sabotage @Todd Lockwood -69 C Greater Mossdog @Chippy -70 R Helix Pinnacle @Dan Scott -71 C Hornet Sting @Matt Stewart -72 U Manaweft Sliver @Trevor Claxton -73 R Maro @Stuart Griffin -74 R Myojin of Life's Web @Kev Walker -75 R Panglacial Wurm @Jim Pavelec -76 R Reki, the History of Kamigawa @Edward P. Beard, Jr. -77 R Rhox @Mark Zug -78 C Sakura-Tribe Scout @Darrell Riche -79 U Scryb Ranger @Rebecca Guay -80 U Sheltering Ancient @Pete Venters -81 U Sosuke, Son of Seshiro @Carl Critchlow -82 R Spike Feeder @Heather Hudson -83 M Aurelia's Fury @Tyler Jacobson -84 U Drogskol Captain @Peter Mohrbacher -85 R Glittering Wish @John Donahue -86 U Harmonic Sliver @Luca Zontini -87 M Karrthus, Tyrant of Jund @Dave Kendall -88 M Maelstrom Nexus @Steven Belledin -89 U Mind Funeral @rk post -90 M Sarkhan the Mad @Chippy -91 M Sen Triplets @Greg Staples -92 R Yore-Tiller Nephilim @Jeremy Jarvis -93 R Balefire Liege @Ralph Horsley -94 U Gilder Bairn @Nils Hamm -95 U Kulrath Knight @Daarken -96 C Noggle Bandit @Thomas Denmark -97 U Wear // Tear @Ryan Pancoast -98 R Amulet of Vigor @Warren Mahy -99 U Blasting Station @Stephen Tappin -100 U Codex Shredder @Jason Felix -101 U Geth's Grimoire @Heather Hudson -102 C Iron Myr @Alan Pollack -103 R Knowledge Pool @Mike Bierek -104 U Lantern of Insight @Tim Hildebrandt -105 R Leveler @Carl Critchlow -106 M Lich's Mirror @Ash Wood -107 U Magewright's Stone @Carl Critchlow -108 U Memnite @Svetlin Velinov -109 R Mindslaver @Glen Angus -110 C Pili-Pala @Ron Spencer -111 R Reaper King @Jim Murray -112 R Sundial of the Infinite @Vincent Proce -113 R Teferi's Puzzle Box @Donato Giancola -114 U Trailblazer's Boots @Zoltan Boros & Gabor Szikszai -115 R Triskelion @Christopher Moeller -116 R Witchbane Orb @John Avon -117 R Alchemist's Refuge @Dan Scott -118 R Minamo, School at Water's Edge @Jeremy Jarvis -119 U Mirrodin's Core @Greg Staples -120 R Shizo, Death's Storehouse @John Matson -121 U Stalking Stones @David Day diff --git a/forge-gui/res/editions/Mystery Booster.txt b/forge-gui/res/editions/Mystery Booster.txt index f90b9ab2340..d96e33be892 100644 --- a/forge-gui/res/editions/Mystery Booster.txt +++ b/forge-gui/res/editions/Mystery Booster.txt @@ -7,3535 +7,1839 @@ BoosterCovers=1 Booster=2 fromSheet("MB1 White CommonUncommon"), 2 fromSheet("MB1 Blue CommonUncommon"), 2 fromSheet("MB1 Black CommonUncommon"), 2 fromSheet("MB1 Green CommonUncommon"), 2 fromSheet("MB1 Red CommonUncommon"), 1 fromSheet("MB1 Multi CommonUncommon"), 1 fromSheet("MB1 Artifact Land CommonUncommon"), 1 fromSheet("MB1 Pre M15"), 1 fromSheet("MB1 Post M15 RareMythic"), 1 fromSheet("MB1 Foils") Foil=NotSupported BoosterBox=60 -ScryfallCode=MB1 - -[cards] -1 R All Is Dust @Jason Felix -2 U Artisan of Kozilek @Jason Felix -3 U Breaker of Armies @Richard Wright -4 R Desolation Twin @Jack Wang -5 C Eldrazi Devastator @Joseph Meehan -6 U Pathrazer of Ulamog @Austin Hsu -7 U Abzan Falconer @Steven Belledin -8 C Abzan Runemark @James Ryman -9 C Acrobatic Maneuver @Winona Nelson -10 U Adanto Vanguard @Anna Steinbauer -11 R Adorned Pouncer @Slawomir Maniak -12 C Affa Protector @Izzy -13 C Ainok Bond-Kin @Chris Rahn -14 U Ajani's Pridemate @Sidharth Chaturvedi -15 C Alley Evasion @Scott Murphy -16 M Angelic Destiny @Jana Schirmer & Johannes Voss -17 C Angelic Gift @Josu Hernaiz -18 C Angelic Purge @Zezhou Chen -19 C Angel of Mercy @Volkan Baǵa -20 U Angel of Renewal @Todd Lockwood -21 R Angel of the Dire Hour @Jack Wang -22 C Angelsong @Sal Villagran -23 C Apostle's Blessing @Brad Rigney -24 R Approach of the Second Sun @Noah Bradley -25 U Archangel @Quinton Hoover -26 C Arrest @Daarken -27 C Arrester's Zeal @Izzy -28 C Artful Maneuver @Lars Grant-West -29 U Aura of Silence @D. Alexander Gregory -30 C Aven Battle Priest @John Severin Brassell -31 C Aven Sentry @Dan Scott -32 C Ballynock Cohort @Jesper Ejsing -33 C Bartered Cow @Deruchenko Alexander -34 U Battle Mastery @Viktor Titov -35 R Beacon of Immortality @Rob Alexander -36 C Benevolent Ancestor @Nick Percival -37 C Blade Instructor @Zoltan Boros -38 U Blessed Spirits @Anna Steinbauer -39 C Bonds of Faith @Steve Argyle -40 C Borrowed Grace @Volkan Baǵa -41 C Built to Last @Svetlin Velinov -42 C Bulwark Giant @Victor Adame Minguez -43 C Candlelight Vigil @Alexander Forssberg -44 C Caravan Escort @Goran Josic -45 C Cartouche of Solidarity @Kieran Yanner -46 U Cast Out @Magali Villeneuve -47 C Cathar's Companion @Svetlin Velinov -48 C Caught in the Brights @Kieran Yanner -49 U Celestial Crusader @Jim Murray -50 C Celestial Flare @Clint Cearley -51 C Center Soul @Igor Kieryluk -52 C Champion of Arashin @Joseph Meehan -53 R Champion of the Parish @Svetlin Velinov -54 R Chancellor of the Annex @Min Yum -55 C Charge @Zezhou Chen -56 C Cliffside Lookout @Eric Deschamps -57 C Cloudshift @Howard Lyon -58 C Coalition Honor Guard @Eric Peterson -59 C Collar the Culprit @Victor Adame Minguez -60 U Congregate @Mark Zug -61 C Conviction @John Stanko -62 C Countless Gears Renegade @Dan Scott -63 C Court Homunculus @Matt Cavotta -64 C Court Street Denizen @Volkan Baǵa -65 U Crib Swap @Brandon Dorman -66 U Danitha Capashen, Paragon @Chris Rallis -67 C Daring Skyjek @Jason Chan -68 U Darksteel Mutation @Daniel Ljunggren -69 C Dauntless Cathar @Zack Stella -70 C Dawnglare Invoker @Steve Argyle -71 C Decommission @Josh Hass -72 R Decree of Justice @Lius Lasahido -73 C Defiant Strike @Gabor Szikszai -74 C Desperate Sentry @Mathias Kollros -75 C Devilthorn Fox @Filip Burburan -76 R Dictate of Heliod @Terese Nielsen -77 C Disenchant @Victor Adame Minguez -78 U Dismantling Blow @Tomasz Jedruszek -79 C Disposal Mummy @Gabor Szikszai -80 C Divine Favor @Allen Williams -81 C Djeru's Renunciation @Kieran Yanner -82 C Djeru's Resolve @Kieran Yanner -83 C Doomed Traveler @Lars Grant-West -84 C Dragon Bell Monk @Lius Lasahido -85 C Dragon's Eye Sentry @Anastasia Ovchinnikova -86 C Dragon's Presence @Tan Yan Yao -87 C Eddytrail Hawk @James Paick -88 M Elesh Norn, Grand Cenobite @Igor Kieryluk -89 C Emerge Unscathed @Steve Argyle -90 C Empyrial Armor @D. Alexander Gregory -91 C Encampment Keeper @Craig J Spearing -92 U Encircling Fissure @Igor Kieryluk -93 C Enduring Victory @Mike Sass -94 C Enlightened Ascetic @James Zapata -95 C Ephemeral Shields @Yohann Schepacz -96 C Ephemerate @Bastien L. Deharme -97 R Evra, Halcyon Witness @Johannes Voss -98 C Excavation Elephant @Viktor Titov -99 C Excoriate @Johann Bodin -100 C Expedition Raptor @Johann Bodin -101 C Expose Evil @Jama Jurabaev -102 C Exultant Skymarcher @Ryan Yee -103 C Eyes in the Skies @James Ryman -104 C Faithbearer Paladin @Aaron Miller -105 C Faith's Fetters @Kev Walker -106 C Feat of Resistance @David Gaillet -107 U Felidar Guardian @Jakub Kasper -108 R Felidar Sovereign @Zoltan Boros & Gabor Szikszai -109 U Felidar Umbra @Christopher Moeller -110 C Fencing Ace @David Rapoza -111 U Fiend Hunter @Wayne Reynolds -112 C Firehoof Cavalry @YW Tang -113 C Forsake the Worldly @Steve Argyle -114 C Fortify @Christopher Moeller -115 C Fragmentize @Jason Felix -116 C Geist of the Moors @Aaron Miller -117 U Ghostblade Eidolon @Ryan Yee -118 M Gideon Jura @Chris Rahn -119 C Gideon's Lawkeeper @Steve Prescott -120 U Gift of Estates @Hugh Jamieson -121 C Glaring Aegis @Anthony Palumbo -122 C Gleam of Resistance @Matt Stewart -123 C Glint-Sleeve Artisan @Ryan Pancoast -124 C God-Pharaoh's Faithful @Bastien L. Deharme -125 C Gods Willing @Mark Winters -126 R Grasp of Fate @Tomasz Jedruszek -127 C Grasp of the Hieromancer @Igor Kieryluk -128 C Great-Horn Krushok @YW Tang -129 C Guided Strike @Dave Dorman -130 U Gustcloak Skirmisher @Dan Frazier -131 C Gust Walker @Jason Rainville -132 C Healer's Hawk @Milivoj Ćeran -133 C Healing Grace @Magali Villeneuve -134 C Healing Hands @Josu Hernaiz -135 C Heavy Infantry @David Gaillet -136 C Humble @Chris Rallis -137 C Hyena Umbra @Howard Lyon -138 C Infantry Veteran @Zoltan Boros -139 C Inquisitor's Ox @Vincent Proce -140 C Inspired Charge @Wayne Reynolds -141 C Intrusive Packbeast @Jason Felix -142 C Iona's Judgment @Mike Bierek -143 C Isolation Zone @Chris Rallis -144 U Jubilant Mascot @Filip Burburan -145 C Knight of Cliffhaven @Matt Cavotta -146 U Knight of Dawn @Ron Spencer -147 C Knight of Old Benalia @Dan Scott -148 C Knight of Sorrows @Zezhou Chen -149 C Knight of the Skyward Eye @Matt Stewart -150 C Knight of the Tusk @Jesper Ejsing -151 U Kor Bladewhirl @Steven Belledin -152 C Kor Chant @Yohann Schepacz -153 U Kor Firewalker @Matt Stewart -154 C Kor Hookmaster @Wayne Reynolds -155 C Kor Sky Climber @Victor Adame Minguez -156 C Kor Skyfisher @Dan Scott -157 U Lashknife Barrier @Paolo Parente -158 U Leonin Relic-Warder @Greg Staples -159 C Lieutenants of the Guard @Johannes Voss -160 U Lightform @Steve Prescott -161 C Lightwalker @Winona Nelson -162 U Lingering Souls @John Stanko -163 C Lone Missionary @Svetlin Velinov -164 C Lonesome Unicorn @Winona Nelson -165 C Looming Altisaur @Lars Grant-West -166 C Lotus-Eye Mystics @Dan Scott -167 C Loxodon Partisan @Matt Stewart -168 C Loyal Sentry @Sara Winters -169 C Lunarch Mantle @Anastasia Ovchinnikova -170 R Magus of the Moat @John Avon -171 C Mana Tithe @Martina Pilcerova -172 C Mardu Hordechief @Torstein Nordstrand -173 C Marked by Honor @David Palumbo -174 R Martyr's Bond @Ryan Pancoast -175 U Martyr's Cause @Jeff Laubenstein -176 C Meditation Puzzle @Mark Winters -177 C Midnight Guard @Jason A. Engle -178 R Mirran Crusader @Eric Deschamps -179 R Mirror Entity @Zoltan Boros & Gabor Szikszai -180 C Momentary Blink @Evan Shipard -181 C Moonlit Strider @John Avon -182 C Mortal's Ardor @Kev Walker -183 U Mother of Runes @Terese Nielsen -184 C Ninth Bridge Patrol @Ryan Alexander Lee -185 U Nyx-Fleece Ram @Terese Nielsen -186 R Odric, Lunarch Marshal @Chase Stone -187 C Ondu Greathorn @Aaron Miller -188 C Ondu War Cleric @Ben Maier -189 C Oreskos Swiftclaw @James Ryman -190 U Oust @Mike Bierek -191 C Pacifism @Jesper Ejsing -192 U Palace Jailer @David Palumbo -193 C Palace Sentinels @Aaron Miller -194 C Paladin of the Bloodstained @Bastien L. Deharme -195 C Path of Peace @Nils Hamm -196 U Path to Exile @Todd Lockwood -197 U Peace of Mind @Christopher Moeller -198 C Pegasus Courser @Mathias Kollros -199 C Pentarch Ward @Dany Orizio -200 C Pitfall Trap @Franz Vohwinkel -201 C Pressure Point @Chase Stone -202 U Promise of Bunrei @Stephen Tappin -203 C Prowling Caracal @Jonathan Kuo -204 C Rally the Peasants @Jaime Jones -205 C Raptor Companion @Slawomir Maniak -206 R Recruiter of the Guard @Jason Rainville -207 U Refurbish @Johann Bodin -208 C Renewed Faith @Steve Argyle -209 C Resurrection @Michael Komarck -210 U Retreat to Emeria @Kieran Yanner -211 C Reviving Dose @D. Alexander Gregory -212 C Rhet-Crop Spearmaster @Dan Scott -213 U Righteous Cause @Scott M. Fischer -214 C Rootborn Defenses @Mark Zug -215 C Sacred Cat @Zezhou Chen -216 C Sanctum Gargoyle @Shelly Wan -217 C Sandstorm Charger @Dave Kendall -218 C Savannah Lions @Winona Nelson -219 C Seal of Cleansing @Noah Bradley -220 C Searing Light @Marco Nelor -221 U Seeker of the Way @Craig J Spearing -222 C Sensor Splicer @Izzy -223 U Seraph of the Suns @Winona Nelson -224 C Serra Disciple @Victor Adame Minguez -225 U Serra's Embrace @Zoltan Boros & Gabor Szikszai -226 C Sheer Drop @Clint Cearley -227 C Shining Aerosaur @Dan Scott -228 C Shining Armor @Eric Deschamps -229 C Shoulder to Shoulder @Chris Rallis -230 C Siegecraft @Viktor Titov -231 C Silverchase Fox @Howard Lyon -232 C Skyhunter Skirmisher @Greg Staples -233 U Skymarcher Aspirant @Winona Nelson -234 C Skyspear Cavalry @Wayne Reynolds -235 C Slash of Talons @Magali Villeneuve -236 C Snubhorn Sentry @Aaron Miller -237 C Soulmender @James Ryman -238 C Soul Parry @Igor Kieryluk -239 C Soul-Strike Technique @Joe Slucher -240 C Soul Summons @Johann Bodin -241 C Soul Warden @Randy Gallegos -242 C Sparring Mummy @Ryan Pancoast -243 C Spectral Gateguards @Wayne England -244 C Stalwart Aven @Scott Murphy -245 C Star-Crowned Stag @Jonathan Kuo -246 C Stave Off @Mark Zug -247 C Steadfast Sentinel @Karl Kopinski -248 C Stone Haven Medic @Anna Steinbauer -249 C Sunlance @Volkan Baǵa -250 C Sunrise Seeker @Filip Burburan -251 C Suppression Bonds @Chris Rallis -252 C Survive the Night @Svetlin Velinov -253 U Swords to Plowshares @Terese Nielsen -254 C Take Vengeance @Randy Vargas -255 C Tandem Tactics @David Gaillet -256 R Teferi's Protection @Chase Stone -257 C Terashi's Grasp @Mark Tedin -258 C Territorial Hammerskull @Lars Grant-West -259 R Thalia's Lancers @David Palumbo -260 C Thraben Inspector @Matt Stewart -261 C Thraben Standard Bearer @Volkan Baǵa -262 U Timely Reinforcements @Tomasz Jedruszek -263 C Topan Freeblade @Johannes Voss -264 C Unwavering Initiate @Greg Opalinski -265 C Veteran Swordsmith @Michael Komarck -266 C Village Bell-Ringer @David Palumbo -267 C Voice of the Provinces @Igor Kieryluk -268 U Volunteer Reserves @Kev Walker -269 C Wake the Reflections @Cynthia Sheppard -270 U Wall of Omens @James Paick -271 C Wall of One Thousand Cuts @Greg Staples -272 C Wandering Champion @Willian Murai -273 C War Behemoth @Zoltan Boros -274 R Weathered Wayfarer @Greg Hildebrandt & Tim Hildebrandt -275 C Wild Griffin @Matt Cavotta -276 U Windborne Charge @Ryan Pancoast -277 C Winged Shepherd @Chris Rahn -278 U Wing Shards @Daren Bader -279 C Youthful Knight @Rebecca Guay -280 C Zealous Strike @Bud Cook -281 C Academy Journeymage @Magali Villeneuve -282 C Aethersnipe @Zoltan Boros & Gabor Szikszai -283 C Aether Tradewinds @Lius Lasahido -284 C Amass the Components @Matt Stewart -285 R Aminatou's Augury @Seb McKinnon -286 C Amphin Pathmage @Mark Winters -287 C Anticipate @Tyler Jacobson -288 C Arcane Denial @Mark Zug -289 C Archaeomancer @Zoltan Boros -290 U Archetype of Imagination @Robbie Trevino -291 C Artificer's Assistant @Chris Seaman -292 C Augur of Bolas @Slawomir Maniak -293 C Augury Owl @Jim Nelson -294 C Bastion Inventor @Tony Foti -295 C Befuddle @Svetlin Velinov -296 C Benthic Giant @Jaime Jones -297 C Benthic Infiltrator @Mathias Kollros -298 C Bewilder @Ralph Horsley -299 U Blue Elemental Blast @Izzy -300 C Borrowing 100,000 Arrows @Song Shikai -301 C Brainstorm @Chris Rahn -302 C Brilliant Spectrum @Winona Nelson -303 U Brine Elemental @Stephen Tappin -304 C Calculated Dismissal @Karl Kopinski -305 C Caller of Gales @Alex Horley-Orlandelli -306 C Call to Heel @Randy Gallegos -307 C Cancel @Slawomir Maniak -308 C Capture Sphere @Mark Behm -309 C Cartouche of Knowledge @Kieran Yanner -310 C Castaway's Despair @Chris Rahn -311 C Catalog @Johannes Voss -312 U Chart a Course @James Ryman -313 R Chasm Skulker @Jack Wang -314 C Chillbringer @Eytan Zana -315 C Choking Tethers @Carl Critchlow -316 C Chronostutter @Seb McKinnon -317 U Circular Logic @Anthony S. Waters -318 U Citywatch Sphinx @Magali Villeneuve -319 C Claustrophobia @Ryan Pancoast -320 C Clear the Mind @David Palumbo -321 C Cloak of Mists @Tingting Yeh -322 C Cloud Elemental @Michael Sutfin -323 C Cloudkin Seer @Anastasia Ovchinnikova -324 C Cloudreader Sphinx @Kev Walker -325 C Clutch of Currents @Igor Kieryluk -326 C Compelling Argument @Lucas Graciano -327 U Concentrate @rk post -328 U Condescend @Kieran Yanner -329 C Containment Membrane @Daarken -330 C Contingency Plan @Ryan Yee -331 C Contradict @Steve Prescott -332 C Convolute @Viktor Titov -333 C Coralhelm Guide @Viktor Titov -334 C Coral Trickster @D. Alexander Gregory -335 U Corrupted Conscience @Jason Chan -336 C Counterspell @Zack Stella -337 C Court Hussar @Ron Spears -338 C Crashing Tide @Carmen Sinek -339 C Crush Dissent @Mike Bierek -340 U Curiosity @Val Mayerik -341 C Curio Vendor @Igor Kieryluk -342 C Daze @Matthew D. Wilson -343 C Dazzling Lights @Robbie Trevino -344 C Decision Paralysis @Vincent Proce -345 C Deep Analysis @Jesper Ejsing -346 C Deep Freeze @Svetlin Velinov -347 R Deepglow Skate @Jason Kang -348 C Diminish @Eric Deschamps -349 C Dirgur Nemesis @Mathias Kollros -350 C Dispel @Chase Stone -351 C Displace @Clint Cearley -352 U Distortion Strike @Goran Josic -353 C Divination @Willian Murai -354 R Djinn of Wishes @Kev Walker -355 C Doorkeeper @Kev Walker -356 U Dragon's Eye Savants @Jason Rainville -357 C Drag Under @Tianhua X -358 C Dreadwaters @Cliff Childs -359 C Dream Cache @D. Alexander Gregory -360 C Dream Twist @Dan Scott -361 C Eel Umbra @Howard Lyon -362 C Embodiment of Spring @Wayne Reynolds -363 R Energy Field @John Matson -364 C Enlightened Maniac @Jaime Jones -365 U Ensoul Artifact @Jasper Sandner -366 C Errant Ephemeron @Luca Zontini -367 C Essence Scatter @Josh Hass -368 U Everdream @Nils Hamm -369 U Exclude @Jehan Choo -370 M Expropriate @Zack Stella -371 U Fact or Fiction @Matt Cavotta -372 C Faerie Invaders @Ryan Pancoast -373 C Faerie Mechanist @Matt Cavotta -374 C Failed Inspection @Matt Stewart -375 U Fascination @Svetlin Velinov -376 C Fathom Seer @Ralph Horsley -377 R Fblthp, the Lost @Jesper Ejsing -378 U Flashfreeze @Brian Despain -379 U Fledgling Mawcor @Kev Walker -380 C Fleeting Distraction @Ryan Yee -381 U Floodgate @Jeff Miracola -382 U Fog Bank @Howard Lyon -383 C Fogwalker @Seb McKinnon -384 C Foil @Donato Giancola -385 C Forbidden Alchemy @David Rapoza -386 C Frantic Search @Mitchell Malloy -387 C Frilled Sea Serpent @Steven Belledin -388 C Frost Lynx @Izzy -389 C Gaseous Form @Roger Raupp -390 C Ghost Ship @Bastien L. Deharme -391 C Glacial Crasher @Mark Winters -392 C Glint @Igor Kieryluk -393 C Gone Missing @James Paick -394 C Grasp of Phantoms @Izzy -395 U Guard Gomazoa @Rob Alexander -396 C Gurmag Drowner @Lake Hurwitz -397 C Gush @Kev Walker -398 U Hedron Crab @Jesper Ejsing -399 C Hieroglyphic Illumination @Raoul Vitale -400 C Hightide Hermit @Jason Kang -401 C Hinterland Drake @Lake Hurwitz -402 C Horseshoe Crab @Scott Kirschner -403 C Humongulus @Jesper Ejsing -404 C Impulse @Izzy -405 C Inkfathom Divers @Steven Belledin -406 C Invisibility @Pete Venters -407 C Ior Ruin Expedition @Chris Rahn -408 C Jace's Phantasm @Johann Bodin -409 C Jeering Homunculus @Steve Prescott -410 C Jeskai Sage @Craig J Spearing -411 R Jushi Apprentice @Glen Angus -412 C Jwar Isle Avenger @Ryan Pancoast -413 C Kiora's Dambreaker @Mathias Kollros -414 C Laboratory Brute @Yeong-Hao Han -415 U Laboratory Maniac @Jason Felix -416 U Labyrinth Guardian @Yeong-Hao Han -417 U Lay Claim @Chris Rallis -418 C Leapfrog @Aaron Miller -419 U Mahamoti Djinn @Greg Staples -420 C Mana Leak @Howard Lyon -421 C Man-o'-War @Jon J Muth -422 R Master Transmuter @Chippy -423 C Maximize Altitude @Mike Bierek -424 R Memory Erosion @Howard Lyon -425 C Memory Lapse @Greg Staples -426 U Merfolk Looter @Austin Hsu -427 C Messenger Jays @Lars Grant-West -428 C Metallic Rebuke @Eric Deschamps -429 C Mind Sculpt @Michael C. Hayes -430 R Mind Spring @Mark Zug -431 R The Mirari Conjecture @James Arnold -432 R Misdirection @Mathias Kollros -433 U Mistform Shrieker @Glen Angus -434 C Mist Raven @John Avon -435 C Mnemonic Wall @Trevor Claxton -436 C Monastery Loremaster @Ryan Alexander Lee -437 C Mulldrifter @Eric Fortune -438 U Murder of Crows @Drew Baker -439 C Mystical Teachings @Ron Spears -440 R Mystic Confluence @Kieran Yanner -441 C Mystic of the Hidden Way @Ryan Alexander Lee -442 C Nagging Thoughts @Seb McKinnon -443 C Negate @Magali Villeneuve -444 C Niblis of Dusk @Nils Hamm -445 C Nine-Tail White Fox @林玄泰 -446 C Ninja of the Deep Hours @Dan Scott -447 C Ojutai Interceptor @Johann Bodin -448 C Ojutai's Breath @Kev Walker -449 C Omenspeaker @Dallas Williams -450 U Opportunity @Allen Williams -451 C Opt @Tyler Jacobson -452 C Peel from Reality @Jason Felix -453 C Phantasmal Bear @Ryan Yee -454 U Phantasmal Dragon @Wayne Reynolds -455 U Phyrexian Ingester @Chris Rahn -456 R Phyrexian Metamorph @Jana Schirmer & Johannes Voss -457 C Pondering Mage @Tommy Arnold -458 C Portent @Christopher Burdett -459 U Predict @Rebecca Guay -460 C Preordain @Svetlin Velinov -461 U Prodigal Sorcerer @Eric Deschamps -462 U Propaganda @Clint Cearley -463 C Prosperous Pirates @Josh Hass -464 C Purple-Crystal Crab @Tan Yan Yao -465 C Refocus @Kev Walker -466 C Repulse @Aaron Boyd -467 C Retraction Helix @Phill Simmer -468 C Rhystic Study @Terese Nielsen -469 U Riftwing Cloudskate @Carl Critchlow -470 C Ringwarden Owl @Titus Lunter -471 U Rishadan Footpad @Adam Rex -472 C River Darter @Winona Nelson -473 C River Serpent @Christopher Moeller -474 C Riverwheel Aerialists @Jack Wang -475 U Sage of Lat-Nam @Matt Stewart -476 C Sailor of Means @Ryan Pancoast -477 R Sakashima the Impostor @rk post -478 C Sapphire Charm @Steve Luke -479 C Scroll Thief @Alex Horley-Orlandelli -480 C Sea Gate Oracle @Daniel Ljunggren -481 U Sealock Monster @Adam Paquette -482 C Secrets of the Golden City @Jason Felix -483 C Send to Sleep @Cynthia Sheppard -484 R Serendib Efreet @Matt Stewart -485 C Shaper Parasite @rk post -486 C Shimmerscale Drake @Tony Foti -487 C Shipwreck Looter @Wayne Reynolds -488 U Sigiled Starfish @Nils Hamm -489 C Silent Observer @Lake Hurwitz -490 U Silvergill Adept @Magali Villeneuve -491 C Singing Bell Strike @Chase Stone -492 U Skaab Goliath @Volkan Baǵa -493 C Skitter Eel @Mathias Kollros -494 C Skittering Crustacean @Jason Felix -495 U Sleep @Chris Rahn -496 C Slipstream Eel @Mark Tedin -497 C Slither Blade @Zezhou Chen -498 C Snap @Véronique Meignaud -499 C Snapping Drake @Todd Lockwood -500 C Somber Hoverguard @Adam Rex -501 U Soothsaying @Pat Lewis -502 U Sphinx's Tutelage @Slawomir Maniak -503 C Spire Monitor @Daniel Ljunggren -504 C Steady Progress @Efrem Palacios -505 C Stitched Drake @Chris Rahn -506 C Storm Sculptor @Sidharth Chaturvedi -507 C Strategic Planning @Matt Stewart -508 C Stream of Thought @Seb McKinnon -509 R Stunt Double @Joseph Meehan -510 C Surrakar Banisher @Matt Cavotta -511 C Syncopate @Tommy Arnold -512 U Syr Elenora, the Discerning @Mila Pesic -513 R Talrand, Sky Summoner @Svetlin Velinov -514 C Tandem Lookout @Kev Walker -515 M Teferi, Temporal Archmage @Tyler Jacobson -516 C Temporal Fissure @Seb McKinnon -517 M Temporal Mastery @Franz Vohwinkel -518 U Thieving Magpie @Una Fricker -519 C Thornwind Faeries @Rebecca Guay -520 C Thoughtcast @Greg Hildebrandt -521 C Thought Collapse @Sara Winters -522 C Thought Scour @David Rapoza -523 U Thrummingbird @Efrem Palacios -524 C Thunder Drake @Yeong-Hao Han -525 C Tidal Warrior @Daren Bader -526 C Tidal Wave @Brian Snõddy -527 U Tinker @Mike Raabe -528 C Totally Lost @David Palumbo -529 U Trail of Evidence @Daniel Ljunggren -530 C Treasure Cruise @Cynthia Sheppard -531 C Treasure Hunt @Daren Bader -532 U Treasure Mage @Ryan Pancoast -533 C Trinket Mage @Scott Chou -534 U Triton Tactics @Jack Wang -535 C Turn Aside @Jaime Jones -536 C Uncomfortable Chill @Izzy -537 C Vapor Snag @Raymond Swanland -538 C Vigean Graftmage @Alan Pollack -539 U Wall of Frost @Mike Bierek -540 C Warden of Evos Isle @Nils Hamm -541 C Watercourser @Mathias Kollros -542 C Wave-Wing Elemental @John Severin Brassell -543 C Weldfast Wingsmith @Dan Scott -544 C Welkin Tern @Yutaka Li -545 R Whelming Wave @Slawomir Maniak -546 C Whiplash Trap @Zoltan Boros & Gabor Szikszai -547 R Whir of Invention @Christine Choi -548 C Windcaller Aven @Uriah Voth -549 C Wind Drake @Todd Lockwood -550 U Wind-Kin Raiders @Shreya Shetty -551 C Windrider Eel @Austin Hsu -552 C Wind Strider @Magali Villeneuve -553 C Wishcoin Crab @James Paick -554 C Wishful Merfolk @Livia Prima -555 C Wretched Gryff @Darek Zabrocki -556 C Write into Being @Yeong-Hao Han -557 U Youthful Scholar @Cynthia Sheppard -558 C Absorb Vis @Brandon Kitkouski -559 C Accursed Spirit @Kev Walker -560 C Aid the Fallen @Sara Winters -561 C Alesha's Vanguard @Torstein Nordstrand -562 C Alley Strangler @Efflam Mercier -563 C Altar's Reap @Tyler Jacobson -564 C Ambitious Aetherborn @Josu Hernaiz -565 C Ancestral Vengeance @Yohann Schepacz -566 U Animate Dead @Bastien L. Deharme -567 U Annihilate @Kev Walker -568 C Bala Ged Scorpion @Daarken -569 U Baleful Ammit @Seb McKinnon -570 C Balustrade Spy @Jaime Jones -571 C Bartizan Bats @Nils Hamm -572 C Bitter Revelation @Viktor Titov -573 C Black Cat @David Palumbo -574 U Black Knight @Christopher Moeller -575 R Black Market @Jeff Easley -576 C Bladebrand @Winona Nelson -577 C Blessing of Belzenlok @Joe Slucher -578 C Blighted Bat @Nils Hamm -579 C Blightsoil Druid @Nils Hamm -580 C Blistergrub @Daarken -581 U Blood Artist @Johannes Voss -582 C Bloodrite Invoker @Svetlin Velinov -583 C Bone Splinters @Cole Eastburn -584 C Boon of Emrakul @Svetlin Velinov -585 U Breeding Pit @Adrian Smith -586 C Butcher's Glee @Jesper Ejsing -587 U Cabal Therapy @Raymond Swanland -588 C Cackling Imp @Matt Thompson -589 C Cadaver Imp @Dave Kendall -590 R Cairn Wanderer @Nils Hamm -591 C Caligo Skin-Witch @Daarken -592 U Carrion Feeder @Svetlin Velinov -593 C Carrion Imp @Kev Walker -594 C Catacomb Crocodile @Nils Hamm -595 C Catacomb Slug @Nils Hamm -596 U Caustic Tar @Jung Park -597 C Certain Death @Kev Walker -598 C Child of Night @Ash Wood -599 C Coat with Venom @Johann Bodin -600 R Collective Brutality @Johann Bodin -601 U Corpsehatch @Kekai Kotaki -602 C Costly Plunder @Ben Maier -603 C Covenant of Blood @Seb McKinnon -604 C Cower in Fear @Nils Hamm -605 C Crippling Blight @Lucas Graciano -606 C Crow of Dark Tidings @Tianhua X -607 C Cursed Minotaur @David Palumbo -608 C Daring Demolition @Svetlin Velinov -609 U Darkblast @Randy Gallegos -610 C Dark Dabbling @Bastien L. Deharme -611 C Dark Ritual @Clint Langley -612 C Dark Withering @Wayne Reynolds -613 U Dauthi Mindripper @Allen Williams -614 C Deadbridge Shaman @Nils Hamm -615 C Deadeye Tormentor @Eric Deschamps -616 R Deadly Tempest @Cliff Childs -617 C Dead Reveler @David Palumbo -618 C Death Denied @James Paick -619 C Defeat @Dave Kendall -620 U Demonic Tutor @Scott Chou -621 C Demonic Vigor @Zoltan Boros -622 C Demon's Grasp @David Gaillet -623 C Desperate Castaways @Zoltan Boros -624 C Diabolic Edict @Franz Vohwinkel -625 R Dictate of Erebos @Michael C. Hayes -626 C Die Young @Ryan Yee -627 C Dinosaur Hunter @Tianhua X -628 C Dirge of Dread @Seb McKinnon -629 U Dismember @Terese Nielsen -630 C Disowned Ancestor @Zack Stella -631 C Doomed Dissenter @Tony Foti -632 C Douse in Gloom @Ryan Yee -633 R Drana, Kalastria Bloodchief @Mike Bierek -634 C Dreadbringer Lampads @Willian Murai -635 C Dread Drone @Raymond Swanland -636 U Dread Return @Svetlin Velinov -637 C Dregscape Zombie @Lars Grant-West -638 C Driver of the Dead @James Ryman -639 C Drudge Sentinel @Sara Winters -640 C Dukhara Scavenger @Sidharth Chaturvedi -641 C Dune Beetle @Grzegorz Rutkowski -642 C Duress @Steven Belledin -643 C Dusk Charger @Lucas Graciano -644 C Dusk Legion Zealot @Winona Nelson -645 U The Eldest Reborn @Ravenna Tran -646 C Epicure of Blood @Anna Steinbauer -647 C Erg Raiders @Kev Walker -648 C Eternal Thirst @Clint Cearley -649 C Evincar's Justice @Hannibal King -650 C Executioner's Capsule @Warren Mahy -651 U Exsanguinate @Carl Critchlow -652 C Eyeblight's Ending @Ron Spears -653 U Fallen Angel @Matthew D. Wilson -654 C Farbog Revenant @Min Yum -655 U Fatal Push @Eric Deschamps -656 C Fen Hauler @Sidharth Chaturvedi -657 C Feral Abomination @Darek Zabrocki -658 C Festercreep @Jeff Easley -659 C Festering Newt @Eric Deschamps -660 C Fetid Imp @Nils Hamm -661 C Fill with Fright @Luca Zontini -662 C First-Sphere Gargantua @Randy Vargas -663 C Flesh to Dust @Julie Dillon -664 U Fretwork Colony @Christopher Burdett -665 C Fungal Infection @Filip Burburan -666 U Genju of the Fens @Tsutomu Kawade -667 C Ghostly Changeling @Chuck Lukacs -668 C Ghoulcaller's Accomplice @Dave Kendall -669 U Gifted Aetherborn @Ryan Yee -670 U Go for the Throat @David Rapoza -671 R Gonti, Lord of Luxury @Daarken -672 C Grasping Scoundrel @Steve Prescott -673 R Gravecrawler @Steven Belledin -674 C Gravedigger @Dermot Power -675 C Gravepurge @Nils Hamm -676 M Grave Titan @Nils Hamm -677 C Gray Merchant of Asphodel @Robbie Trevino -678 C Grim Affliction @Erica Yang -679 C Grim Discovery @Christopher Moeller -680 C Grixis Slavedriver @Dave Kendall -681 C Grotesque Mutation @Dan Scott -682 C Gruesome Fate @Even Amundsen -683 C Gurmag Angler @YW Tang -684 R Haakon, Stromgald Scourge @Mark Zug -685 C Hideous End @Zoltan Boros & Gabor Szikszai -686 C Hired Blade @Mark Behm -687 C Hound of the Farbogs @Christine Choi -688 U Hunter of Eyeblights @Jesper Ejsing -689 R Hypnotic Specter @Greg Staples -690 C Induce Despair @Igor Kieryluk -691 C Infernal Scarring @Mike Bierek -692 U Infest @Karl Kopinski -693 C Innocent Blood @Carl Critchlow -694 U Inquisition of Kozilek @Volkan Baǵa -695 C Instill Infection @Chris Rahn -696 C Kalastria Nightwatch @Jama Jurabaev -697 C Krumar Bond-Kin @Kev Walker -698 C Lawless Broker @Darek Zabrocki -699 C Lazotep Behemoth @Zezhou Chen -700 C Lethal Sting @Randy Vargas -701 M Liliana, Death's Majesty @Chris Rallis -702 R Living Death @Mark Winters -703 U Lord of the Accursed @Grzegorz Rutkowski -704 C Macabre Waltz @Willian Murai -705 C Marauding Boneslasher @Victor Adame Minguez -706 C March of the Drowned @Ben Wootten -707 C Mark of the Vampire @Winona Nelson -708 C Marsh Hulk @Raf Sarmento -709 C Mephitic Vapors @Darek Zabrocki -710 C Merciless Resolve @Chase Stone -711 C Miasmic Mummy @E. M. Gist -712 C Mind Rake @Jason Rainville -713 C Mind Rot @Steve Luke -714 R Mind Shatter @Michael Sutfin -715 C Mire's Malice @Jakub Kasper -716 C Moment of Craving @Steven Belledin -717 C Murder @Allen Williams -718 C Murderous Compulsion @David Palumbo -719 C Nameless Inversion @Jeff Miracola -720 C Nantuko Husk @Carl Critchlow -721 C Never Happened @Aaron Miller -722 R Nighthowler @Nils Hamm -723 C Night's Whisper @John Severin Brassell -724 C Nirkana Assassin @Viktor Titov -725 U Noxious Dragon @Svetlin Velinov -726 C Okiba-Gang Shinobi @Mark Zug -727 C Painful Lesson @Adrian Majkrzak -728 U Perish @Rebecca Guay -729 C Pestilence @Pete Venters -730 R Phyrexian Arena @Svetlin Velinov -731 R Phyrexian Plaguelord @Kev Walker -732 C Phyrexian Rager @Stephan Martiniere -733 U Phyrexian Reclamation @rk post -734 C Pit Keeper @Anthony S. Waters -735 U Plaguecrafter @Anna Steinbauer -736 C Plagued Rusalka @Alex Horley-Orlandelli -737 C Plague Wight @Tomasz Jedruszek -738 C Prakhata Club Security @Igor Kieryluk -739 C Prowling Pangolin @Tomasz Jedruszek -740 C Queen's Agent @Winona Nelson -741 U Quest for the Gravelord @Chris Rahn -742 C Rabid Bloodsucker @Seb McKinnon -743 C Rakdos Drake @Karl Kopinski -744 C Rakshasa's Secret @Magali Villeneuve -745 U Ravenous Chupacabra @Daarken -746 C Read the Bones @Lars Grant-West -747 C Reaper of Night @Jeff Simpson -748 U Reassembling Skeleton @Austin Hsu -749 C Reckless Imp @Torstein Nordstrand -750 U Reckless Spite @Karl Kopinski -751 C Recover @Bastien L. Deharme -752 C Renegade Demon @Tomasz Jedruszek -753 C Renegade's Getaway @Ryan Yee -754 C Returned Centaur @Lucas Graciano -755 R Revel in Riches @Eric Deschamps -756 U Revenant @Terese Nielsen -757 C Rite of the Serpent @Seb McKinnon -758 C Rotfeaster Maggot @Yeong-Hao Han -759 C Ruin Rat @Shreya Shetty -760 R Rune-Scarred Demon @Michael Komarck -761 U Sadistic Hypnotist @Paolo Parente -762 C Scarab Feast @Tony Foti -763 C Scrounger of Souls @Zezhou Chen -764 C Scuttling Death @Thomas M. Baxa -765 C Seal of Doom @Ralph Horsley -766 U Sengir Vampire @Kev Walker -767 R Sewer Nemesis @Nils Hamm -768 C Shadowcloak Vampire @Cynthia Sheppard -769 C Shambling Attendants @Daarken -770 C Shambling Goblin @Yeong-Hao Han -771 U Shriekmaw @Steve Prescott -772 U Shrouded Lore @Kev Walker -773 C Silumgar Butcher @Dave Kendall -774 U Skeletal Scrying @Bob Petillo -775 C Skeleton Archer @Randy Vargas -776 C Skulking Ghost @Robert Bliss -777 U Smiting Helix @Evan Shipard -778 M Sorin Markov @Michael Komarck -779 C Spreading Rot @Yeong-Hao Han -780 U Stab Wound @Scott Chou -781 C Stallion of Ashmouth @Chris Rahn -782 C Stinkweed Imp @Nils Hamm -783 U Street Wraith @Cyril Van Der Haegen -784 C Stromkirk Patrol @Karl Kopinski -785 C Subtle Strike @David Palumbo -786 C Sultai Runemark @Volkan Baǵa -787 C Tar Snare @Karl Kopinski -788 U Tavern Swindler @Cynthia Sheppard -789 C Tendrils of Corruption @Vance Kovacs -790 C Thallid Omnivore @Mathias Kollros -791 C Thornbow Archer @Kev Walker -792 C Thorn of the Black Rose @David Gaillet -793 C Thraben Foulbloods @Deruchenko Alexander -794 C Tidy Conclusion @Bastien L. Deharme -795 R Torment of Hailfire @Grzegorz Rutkowski -796 C Torment of Venom @Johann Bodin -797 C Touch of Moonglove @Scott Murphy -798 R Toxin Sliver @Lars Grant-West -799 C Tragic Slip @Christopher Moeller -800 C Trespasser's Curse @David Palumbo -801 U Trial of Ambition @Johann Bodin -802 C Twins of Maurer Estate @Darek Zabrocki -803 C Typhoid Rats @Kev Walker -804 C Unburden @Svetlin Velinov -805 C Undercity's Embrace @Tyler Walpole -806 C Untamed Hunger @Willian Murai -807 C Unyielding Krumar @Viktor Titov -808 C Urborg Uprising @Adam Rex -809 C Vampire Champion @Craig J Spearing -810 C Vampire Envoy @Johannes Voss -811 U Vampire Hexmage @Eric Deschamps -812 C Vampire Lacerator @Steve Argyle -813 U Vampire Nighthawk @Jason Chan -814 C Vessel of Malignity @Kieran Yanner -815 C Virulent Swipe @Raymond Swanland -816 C Voracious Null @Karl Kopinski -817 C Vraska's Finisher @Igor Kieryluk -818 C Wake of Vultures @Jeff Miracola -819 C Walking Corpse @Igor Kieryluk -820 U Walk the Plank @Kieran Yanner -821 C Wander in Death @Seb McKinnon -822 C Warteye Witch @Steve Prescott -823 C Weight of the Underworld @Wesley Burt -824 C Weirded Vampire @David Gaillet -825 U Wight of Precinct Six @Ryan Barger -826 U Will-o'-the-Wisp @Rob Alexander -827 C Windgrace Acolyte @Bayard Wu -828 C Wrench Mind @Pete Venters -829 U Yargle, Glutton of Urborg @Jehan Choo -830 C Zulaport Chainmage @Chris Rallis -831 C Act of Treason @Scott Murphy -832 U Act on Impulse @Brad Rigney -833 U Ahn-Crop Crasher @Seb McKinnon -834 C Ainok Tracker @Evan Shipard -835 C Akroan Sergeant @Zack Stella -836 C Alchemist's Greeting @Jakub Kasper -837 R Alesha, Who Smiles at Death @Anastasia Ovchinnikova -838 U Ancient Grudge @Ryan Yee -839 U Anger @Svetlin Velinov -840 R Anger of the Gods @Noah Bradley -841 U Arc Trail @Marc Simonetti -842 C Arrow Storm @Steve Prescott -843 C Atarka Efreet @Izzy -844 U Avalanche Riders @Edward P. Beard, Jr. -845 C Avarax @Greg Staples -846 C Azra Bladeseeker @Joe Slucher -847 C Balduvian Horde @Daarken -848 C Barging Sergeant @Filip Burburan -849 C Barrage of Boulders @Zoltan Boros -850 C Battle Rampart @Steve Prescott -851 C Battle-Rattle Shaman @Warren Mahy -852 U Beetleback Chief @Wayne England -853 C Bellows Lizard @Jack Wang -854 C Blades of Velis Vel @Ron Spencer -855 C Blastfire Bolt @Phill Simmer -856 C Blazing Volley @Zezhou Chen -857 C Blindblast @Sidharth Chaturvedi -858 C Bloodfire Expert @Raymond Swanland -859 C Bloodlust Inciter @Anthony Palumbo -860 C Bloodmad Vampire @Johannes Voss -861 C Blood Ogre @Christopher Moeller -862 C Bloodstone Goblin @Magali Villeneuve -863 C Blow Your House Down @Ravenna Tran -864 C Blur of Blades @Anna Steinbauer -865 C Boggart Brute @Igor Kieryluk -866 C Boiling Earth @Titus Lunter -867 C Bombard @Alex Konstad -868 C Bomber Corps @Chase Stone -869 C Borrowed Hostility @Volkan Baǵa -870 C Boulder Salvo @Vincent Proce -871 C Brazen Buccaneers @Joseph Meehan -872 C Brazen Wolves @Nils Hamm -873 R Brimstone Dragon @David A. Cherry -874 U Brimstone Mage @Volkan Baǵa -875 C Bring Low @Slawomir Maniak -876 U Browbeat @Mark Tedin -877 C Brute Strength @Wayne Reynolds -878 C Built to Smash @Svetlin Velinov -879 C Burst Lightning @Vance Kovacs -880 C Canyon Lurkers @Cynthia Sheppard -881 C Cartouche of Zeal @Kieran Yanner -882 C Cathartic Reunion @Howard Lyon -883 C Chandra's Pyrohelix @Aleksi Briclot -884 C Chandra's Revolution @Clint Cearley -885 R Chaos Warp @Trevor Claxton -886 U Charging Monstrosaur @Zack Stella -887 C Chartooth Cougar @Chase Stone -888 C Cinder Hellion @Jason Kang -889 C Cleansing Screech @Tingting Yeh -890 C Cobblebrute @Eytan Zana -891 C Cosmotronic Wave @Titus Lunter -892 R Cragganwick Cremator @Jeremy Enecio -893 C Crash Through @Izzy -894 C Crowd's Favor @Slawomir Maniak -895 C Crown-Hunter Hireling @Izzy -896 U Curse of Opulence @Kieran Yanner -897 U Curse of the Nightly Hunt @Daarken -898 M Daretti, Scrap Savant @Dan Scott -899 U Death by Dragons @Austin Hsu -900 C Defiant Ogre @Craig J Spearing -901 C Demolish @Jesper Ejsing -902 C Desert Cerodon @Igor Kieryluk -903 U Desperate Ravings @John Stanko -904 C Destructive Tampering @Titus Lunter -905 C Direct Current @Dan Scott -906 C Distemper of the Blood @Ben Maier -907 U Dragon Breath @Greg Staples -908 C Dragon Egg @Jack Wang -909 C Dragon Fodder @Jaime Jones -910 C Dragonsoul Knight @Justin Sweet -911 U Dragon Whelp @Steven Belledin -912 C Dual Shot @Joseph Meehan -913 C Dynacharge @Matt Stewart -914 C Earth Elemental @Anthony S. Waters -915 C Emrakul's Hatcher @Jaime Jones -916 U Enthralling Victor @Winona Nelson -917 C Erratic Explosion @Gary Ruddell -918 C Expedite @Kieran Yanner -919 C Faithless Looting @Gabor Szikszai -920 C Falkenrath Reaver @Daarken -921 C Fall of the Hammer @Adam Paquette -922 C Fervent Strike @Winona Nelson -923 C Fierce Invocation @Tyler Jacobson -924 C Fiery Hellhound @Ted Galaday -925 C Fiery Temper @Johannes Voss -926 U Fireball @Dave Dorman -927 C Firebolt @Chris Rallis -928 C Firebrand Archer @John Stanko -929 C Fire Elemental @Slawomir Maniak -930 U Flame Jab @rk post -931 U Flameshot @Mark Brill -932 U Flametongue Kavu @Slawomir Maniak -933 U Flamewave Invoker @Dave Dorman -934 C Fling @Lucas Graciano -935 C Forge Devil @Austin Hsu -936 C Foundry Street Denizen @Raoul Vitale -937 C Frenzied Raptor @Jesper Ejsing -938 C Frilled Deathspitter @Zoltan Boros -939 C Frontline Devastator @Tommy Arnold -940 C Frontline Rebel @Winona Nelson -941 C Furnace Whelp @Shreya Shetty -942 C Fury Charm @John Avon -943 C Galvanic Blast @Marc Simonetti -944 C Generator Servant @Mathias Kollros -945 U Genju of the Spires @Joel Thomas -946 C Geomancer's Gambit @Adam Paquette -947 C Ghitu Lavarunner @Jesper Ejsing -948 U Ghitu War Cry @Douglas Shuler -949 C Giant Spectacle @Johann Bodin -950 U Goblin Assault @Jaime Jones -951 C Goblin Balloon Brigade @Lars Grant-West -952 U Goblin Bombardment @Dave Kendall -953 C Goblin Fireslinger @Pete Venters -954 R Goblin Game @DiTerlizzi -955 C Goblin Locksmith @Mark Behm -956 U Goblin Matron @Jesper Ejsing -957 C Goblin Motivator @Johann Bodin -958 U Goblin Oriflamme @David Palumbo -959 R Goblin Piledriver @Matt Cavotta -960 C Goblin Roughrider @Jesper Ejsing -961 U Goblin Warchief @Karl Kopinski -962 C Goblin War Paint @Karl Kopinski -963 C Gorehorn Minotaurs @Wayne Reynolds -964 C Gore Swine @Jack Wang -965 C Granitic Titan @Yohann Schepacz -966 C Grapeshot @Clint Cearley -967 C Gravitic Punch @Randy Vargas -968 R Greater Gargadon @Rob Alexander -969 C Gut Shot @Greg Staples -970 U Guttersnipe @Mathias Kollros -971 C Hammerhand @Tomasz Jedruszek -972 C Hanweir Lancer @Steve Prescott -973 C Hardened Berserker @Viktor Titov -974 C Hijack @Svetlin Velinov -975 C Hulking Devil @Joseph Meehan -976 C Hyena Pack @Winona Nelson -977 C Ill-Tempered Cyclops @Peter Mohrbacher -978 C Impact Tremors @Lake Hurwitz -979 R Impending Disaster @Pete Venters -980 U Incorrigible Youths @Winona Nelson -981 C Inferno Fist @James Ryman -982 U Inferno Jet @Jakub Kasper -983 C Ingot Chewer @Kev Walker -984 C Insolent Neonate @Deruchenko Alexander -985 C Jackal Pup @Kev Walker -986 C Kaervek's Torch @John Coulthart -987 M Kargan Dragonlord @Jason Chan -988 C Keldon Halberdier @Paolo Parente -989 C Keldon Overseer @Jason A. Engle -990 C Khenra Scrapper @Jesper Ejsing -991 M Kiki-Jiki, Mirror Breaker @Steven Belledin -992 C Kiln Fiend @Adi Granov -993 C Kird Ape @Terese Nielsen -994 R Knollspine Dragon @Steve Prescott -995 C Kolaghan Stormsinger @Scott Murphy -996 R Krenko, Mob Boss @Karl Kopinski -997 C Krenko's Command @Karl Kopinski -998 C Krenko's Enforcer @Karl Kopinski -999 C Leaping Master @Anastasia Ovchinnikova -1000 C Leopard-Spotted Jiao @Shinchuen Chen -1001 U Lightning Bolt @Christopher Moeller -1002 C Lightning Javelin @Seb McKinnon -1003 C Lightning Shrieker @Slawomir Maniak -1004 C Lightning Talons @Johann Bodin -1005 C Madcap Skills @Anthony Palumbo -1006 C Magma Spray @Svetlin Velinov -1007 C Makindi Sliderunner @Matt Stewart -1008 C Mardu Warshrieker @Yefim Kligerman -1009 U Mark of Mutiny @Mike Bierek -1010 C Maximize Velocity @Svetlin Velinov -1011 C Miner's Bane @Adam Paquette -1012 R Mizzix's Mastery @Dan Scott -1013 U Mogg Fanatic @Brom -1014 C Mogg Flunkies @Brom -1015 C Mogg War Marshal @Jesper Ejsing -1016 U Molten Rain @Sung Choi -1017 U Monastery Swiftspear @Steve Argyle -1018 C Mutiny @Gabor Szikszai -1019 C Nimble-Blade Khenra @Tomasz Jedruszek -1020 C Ondu Champion @Volkan Baǵa -1021 C Orcish Cannonade @Pete Venters -1022 C Orcish Oriflamme @Ben Thompson -1023 C Outnumber @Tyler Jacobson -1024 C Pillage @Jesper Ejsing -1025 R Preyseizer Dragon @Daarken -1026 U Price of Progress @Yohann Schepacz -1027 C Prickleboar @Jesper Ejsing -1028 C Prophetic Ravings @Lucas Graciano -1029 M Purphoros, God of the Forge @Eric Deschamps -1030 U Pyrotechnics @Matt Stewart -1031 C Quakefoot Cyclops @Mike Bierek -1032 R Rage Reflection @Terese Nielsen & Ron Spencer -1033 C Rampaging Cyclops @Tomasz Jedruszek -1034 R Reality Scramble @Simon Dominic -1035 C Reckless Fireweaver @Deruchenko Alexander -1036 C Reckless Wurm @Greg Staples -1037 U Recoup @Dave Dorman -1038 U Release the Ants @Ron Spencer -1039 R Release the Gremlins @Izzy -1040 C Renegade Tactics @Yeong-Hao Han -1041 U Rivals' Duel @Zoltan Boros & Gabor Szikszai -1042 U Roast @Zoltan Boros -1043 U Rolling Thunder @Yohann Schepacz -1044 C Rubblebelt Maaka @Eric Velhagen -1045 C Ruinous Gremlin @Steve Prescott -1046 C Rummaging Goblin @Slawomir Maniak -1047 C Run Amok @Svetlin Velinov -1048 C Rush of Adrenaline @Chris Rallis -1049 C Salivating Gremlins @Christopher Burdett -1050 C Samut's Sprint @Aleksi Briclot -1051 C Sarkhan's Rage @Chris Rahn -1052 C Screamreach Brawler @Slawomir Maniak -1053 C Seismic Shift @James Paick -1054 C Seismic Stomp @Chase Stone -1055 C Shatter @Jonas De Ro -1056 U Shattering Spree @Pat Lee -1057 C Shenanigans @Lindsey Look -1058 C Shock @Jason Rainville -1059 C Skirk Commando @Slawomir Maniak -1060 C Skirk Prospector @Slawomir Maniak -1061 C Smash to Smithereens @Pete Venters -1062 C Smelt @Zoltan Boros -1063 C Sparkmage Apprentice @Jaime Jones -1064 C Sparkspitter @Dan Scott -1065 C Sparktongue Dragon @Daarken -1066 U Spikeshot Goblin @Jason Kang -1067 U Staggershock @Raymond Swanland -1068 M Star of Extinction @Chris Rahn -1069 R Steamflogger Boss @Warren Mahy -1070 U Stormblood Berserker @Min Yum -1071 R Sudden Demise @Dan Scott -1072 U Sulfurous Blast @Jeff Miracola -1073 C Summit Prowler @Filip Burburan -1074 C Sun-Crowned Hunters @Aaron Miller -1075 C Swashbuckling @Josu Hernaiz -1076 C Sweatworks Brawler @Zack Stella -1077 C Swift Kick @Mathias Kollros -1078 C Tarfire @Omar Rayyan -1079 R Taurean Mauler @Dominick Domingo -1080 U Tectonic Rift @John Avon -1081 C Temur Battle Rage @Jaime Jones -1082 C Thresher Lizard @Craig J Spearing -1083 C Thrill of Possibility @Steve Argyle -1084 U Tibalt's Rager @Yongjae Choi -1085 C Torch Courier @Mark Zug -1086 R Two-Headed Giant @Simon Dominic -1087 C Uncaged Fury @Jason Kang -1088 C Undying Rage @Scott M. Fischer -1089 R Urza's Rage @Jim Murray -1090 C Valakut Invoker @Joseph Meehan -1091 C Valakut Predator @Kev Walker -1092 C Valley Dasher @Matt Stewart -1093 C Vandalize @Ryan Barger -1094 C Vent Sentinel @Chris Rahn -1095 C Vessel of Volatility @Kieran Yanner -1096 U Viashino Sandstalker @Andrew Robinson -1097 U Volcanic Dragon @Chris Rahn -1098 C Volcanic Rush @Ryan Barger -1099 C Voldaren Duelist @Jason Rainville -1100 C Wall of Fire @Dan Dos Santos -1101 C Wayward Giant @Filip Burburan -1102 R Wheel of Fate @Kev Walker -1103 C Wildfire Emissary @Richard Kane Ferguson -1104 C Wojek Bodyguard @Tyler Walpole -1105 U Young Pyromancer @Cynthia Sheppard -1106 C Zada's Commando @Zack Stella -1107 C Zealot of the God-Pharaoh @Gabor Szikszai -1108 C Abundant Growth @Vincent Proce -1109 U Acidic Slime @Karl Kopinski -1110 C Adventurous Impulse @Titus Lunter -1111 C Aerie Bowmasters @Matt Stewart -1112 U Affectionate Indrik @Steve Prescott -1113 C Aggressive Instinct @Wolk Sheep -1114 C Aggressive Urge @Jakub Kasper -1115 U Ainok Survivalist @Craig J Spearing -1116 C Alpine Grizzly @John Severin Brassell -1117 C Ambassador Oak @Steve Prescott -1118 U Ana Sanctuary @Rob Alexander -1119 U Ancestral Mask @Magali Villeneuve -1120 C Ancient Brontodon @Jakub Kasper -1121 U Ancient Stirrings @Vincent Proce -1122 C Arachnus Web @Karl Kopinski -1123 C Arbor Armament @Bayard Wu -1124 C Arbor Elf @rk post -1125 R Asceticism @Daarken -1126 C Aura Gnarlid @Lars Grant-West -1127 C Avacyn's Pilgrim @Jana Schirmer & Johannes Voss -1128 C Backwoods Survivalists @Chris Rallis -1129 C Baloth Gorger @Zezhou Chen -1130 C Basking Rootwalla @Heather Hudson -1131 C Bear Cub @Ron Spencer -1132 U Beastbreaker of Bala Ged @Karl Kopinski -1133 R Beastmaster Ascension @Alex Horley-Orlandelli -1134 U Beast Within @Jesper Ejsing -1135 U Become Immense @Jaime Jones -1136 C Beneath the Sands @Magali Villeneuve -1137 U Bestial Menace @Andrew Robinson -1138 R Birds of Paradise @Marcelo Vignali -1139 C Bitterblade Warrior @Slawomir Maniak -1140 C Bitterbow Sharpshooters @Bram Sels -1141 U Blanchwood Armor @Paolo Parente -1142 C Blastoderm @Nils Hamm -1143 R Bloom Tender @Chippy -1144 C Blossom Dryad @Shreya Shetty -1145 C Borderland Explorer @Lucas Graciano -1146 C Borderland Ranger @Zoltan Boros -1147 R Bow of Nylea @Yeong-Hao Han -1148 U Briarhorn @Nils Hamm -1149 C Bristling Boar @Svetlin Velinov -1150 C Broken Bond @Ryan Yee -1151 C Broodhunter Wurm @Svetlin Velinov -1152 C Byway Courier @Zoltan Boros -1153 C Call the Scions @Winona Nelson -1154 C Canopy Spider @Christopher Rush -1155 C Carnivorous Moss-Beast @Filip Burburan -1156 U Carpet of Flowers @Rebecca Guay -1157 C Caustic Caterpillar @Jack Wang -1158 C Centaur Courser @Vance Kovacs -1159 U Centaur Glade @Alex Horley-Orlandelli -1160 C Charging Rhino @Daren Bader -1161 C Chatter of the Squirrel @Jim Nelson -1162 C Citanul Woodreaders @Steven Belledin -1163 C Clip Wings @Howard Lyon -1164 C Colossal Dreadmaw @Jesper Ejsing -1165 C Combo Attack @Sara Winters -1166 C Commune with Nature @Lars Grant-West -1167 C Commune with the Gods @Aleksi Briclot -1168 C Conifer Strider @YW Tang -1169 R Courser of Kruphix @Eric Deschamps -1170 U Creeping Mold @Cliff Childs -1171 C Crop Rotation @Daniel Ljunggren -1172 C Crossroads Consecrator @David Gaillet -1173 U The Crowd Goes Wild @Mike Burns -1174 C Crowned Ceratok @Steve Prescott -1175 C Crushing Canopy @Simon Dominic -1176 C Cultivate @Anthony Palumbo -1177 C Daggerback Basilisk @Jesper Ejsing -1178 C Dawn's Reflection @John Avon -1179 C Death-Hood Cobra @Jason Felix -1180 R Defense of the Heart @Rebecca Guay -1181 U Desert Twister @Noah Bradley -1182 U Destructor Dragon @Peter Mohrbacher -1183 C Dissenter's Deliverance @Bastien L. Deharme -1184 U Domesticated Hydra @Mathias Kollros -1185 C Dragonscale Boon @Mark Winters -1186 C Dragon-Scarred Bear @Lars Grant-West -1187 R Dungrove Elder @Matt Stewart -1188 C Durkwood Baloth @Dan Frazier -1189 C Earthen Arms @Dan Scott -1190 R Eldritch Evolution @Jason Rainville -1191 C Elemental Uprising @Svetlin Velinov -1192 C Elephant Guide @Tomasz Jedruszek -1193 C Elves of Deep Shadow @Justin Sweet -1194 C Elvish Fury @Randy Vargas -1195 C Elvish Visionary @D. Alexander Gregory -1196 C Elvish Warrior @Christopher Moeller -1197 C Ember Weaver @Steve Prescott -1198 C Epic Confrontation @Wayne Reynolds -1199 C Essence Warden @Terese Nielsen -1200 U Eternal Witness @Chris Rahn -1201 U Experiment One @Chase Stone -1202 C Explore @Johann Bodin -1203 U Explosive Vegetation @John Avon -1204 C Ezuri's Archers @Shelly Wan -1205 C Fade into Antiquity @Noah Bradley -1206 C Farseek @Martina Pilcerova -1207 C Feed the Clan @Winona Nelson -1208 C Feral Krushok @Kev Walker -1209 C Feral Prowler @Ben Wootten -1210 C Ferocious Zheng @Yutaka Li -1211 C Fertile Ground @Heather Hudson -1212 C Fierce Empath @Johann Bodin -1213 C Fog @Jaime Jones -1214 C Formless Nurturing @Cliff Childs -1215 C Frontier Mastodon @Nils Hamm -1216 U Gaea's Blessing @David Palumbo -1217 C Gaea's Protector @Grzegorz Rutkowski -1218 C Giant Growth @Noah Bradley -1219 C Giant Spider @Aaron Miller -1220 C Gift of Growth @YW Tang -1221 C Gift of Paradise @Ryan Pancoast -1222 C Glade Watcher @Jesper Ejsing -1223 C Gnarlid Pack @Johann Bodin -1224 C Grapple with the Past @Howard Lyon -1225 C Grazing Gladehart @Ryan Pancoast -1226 C Greater Basilisk @James Ryman -1227 C Greater Sandwurm @Steven Belledin -1228 R Greenbelt Rampager @Filip Burburan -1229 C Greenwood Sentinel @Johann Bodin -1230 C Groundswell @Chris Rahn -1231 C Guardian Shield-Bearer @Lindsey Look -1232 U Hamlet Captain @Wayne Reynolds -1233 C Hardy Veteran @Suzanne Helmigh -1234 U Harmonize @Paul Lee -1235 C Harrow @Rob Alexander -1236 C Hooded Brawler @Daarken -1237 C Hooting Mandrills @Mike Bierek -1238 R Hornet Nest @Adam Paquette -1239 C Hunter's Ambush @David Palumbo -1240 C Hunt the Weak @Mathias Kollros -1241 R Hurricane @John Howe -1242 U Imperious Perfect @Scott M. Fischer -1243 U Invigorate @Mark Zug -1244 C Ivy Lane Denizen @Winona Nelson -1245 C Jungle Delver @Kieran Yanner -1246 C Jungle Wayfinder @Chris Seaman -1247 C Kavu Climber @Jonathan Kuo -1248 C Kavu Primarch @Kev Walker -1249 C Khalni Heart Expedition @Jason Chan -1250 C Kin-Tree Warden @Volkan Baǵa -1251 C Kozilek's Predator @Steve Argyle -1252 C Kraul Foragers @Aaron Miller -1253 C Kraul Warrior @David Rapoza -1254 C Krosan Druid @Bastien L. Deharme -1255 C Krosan Tusker @Kev Walker -1256 C Larger Than Life @Jaime Jones -1257 C Lay of the Land @Chuck Lukacs -1258 C Lead by Example @Johannes Voss -1259 C Lead the Stampede @Efrem Palacios -1260 C Lifespring Druid @Willian Murai -1261 C Lignify @Jesper Ejsing -1262 C Llanowar Elves @Chris Rahn -1263 C Llanowar Empath @Warren Mahy -1264 C Longshot Squad @Wesley Burt -1265 U Lure @D. Alexander Gregory -1266 U Manglehorn @Lius Lasahido -1267 C Mantle of Webs @Mathias Kollros -1268 C Map the Wastes @Volkan Baǵa -1269 R Meandering Towershell @YW Tang -1270 C Might of the Masses @Johann Bodin -1271 C Mulch @Christopher Moeller -1272 R Mycoloth @Raymond Swanland -1273 C Natural Connection @Wesley Burt -1274 C Naturalize @Daniel Ljunggren -1275 C Nature's Claim @Raoul Vitale -1276 C Nature's Lore @Terese Nielsen -1277 C Nest Invader @Trevor Claxton -1278 C Nettle Sentinel @Kev Walker -1279 C New Horizons @Noah Bradley -1280 C Nimble Mongoose @Kev Walker -1281 M Nissa, Voice of Zendikar @Raymond Swanland -1282 C Oakgnarl Warrior @Jim Nelson -1283 C Ondu Giant @Igor Kieryluk -1284 C Oran-Rief Invoker @Anastasia Ovchinnikova -1285 C Overgrown Armasaur @Joseph Meehan -1286 U Overgrown Battlement @Franz Vohwinkel -1287 U Overrun @Carl Critchlow -1288 C Pack's Favor @Lius Lasahido -1289 C Peema Outrider @Craig J Spearing -1290 U Pelakka Wurm @Daniel Ljunggren -1291 C Penumbra Spider @Jeff Easley -1292 U Phantom Centaur @Carl Critchlow -1293 C Pierce the Sky @Slawomir Maniak -1294 C Pinion Feast @Ryan Barger -1295 C Plummet @Filip Burburan -1296 C Pouncing Cheetah @Matt Stewart -1297 C Prey's Vengeance @Jesper Ejsing -1298 C Prey Upon @G-host Lee -1299 C Priest of Titania @Rebecca Guay -1300 C Pulse of Murasa @Matt Stewart -1301 C Quiet Disrepair @Glen Angus -1302 U Rain of Thorns @Sam Burley -1303 C Rampant Growth @Steven Belledin -1304 U Rancor @Kev Walker -1305 C Ranger's Guile @Steve Prescott -1306 C Ravenous Leucrocota @Christopher Burdett -1307 C Reclaim @Andrew Robinson -1308 C Reclaiming Vines @Bastien L. Deharme -1309 U Regrowth @Dan Scott -1310 C Relic Crush @Steven Belledin -1311 C Return to the Earth @Mark Winters -1312 C Revive @Matthew D. Wilson -1313 C Rhox Maulers @Zoltan Boros -1314 C Riparian Tiger @Igor Kieryluk -1315 U River Boa @Paul Bonner -1316 U Roar of the Wurm @Kev Walker -1317 C Root Out @Daniel Ljunggren -1318 C Roots @Scott Murphy -1319 C Rosethorn Halberd @Kari Christensen -1320 C Runeclaw Bear @Jesper Ejsing -1321 C Sagu Archer @Steven Belledin -1322 C Sakura-Tribe Elder @Carl Critchlow -1323 C Saproling Migration @Christine Choi -1324 C Savage Punch @Wesley Burt -1325 C Scatter the Seeds @Rob Alexander -1326 C Seal of Strength @Noah Bradley -1327 C Search for Tomorrow @Randy Gallegos -1328 U Seek the Horizon @Min Yum -1329 C Seek the Wilds @Anna Steinbauer -1330 M Selvala, Heart of the Wilds @Tyler Jacobson -1331 R Shamanic Revelation @Cynthia Sheppard -1332 C Shape the Sands @Ryan Yee -1333 C Siege Wurm @Filip Burburan -1334 C Silhana Ledgewalker @James Wong -1335 C Silkweaver Elite @Magali Villeneuve -1336 C Snake Umbra @Christopher Moeller -1337 U Snapping Sailback @Dan Scott -1338 R Spawning Grounds @Vincent Proce -1339 U Spider Spawning @Daniel Ljunggren -1340 R Squirrel Wrangler @Carl Critchlow -1341 C Stalking Tiger @Terese Nielsen -1342 C Stoic Builder @Howard Lyon -1343 C Strength in Numbers @Ron Spencer -1344 C Sylvan Bounty @Chris Rahn -1345 U Sylvan Scrying @Daniel Ljunggren -1346 C Tajuru Pathwarden @Victor Adame Minguez -1347 U Tajuru Warcaller @Anastasia Ovchinnikova -1348 C Take Down @Izzy -1349 C Talons of Wildwood @Uriah Voth -1350 R Tempt with Discovery @William Wu -1351 C Terrain Elemental @Magali Villeneuve -1352 C Territorial Baloth @Jesper Ejsing -1353 C Thornhide Wolves @Scott Murphy -1354 U Thornscape Battlemage @Matt Cavotta -1355 C Thornweald Archer @Dave Kendall -1356 U Thrashing Brontodon @Jakub Kasper -1357 C Thrive @Daren Bader -1358 M Thrun, the Last Troll @Jason Chan -1359 U Timberwatch Elf @Yohann Schepacz -1360 C Time to Feed @Wayne Reynolds -1361 R Tireless Tracker @Eric Deschamps -1362 C Titanic Growth @Ryan Pancoast -1363 U Triumph of the Hordes @Izzy -1364 C Tukatongue Thallid @Vance Kovacs -1365 U Turntimber Basilisk @Goran Josic -1366 C Vastwood Gorger @Kieran Yanner -1367 U Venom Sliver @Dave Kendall -1368 R Vigor @Jim Murray -1369 C Watcher in the Web @Vincent Proce -1370 C Wellwisher @Karl Kopinski -1371 C Wild Growth @Tony Szczudlo -1372 C Wild Mongrel @Anthony S. Waters -1373 C Wild Nacatl @Wayne Reynolds -1374 C Wildsize @Jim Murray -1375 C Wolfkin Bond @Lindsey Look -1376 U Woodborn Behemoth @Matt Stewart -1377 C Woolly Loxodon @Karla Ortiz -1378 U Wren's Run Vanquisher @Paolo Parente -1379 C Yavimaya Elder @Matt Cavotta -1380 C Yavimaya Sapherd @Christine Choi -1381 C Yeva's Forcemage @Eric Deschamps -1382 U Zendikar's Roil @Sam Burley -1383 U Abzan Charm @Mathias Kollros -1384 C Abzan Guide @Steve Prescott -1385 C Agony Warp @Dave Allsop -1386 U Akroan Hoplite @Igor Kieryluk -1387 M Animar, Soul of Elements @Peter Mohrbacher -1388 U Armadillo Cloak @Wayne Reynolds -1389 U Armament Corps @Steven Belledin -1390 R Assemble the Legion @Eric Deschamps -1391 M Athreos, God of Passage @Ryan Barger -1392 U Aura Shards @Ron Spencer -1393 U Azorius Charm @Zoltan Boros -1394 U Azra Oddsmaker @Josh Hass -1395 U Baleful Strix @Nils Hamm -1396 U Baloth Null @Jakub Kasper -1397 U Bear's Companion @Winona Nelson -1398 U Belligerent Brontodon @Dan Scott -1399 U Bituminous Blast @Raymond Swanland -1400 U Bladewing the Risen @Seb McKinnon -1401 U Blightning @Thomas M. Baxa -1402 U Bloodbraid Elf @Steve Argyle -1403 U Boros Challenger @Gabor Szikszai -1404 U Bounding Krasis @Jack Wang -1405 U Call of the Nightwing @Adam Paquette -1406 U Campaign of Vengeance @Igor Kieryluk -1407 U Cauldron Dance @Donato Giancola -1408 U Citadel Castellan @Anastasia Ovchinnikova -1409 C Coiling Oracle @Mark Zug -1410 U Contraband Kingpin @Anna Steinbauer -1411 U Corpsejack Menace @Chris Rahn -1412 U Crosis's Charm @Marco Nelor -1413 U Cunning Breezedancer @Todd Lockwood -1414 U Deathreap Ritual @Steve Argyle -1415 C Deny Reality @Jean-Sébastien Rossbach -1416 U Draconic Disciple @Yongjae Choi -1417 M Dragon Broodmother @Jaime Jones -1418 M Dragonlord Ojutai @Chase Stone -1419 U Drana's Emissary @Karl Kopinski -1420 U Engineered Might @Lake Hurwitz -1421 U Esper Charm @Michael Bruinsma -1422 U Ethercaste Knight @Steven Belledin -1423 C Ethereal Ambush @Lius Lasahido -1424 U Extract from Darkness @Dallas Williams -1425 U Fires of Yavimaya @Val Mayerik -1426 U Flame-Kin Zealot @Arnie Swekel -1427 U Fusion Elemental @Michael Komarck -1428 U Gelectrode @Dan Scott -1429 U Ghor-Clan Rampager @Charles Urbach -1430 M The Gitrog Monster @Jason Kang -1431 C Goblin Deathraiders @Raymond Swanland -1432 C Grim Contest @Phill Simmer -1433 R Guided Passage @Alex Horley-Orlandelli -1434 C Hammer Dropper @Lake Hurwitz -1435 U Hidden Stockpile @Darek Zabrocki -1436 U Highspire Mantis @Igor Kieryluk -1437 C Hypothesizzle @Chris Seaman -1438 U Iroas's Champion @Marco Nelor -1439 U Join Shields @Winona Nelson -1440 U Jungle Barrier @Christine Choi -1441 U Kathari Remnant @Anthony S. Waters -1442 U Kin-Tree Invocation @Ryan Alexander Lee -1443 U Kiora's Follower @Eric Deschamps -1444 U Kiss of the Amesha @Todd Lockwood -1445 R Kolaghan's Command @Daarken -1446 M Kruphix, God of Horizons @Daarken -1447 C Lawmage's Binding @Mark Behm -1448 U Lightning Helix @Kev Walker -1449 M Maelstrom Archangel @Cyril Van Der Haegen -1450 U Mardu Roughrider @Kev Walker -1451 C Martial Glory @Raymond Swanland -1452 U Maverick Thopterist @Zack Stella -1453 R Meddling Mage @Todd Lockwood -1454 U Mercurial Geists @Lake Hurwitz -1455 M Meren of Clan Nel Toth @Mark Winters -1456 U Migratory Route @Winona Nelson -1457 U Mortify @Nils Hamm -1458 U Naya Charm @Jesper Ejsing -1459 R Nemesis of Reason @Mark Tedin -1460 R Nin, the Pain Artist @Brad Rigney -1461 U Obelisk Spider @YW Tang -1462 U Ochran Assassin @Anna Steinbauer -1463 U Pillory of the Sleepless @Marc Simonetti -1464 U Plaxcaster Frogling @Greg Staples -1465 U Pollenbright Wings @Terese Nielsen -1466 U Putrefy @Clint Cearley -1467 C Qasali Pridemage @Chris Rahn -1468 M Queen Marchesa @Kieran Yanner -1469 R Questing Phelddagrif @Matt Cavotta -1470 U Raff Capashen, Ship's Mage @John Stanko -1471 U Raging Swordtooth @Izzy -1472 U Reclusive Artificer @Cynthia Sheppard -1473 U Reflector Mage @Willian Murai -1474 U Rhox War Monk @Dan Dos Santos -1475 C Riptide Crab @David Martin -1476 R Rith, the Awakener @Carl Critchlow -1477 U River Hoopoe @Ryan Pancoast -1478 C Rosemane Centaur @Nils Hamm -1479 U Satyr Enchanter @Sidharth Chaturvedi -1480 R Savage Knuckleblade @Chris Rahn -1481 U Savage Twister @John Avon -1482 U Sedraxis Specter @Cole Eastburn -1483 U Shambling Remains @Nils Hamm -1484 U Shardless Agent @Izzy -1485 U Shipwreck Singer @Daarken -1486 U Skyward Eye Prophets @Matt Stewart -1487 M Sliver Hivelord @Aleksi Briclot -1488 U Soul Manipulation @Carl Critchlow -1489 U Sprouting Thrinax @Jarreau Wimberly -1490 U Stormchaser Chimera @Greg Staples -1491 U Sultai Charm @Mathias Kollros -1492 U Sultai Soothsayer @Cynthia Sheppard -1493 R Supreme Verdict @Sam Burley -1494 U Tatyova, Benthic Druid @Mathias Kollros -1495 C Terminate @Wayne Reynolds -1496 U Thought Erasure @Anna Steinbauer -1497 R Time Sieve @Franz Vohwinkel -1498 C Tithe Drinker @Slawomir Maniak -1499 U Tower Gargoyle @Matt Cavotta -1500 U Treacherous Terrain @Titus Lunter -1501 U Underworld Coinsmith @Mark Winters -1502 U Unflinching Courage @Mike Bierek -1503 U Unlicensed Disintegration @Izzy -1504 U Urban Evolution @Eytan Zana -1505 U Vengeful Rebirth @Vance Kovacs -1506 R Violent Ultimatum @Raymond Swanland -1507 U Warden of the Eye @Howard Lyon -1508 R Wargate @Franz Vohwinkel -1509 U Wayfaring Temple @Peter Mohrbacher -1510 U Weapons Trainer @Greg Opalinski -1511 U Wee Dragonauts @Greg Staples -1512 U Winding Constrictor @Izzy -1513 U Woolly Thoctar @Wayne Reynolds -1514 R Yavimaya's Embrace @Eric Peterson -1515 R Yuriko, the Tiger's Shadow @Yongjae Choi -1516 U Zealous Persecution @Sara Winters -1517 C Zhur-Taa Druid @Mark Winters -1518 R Boros Reckoner @Howard Lyon -1519 R Debtors' Knell @Kev Walker -1520 R Dominus of Fealty @Kev Walker -1521 R Doomgape @Dave Allsop -1522 R Enchanted Evening @Rebecca Guay -1523 C Giantbaiting @Trevor Hairsine -1524 C Gift of Orzhova @Johannes Voss -1525 U Gwyllion Hedge-Mage @Todd Lockwood -1526 C Manamorphose @Jeff Miracola -1527 U Mistmeadow Witch @Greg Staples -1528 U Nucklavee @Trevor Hairsine -1529 R Oracle of Nectars @Brandon Kitkouski -1530 R Rhys the Redeemed @Steve Prescott -1531 U Rosheen Meanderer @Aleksi Briclot -1532 U Selesnya Guildmage @Mark Zug -1533 U Shrewd Hatchling @Carl Frank -1534 U Slave of Bolas @Steve Argyle -1535 U Thopter Foundry @Ralph Horsley -1536 U Claim // Fame @Jason Rainville -1537 R Commit // Memory @Ryan Alexander Lee -1538 C Fire // Ice @Dan Scott -1539 R Aetherflux Reservoir @Cliff Childs -1540 C Aether Spellbomb @Jim Nelson -1541 R Akroan Horse @Seb McKinnon -1542 C Alchemist's Vial @Lindsey Look -1543 M Alhammarret's Archive @Richard Wright -1544 C Alloy Myr @Matt Cavotta -1545 C Armillary Sphere @Franz Vohwinkel -1546 U Ashnod's Altar @Greg Staples -1547 R Basilisk Collar @Howard Lyon -1548 R Belbe's Portal @Mark Tedin -1549 C Blinding Souleater @Igor Kieryluk -1550 U Bomat Bazaar Barge @Christine Choi -1551 C Bone Saw @Kev Walker -1552 C Bonesplitter @Darrell Riche -1553 R Boompile @Filip Burburan -1554 U Bottle Gnomes @Ben Thompson -1555 U Burnished Hart @Yeong-Hao Han -1556 R Caged Sun @Scott Chou -1557 U Cathodion @Izzy -1558 R Cauldron of Souls @Ron Brown -1559 R Chromatic Lantern @Jung Park -1560 C Chromatic Star @Alex Horley-Orlandelli -1561 R Coat of Arms @Scott M. Fischer -1562 U Coldsteel Heart @Mark Romanoski -1563 U Consulate Dreadnought @Cliff Childs -1564 U Contagion Clasp @Anthony Palumbo -1565 C Copper Carapace @Franz Vohwinkel -1566 R Coveted Jewel @Jason A. Engle -1567 U Crenellated Wall @Arnie Swekel -1568 U Crystal Ball @Ron Spencer -1569 U Crystal Chimes @Donato Giancola -1570 U Crystal Shard @Doug Chaffee -1571 R Darksteel Garrison @David Martin -1572 U Diamond Mare @Alayna Danner -1573 R Dolmen Gate @Richard Sardinha -1574 R Draco @Sam Wood -1575 U Dragon Mask @Craig Hooper -1576 R Eater of Days @Mark Tedin -1577 M Eldrazi Monument @Mark Tedin -1578 U Elixir of Immortality @Zoltan Boros & Gabor Szikszai -1579 U Emmessi Tome @Craig J Spearing -1580 U Etched Oracle @Matt Cavotta -1581 U Farmstead Gleaner @Josh Hass -1582 U Filigree Familiar @Izzy -1583 C Flayer Husk @Igor Kieryluk -1584 R Font of Mythos @Dave Allsop -1585 U Foundry Inspector @Jason A. Engle -1586 U Fountain of Renewal @Adam Paquette -1587 C Frogmite @Terese Nielsen -1588 R Goblin Charbelcher @Jesper Ejsing -1589 C Gruul Signet @Efrem Palacios -1590 C Guardians of Meletis @Magali Villeneuve -1591 U Heavy Arbalest @David Rapoza -1592 U Helm of Awakening @Adam Rex -1593 U Herald's Horn @Jason Felix -1594 C Hexplate Golem @Matt Cavotta -1595 U Hot Soup @David Palumbo -1596 U Icy Manipulator @Titus Lunter -1597 C Implement of Malice @Titus Lunter -1598 C Irontread Crusher @Jason A. Engle -1599 U Juggernaut @Kev Walker -1600 U Lightning Greaves @Michael Komarck -1601 C Lotus Petal @April Lee -1602 U Loxodon Warhammer @Jeremy Jarvis -1603 M Mana Crypt @Matt Stewart -1604 U Mask of Memory @Alan Pollack -1605 U Meteorite @Scott Murphy -1606 U Millikin @Alex Horley-Orlandelli -1607 U Millstone @Yeong-Hao Han -1608 R Mimic Vat @Donato Giancola -1609 C Mind Stone @Adam Rex -1610 U Mishra's Bauble @Chippy -1611 C Moonglove Extract @Terese Nielsen -1612 U Mortarpod @Eric Deschamps -1613 U Myr Retriever @Trevor Hairsine -1614 C Myr Sire @Jaime Jones -1615 C Ornithopter @Franz Vohwinkel -1616 U Palladium Myr @Alan Pollack -1617 C Peace Strider @Igor Kieryluk -1618 U Perilous Myr @Jason Felix -1619 R Phyrexian Soulgorger @Brian Snõddy -1620 U Pilgrim's Eye @Dan Scott -1621 R Precursor Golem @Chippy -1622 C Prophetic Prism @John Avon -1623 C Renegade Map @Lake Hurwitz -1624 U Rhonas's Monument @Cliff Childs -1625 U Sandstone Oracle @Eric Deschamps -1626 C Serrated Arrows @John Avon -1627 C Short Sword @John Severin Brassell -1628 U Sigil of Valor @Dan Scott -1629 C Simic Locket @Yeong-Hao Han -1630 U Skullclamp @Daniel Ljunggren -1631 C Skyscanner @Adam Paquette -1632 R Solemn Simulacrum @Dan Scott -1633 U Sol Ring @Mike Bierek -1634 U Sorcerer's Broom @Jung Park -1635 U Spy Kit @Aaron Miller -1636 U Sunset Pyramid @Jonas De Ro -1637 U Suspicious Bookcase @Anastasia Ovchinnikova -1638 R Sword of the Animist @Daniel Ljunggren -1639 C Thought Vessel @rk post -1640 U Thran Dynamo @Ron Spears -1641 U Thran Golem @Ron Spears -1642 U Tormod's Crypt @Lars Grant-West -1643 R Tower of Eons @John Avon -1644 R Trading Post @Adam Paquette -1645 U Trepanation Blade @Daniel Ljunggren -1646 U Umbral Mantle @Richard Sardinha -1647 C Universal Automaton @Ben Maier -1648 C Universal Solvent @Christopher Moeller -1649 U Whispersilk Cloak @Daren Bader -1650 U Aether Hub @Sam Burley -1651 U Akoum Refuge @Fred Fields -1652 C Ancient Den @Rob Alexander -1653 U Ancient Ziggurat @John Avon -1654 U Arcane Sanctum @Anthony Francisco -1655 R Arch of Orazca @Titus Lunter -1656 C Ash Barrens @Jonas De Ro -1657 U Blasted Landscape @Ciruelo -1658 U Blighted Fen @Jonas De Ro -1659 C Blossoming Sands @Sam Burley -1660 C Bojuka Bog @Howard Lyon -1661 U Crumbling Necropolis @Dave Kendall -1662 C Darksteel Citadel @John Avon -1663 C Dismal Backwater @Sam Burley -1664 U Dreadship Reef @Lars Grant-West -1665 C Evolving Wilds @Steven Belledin -1666 U Faerie Conclave @Stephan Martiniere -1667 U Field of Ruin @Dimitar Marinski -1668 C Forgotten Cave @Noah Bradley -1669 U Frontier Bivouac @Titus Lunter -1670 C Gateway Plaza @Jedd Chevrier -1671 U Ghost Quarter @Peter Mohrbacher -1672 R Gilt-Leaf Palace @Christopher Moeller -1673 U Goblin Burrows @David Martin -1674 U Graypelt Refuge @Philip Straub -1675 C Great Furnace @Rob Alexander -1676 C Jungle Hollow @Eytan Zana -1677 U Jungle Shrine @Wayne Reynolds -1678 U Kazandu Refuge @Franz Vohwinkel -1679 U Krosan Verge @Tony Szczudlo -1680 U Mishra's Factory @Scott Chou -1681 U New Benalia @Richard Wright -1682 C Orzhov Basilica @John Avon -1683 U Reliquary Tower @Jesper Ejsing -1684 U Rogue's Passage @Christine Choi -1685 U Sandsteppe Citadel @Sam Burley -1686 C Scoured Barrens @Eytan Zana -1687 U Sejiri Refuge @Ryan Pancoast -1688 U Skarrg, the Rage Pits @Martina Pilcerova -1689 C Swiftwater Cliffs @Eytan Zana -1690 U Tectonic Edge @Vincent Proce -1691 U Temple of the False God @James Zapata -1692 C Thornwood Falls @Eytan Zana -1693 U Unclaimed Territory @Dimitar Marinski -1694 U Wirewood Lodge @Anthony S. Waters +ScryfallCode=PLST [White CommonUncommon] -Abzan Falconer -Abzan Runemark -Acrobatic Maneuver -Adanto Vanguard -Affa Protector -Ainok Bond-Kin -Ajani's Pridemate -Alley Evasion -Angelic Gift -Angelic Purge -Angel of Mercy -Angel of Renewal -Angelsong -Apostle's Blessing -Arrest -Arrester's Zeal -Artful Maneuver -Aura of Silence -Aven Battle Priest -Aven Sentry -Ballynock Cohort -Bartered Cow -Battle Mastery -Benevolent Ancestor -Blade Instructor -Blessed Spirits -Bonds of Faith -Borrowed Grace -Built to Last -Bulwark Giant -Candlelight Vigil -Caravan Escort -Cartouche of Solidarity -Cast Out -Cathar's Companion -Caught in the Brights -Celestial Crusader -Celestial Flare -Center Soul -Champion of Arashin -Charge -Cliffside Lookout -Cloudshift -Coalition Honor Guard -Collar the Culprit -Congregate -Conviction -Countless Gears Renegade -Court Homunculus -Court Street Denizen -Crib Swap -Danitha Capashen, Paragon -Daring Skyjek -Darksteel Mutation -Dauntless Cathar -Dawnglare Invoker -Decommission -Defiant Strike -Desperate Sentry -Devilthorn Fox -Disenchant -Dismantling Blow -Disposal Mummy -Divine Favor -Djeru's Renunciation -Djeru's Resolve -Doomed Traveler -Dragon Bell Monk -Dragon's Eye Sentry -Dragon's Presence -Eddytrail Hawk -Emerge Unscathed -Encampment Keeper -Encircling Fissure -Enduring Victory -Enlightened Ascetic -Ephemeral Shields -Ephemerate -Excavation Elephant -Excoriate -Expedition Raptor -Expose Evil -Exultant Skymarcher -Eyes in the Skies -Faithbearer Paladin -Faith's Fetters -Feat of Resistance -Felidar Guardian -Felidar Umbra -Fencing Ace -Fiend Hunter -Firehoof Cavalry -Forsake the Worldly -Fortify -Fragmentize -Geist of the Moors -Ghostblade Eidolon -Gideon's Lawkeeper -Gift of Estates -Glaring Aegis -Gleam of Resistance -Glint-Sleeve Artisan -God-Pharaoh's Faithful -Gods Willing -Grasp of the Hieromancer -Great-Horn Krushok -Guided Strike -Gustcloak Skirmisher -Gust Walker -Healer's Hawk -Healing Grace -Healing Hands -Heavy Infantry -Humble -Hyena Umbra -Infantry Veteran -Inquisitor's Ox -Inspired Charge -Intrusive Packbeast -Iona's Judgment -Isolation Zone -Jubilant Mascot -Knight of Cliffhaven -Knight of Old Benalia -Knight of Sorrows -Knight of the Skyward Eye -Knight of the Tusk -Kor Bladewhirl -Kor Firewalker -Kor Hookmaster -Kor Sky Climber -Kor Skyfisher -Leonin Relic-Warder -Lieutenants of the Guard -Lightform -Lightwalker -Lingering Souls -Lone Missionary -Lonesome Unicorn -Looming Altisaur -Lotus-Eye Mystics -Loxodon Partisan -Loyal Sentry -Lunarch Mantle -Mardu Hordechief -Marked by Honor -Meditation Puzzle -Midnight Guard -Momentary Blink -Moonlit Strider -Mortal's Ardor -Mother of Runes -Ninth Bridge Patrol -Nyx-Fleece Ram -Ondu Greathorn -Ondu War Cleric -Oreskos Swiftclaw -Oust -Pacifism -Palace Jailer -Palace Sentinels -Paladin of the Bloodstained -Path of Peace -Path to Exile -Peace of Mind -Pegasus Courser -Pentarch Ward -Pitfall Trap -Pressure Point -Promise of Bunrei -Prowling Caracal -Rally the Peasants -Raptor Companion -Refurbish -Renewed Faith -Resurrection -Retreat to Emeria -Reviving Dose -Rhet-Crop Spearmaster -Righteous Cause -Rootborn Defenses -Sacred Cat -Sanctum Gargoyle -Sandstorm Charger -Savannah Lions -Seal of Cleansing -Searing Light -Seeker of the Way -Sensor Splicer -Seraph of the Suns -Serra Disciple -Serra's Embrace -Sheer Drop -Shining Aerosaur -Shining Armor -Shoulder to Shoulder -Siegecraft -Silverchase Fox -Skyhunter Skirmisher -Skymarcher Aspirant -Skyspear Cavalry -Slash of Talons -Snubhorn Sentry -Soulmender -Soul Parry -Soul-Strike Technique -Soul Summons -Soul Warden -Sparring Mummy -Spectral Gateguards -Stalwart Aven -Star-Crowned Stag -Stave Off -Steadfast Sentinel -Stone Haven Medic -Sunlance -Sunrise Seeker -Suppression Bonds -Survive the Night -Swords to Plowshares -Take Vengeance -Tandem Tactics -Terashi's Grasp -Territorial Hammerskull -Thraben Inspector -Thraben Standard Bearer -Topan Freeblade -Unwavering Initiate -Veteran Swordsmith -Village Bell-Ringer -Voice of the Provinces -Wake the Reflections -Wall of Omens -Wall of One Thousand Cuts -Wandering Champion -War Behemoth -Wild Griffin -Windborne Charge -Winged Shepherd -Wing Shards -Youthful Knight -Zealous Strike +Abzan Falconer|PLST +Abzan Runemark|PLST +Acrobatic Maneuver|PLST +Adanto Vanguard|PLST +Affa Protector|PLST +Ainok Bond-Kin|PLST +Ajani's Pridemate|PLST +Alley Evasion|PLST +Angelic Gift|PLST +Angelic Purge|PLST +Angel of Mercy|PLST +Angel of Renewal|PLST +Angelsong|PLST +Apostle's Blessing|PLST +Arrest|PLST +Arrester's Zeal|PLST +Artful Maneuver|PLST +Aura of Silence|PLST +Aven Battle Priest|PLST +Aven Sentry|PLST +Ballynock Cohort|PLST +Bartered Cow|PLST +Battle Mastery|PLST +Benevolent Ancestor|PLST +Blade Instructor|PLST +Blessed Spirits|PLST +Bonds of Faith|PLST +Borrowed Grace|PLST +Built to Last|PLST +Bulwark Giant|PLST +Candlelight Vigil|PLST +Caravan Escort|PLST +Cartouche of Solidarity|PLST +Cast Out|PLST +Cathar's Companion|PLST +Caught in the Brights|PLST +Celestial Crusader|PLST +Celestial Flare|PLST +Center Soul|PLST +Champion of Arashin|PLST +Charge|PLST +Cliffside Lookout|PLST +Cloudshift|PLST +Coalition Honor Guard|PLST +Collar the Culprit|PLST +Congregate|PLST +Conviction|PLST +Countless Gears Renegade|PLST +Court Homunculus|PLST +Court Street Denizen|PLST +Crib Swap|PLST +Danitha Capashen, Paragon|PLST +Daring Skyjek|PLST +Darksteel Mutation|PLST +Dauntless Cathar|PLST +Dawnglare Invoker|PLST +Decommission|PLST +Defiant Strike|PLST +Desperate Sentry|PLST +Devilthorn Fox|PLST +Disenchant|PLST +Dismantling Blow|PLST +Disposal Mummy|PLST +Divine Favor|PLST +Djeru's Renunciation|PLST +Djeru's Resolve|PLST +Doomed Traveler|PLST +Dragon Bell Monk|PLST +Dragon's Eye Sentry|PLST +Dragon's Presence|PLST +Eddytrail Hawk|PLST +Emerge Unscathed|PLST +Encampment Keeper|PLST +Encircling Fissure|PLST +Enduring Victory|PLST +Enlightened Ascetic|PLST +Ephemeral Shields|PLST +Ephemerate|PLST +Excavation Elephant|PLST +Excoriate|PLST +Expedition Raptor|PLST +Expose Evil|PLST +Exultant Skymarcher|PLST +Eyes in the Skies|PLST +Faithbearer Paladin|PLST +Faith's Fetters|PLST +Feat of Resistance|PLST +Felidar Guardian|PLST +Felidar Umbra|PLST +Fencing Ace|PLST +Fiend Hunter|PLST +Firehoof Cavalry|PLST +Forsake the Worldly|PLST +Fortify|PLST +Fragmentize|PLST +Geist of the Moors|PLST +Ghostblade Eidolon|PLST +Gideon's Lawkeeper|PLST +Gift of Estates|PLST +Glaring Aegis|PLST +Gleam of Resistance|PLST +Glint-Sleeve Artisan|PLST +God-Pharaoh's Faithful|PLST +Gods Willing|PLST +Grasp of the Hieromancer|PLST +Great-Horn Krushok|PLST +Guided Strike|PLST +Gustcloak Skirmisher|PLST +Gust Walker|PLST +Healer's Hawk|PLST +Healing Grace|PLST +Healing Hands|PLST +Heavy Infantry|PLST +Humble|PLST +Hyena Umbra|PLST +Infantry Veteran|PLST +Inquisitor's Ox|PLST +Inspired Charge|PLST +Intrusive Packbeast|PLST +Iona's Judgment|PLST +Isolation Zone|PLST +Jubilant Mascot|PLST +Knight of Cliffhaven|PLST +Knight of Old Benalia|PLST +Knight of Sorrows|PLST +Knight of the Skyward Eye|PLST +Knight of the Tusk|PLST +Kor Bladewhirl|PLST +Kor Firewalker|PLST +Kor Hookmaster|PLST +Kor Sky Climber|PLST +Kor Skyfisher|PLST +Leonin Relic-Warder|PLST +Lieutenants of the Guard|PLST +Lightform|PLST +Lightwalker|PLST +Lingering Souls|PLST +Lone Missionary|PLST +Lonesome Unicorn|PLST +Looming Altisaur|PLST +Lotus-Eye Mystics|PLST +Loxodon Partisan|PLST +Loyal Sentry|PLST +Lunarch Mantle|PLST +Mardu Hordechief|PLST +Marked by Honor|PLST +Meditation Puzzle|PLST +Midnight Guard|PLST +Momentary Blink|PLST +Moonlit Strider|PLST +Mortal's Ardor|PLST +Mother of Runes|PLST +Ninth Bridge Patrol|PLST +Nyx-Fleece Ram|PLST +Ondu Greathorn|PLST +Ondu War Cleric|PLST +Oreskos Swiftclaw|PLST +Oust|PLST +Pacifism|PLST +Palace Jailer|PLST +Palace Sentinels|PLST +Paladin of the Bloodstained|PLST +Path of Peace|PLST +Path to Exile|PLST +Peace of Mind|PLST +Pegasus Courser|PLST +Pentarch Ward|PLST +Pitfall Trap|PLST +Pressure Point|PLST +Promise of Bunrei|PLST +Prowling Caracal|PLST +Rally the Peasants|PLST +Raptor Companion|PLST +Refurbish|PLST +Renewed Faith|PLST +Resurrection|PLST +Retreat to Emeria|PLST +Reviving Dose|PLST +Rhet-Crop Spearmaster|PLST +Righteous Cause|PLST +Rootborn Defenses|PLST +Sacred Cat|PLST +Sanctum Gargoyle|PLST +Sandstorm Charger|PLST +Savannah Lions|PLST +Seal of Cleansing|PLST +Searing Light|PLST +Seeker of the Way|PLST +Sensor Splicer|PLST +Seraph of the Suns|PLST +Serra Disciple|PLST +Serra's Embrace|PLST +Sheer Drop|PLST +Shining Aerosaur|PLST +Shining Armor|PLST +Shoulder to Shoulder|PLST +Siegecraft|PLST +Silverchase Fox|PLST +Skyhunter Skirmisher|PLST +Skymarcher Aspirant|PLST +Skyspear Cavalry|PLST +Slash of Talons|PLST +Snubhorn Sentry|PLST +Soulmender|PLST +Soul Parry|PLST +Soul-Strike Technique|PLST +Soul Summons|PLST +Soul Warden|PLST +Sparring Mummy|PLST +Spectral Gateguards|PLST +Stalwart Aven|PLST +Star-Crowned Stag|PLST +Stave Off|PLST +Steadfast Sentinel|PLST +Stone Haven Medic|PLST +Sunlance|PLST +Sunrise Seeker|PLST +Suppression Bonds|PLST +Survive the Night|PLST +Swords to Plowshares|PLST +Take Vengeance|PLST +Tandem Tactics|PLST +Terashi's Grasp|PLST +Territorial Hammerskull|PLST +Thraben Inspector|PLST +Thraben Standard Bearer|PLST +Topan Freeblade|PLST +Unwavering Initiate|PLST +Veteran Swordsmith|PLST +Village Bell-Ringer|PLST +Voice of the Provinces|PLST +Wake the Reflections|PLST +Wall of Omens|PLST +Wall of One Thousand Cuts|PLST +Wandering Champion|PLST +War Behemoth|PLST +Wild Griffin|PLST +Windborne Charge|PLST +Winged Shepherd|PLST +Wing Shards|PLST +Youthful Knight|PLST +Zealous Strike|PLST [Blue CommonUncommon] -Academy Journeymage -Aethersnipe -Aether Spellbomb -Aether Tradewinds -Amass the Components -Amphin Pathmage -Anticipate -Arcane Denial -Archaeomancer -Archetype of Imagination -Artificer's Assistant -Augur of Bolas -Augury Owl -Bastion Inventor -Befuddle -Benthic Giant -Bewilder -Blue Elemental Blast -Borrowing 100,000 Arrows -Brainstorm -Brilliant Spectrum -Brine Elemental -Calculated Dismissal -Caller of Gales -Call to Heel -Cancel -Capture Sphere -Cartouche of Knowledge -Castaway's Despair -Catalog -Chart a Course -Chillbringer -Choking Tethers -Chronostutter -Circular Logic -Citywatch Sphinx -Claustrophobia -Clear the Mind -Cloak of Mists -Cloud Elemental -Cloudkin Seer -Cloudreader Sphinx -Clutch of Currents -Compelling Argument -Concentrate -Condescend -Containment Membrane -Contingency Plan -Contradict -Convolute -Coralhelm Guide -Coral Trickster -Counterspell -Court Hussar -Crashing Tide -Crush Dissent -Curiosity -Curio Vendor -Daze -Dazzling Lights -Decision Paralysis -Deep Analysis -Deep Freeze -Diminish -Dirgur Nemesis -Dispel -Displace -Distortion Strike -Divination -Doorkeeper -Dragon's Eye Savants -Drag Under -Dreadwaters -Dream Cache -Dream Twist -Eel Umbra -Embodiment of Spring -Enlightened Maniac -Ensoul Artifact -Errant Ephemeron -Essence Scatter -Everdream -Exclude -Fact or Fiction -Faerie Invaders -Faerie Mechanist -Failed Inspection -Fascination -Fathom Seer -Flashfreeze -Fledgling Mawcor -Fleeting Distraction -Fog Bank -Fogwalker -Foil -Forbidden Alchemy -Frantic Search -Frilled Sea Serpent -Frost Lynx -Gaseous Form -Ghost Ship -Glacial Crasher -Glint -Gone Missing -Grasp of Phantoms -Guard Gomazoa -Gurmag Drowner -Gush -Hieroglyphic Illumination -Hightide Hermit -Hinterland Drake -Horseshoe Crab -Humongulus -Impulse -Inkfathom Divers -Invisibility -Ior Ruin Expedition -Jace's Phantasm -Jeering Homunculus -Jeskai Sage -Jwar Isle Avenger -Kiora's Dambreaker -Laboratory Brute -Laboratory Maniac -Labyrinth Guardian -Lay Claim -Leapfrog -Mahamoti Djinn -Mana Leak -Man-o'-War -Maximize Altitude -Memory Lapse -Merfolk Looter -Messenger Jays -Metallic Rebuke -Mind Sculpt -Mist Raven -Mnemonic Wall -Monastery Loremaster -Mulldrifter -Murder of Crows -Mystical Teachings -Mystic of the Hidden Way -Nagging Thoughts -Negate -Niblis of Dusk -Nine-Tail White Fox -Ninja of the Deep Hours -Ojutai Interceptor -Ojutai's Breath -Omenspeaker -Opportunity -Opt -Peel from Reality -Phantasmal Bear -Phyrexian Ingester -Pondering Mage -Portent -Predict -Preordain -Prodigal Sorcerer -Propaganda -Prosperous Pirates -Purple-Crystal Crab -Refocus -Repulse -Retraction Helix -Riftwing Cloudskate -Ringwarden Owl -River Darter -River Serpent -Riverwheel Aerialists -Sage of Lat-Nam -Sailor of Means -Scroll Thief -Sea Gate Oracle -Sealock Monster -Secrets of the Golden City -Send to Sleep -Shaper Parasite -Shimmerscale Drake -Shipwreck Looter -Sigiled Starfish -Silent Observer -Silvergill Adept -Singing Bell Strike -Skaab Goliath -Skitter Eel -Skittering Crustacean -Sleep -Slipstream Eel -Slither Blade -Snap -Snapping Drake -Somber Hoverguard -Sphinx's Tutelage -Spire Monitor -Steady Progress -Stitched Drake -Storm Sculptor -Strategic Planning -Stream of Thought -Surrakar Banisher -Syncopate -Syr Elenora, the Discerning -Tandem Lookout -Temporal Fissure -Thornwind Faeries -Thoughtcast -Thought Collapse -Thought Scour -Thrummingbird -Thunder Drake -Tidal Warrior -Tidal Wave -Totally Lost -Trail of Evidence -Treasure Cruise -Treasure Hunt -Treasure Mage -Trinket Mage -Triton Tactics -Turn Aside -Uncomfortable Chill -Vapor Snag -Vigean Graftmage -Wall of Frost -Warden of Evos Isle -Watercourser -Wave-Wing Elemental -Weldfast Wingsmith -Welkin Tern -Whiplash Trap -Windcaller Aven -Wind Drake -Wind-Kin Raiders -Windrider Eel -Wind Strider -Wishcoin Crab -Wishful Merfolk -Write into Being -Youthful Scholar +Academy Journeymage|PLST +Aethersnipe|PLST +Aether Spellbomb|PLST +Aether Tradewinds|PLST +Amass the Components|PLST +Amphin Pathmage|PLST +Anticipate|PLST +Arcane Denial|PLST +Archaeomancer|PLST +Archetype of Imagination|PLST +Artificer's Assistant|PLST +Augur of Bolas|PLST +Augury Owl|PLST +Bastion Inventor|PLST +Befuddle|PLST +Benthic Giant|PLST +Bewilder|PLST +Blue Elemental Blast|PLST +Borrowing 100,000 Arrows|PLST +Brainstorm|PLST +Brilliant Spectrum|PLST +Brine Elemental|PLST +Calculated Dismissal|PLST +Caller of Gales|PLST +Call to Heel|PLST +Cancel|PLST +Capture Sphere|PLST +Cartouche of Knowledge|PLST +Castaway's Despair|PLST +Catalog|PLST +Chart a Course|PLST +Chillbringer|PLST +Choking Tethers|PLST +Chronostutter|PLST +Circular Logic|PLST +Citywatch Sphinx|PLST +Claustrophobia|PLST +Clear the Mind|PLST +Cloak of Mists|PLST +Cloud Elemental|PLST +Cloudkin Seer|PLST +Cloudreader Sphinx|PLST +Clutch of Currents|PLST +Compelling Argument|PLST +Concentrate|PLST +Condescend|PLST +Containment Membrane|PLST +Contingency Plan|PLST +Contradict|PLST +Convolute|PLST +Coralhelm Guide|PLST +Coral Trickster|PLST +Counterspell|PLST +Court Hussar|PLST +Crashing Tide|PLST +Crush Dissent|PLST +Curiosity|PLST +Curio Vendor|PLST +Daze|PLST +Dazzling Lights|PLST +Decision Paralysis|PLST +Deep Analysis|PLST +Deep Freeze|PLST +Diminish|PLST +Dirgur Nemesis|PLST +Dispel|PLST +Displace|PLST +Distortion Strike|PLST +Divination|PLST +Doorkeeper|PLST +Dragon's Eye Savants|PLST +Drag Under|PLST +Dreadwaters|PLST +Dream Cache|PLST +Dream Twist|PLST +Eel Umbra|PLST +Embodiment of Spring|PLST +Enlightened Maniac|PLST +Ensoul Artifact|PLST +Errant Ephemeron|PLST +Essence Scatter|PLST +Everdream|PLST +Exclude|PLST +Fact or Fiction|PLST +Faerie Invaders|PLST +Faerie Mechanist|PLST +Failed Inspection|PLST +Fascination|PLST +Fathom Seer|PLST +Flashfreeze|PLST +Fledgling Mawcor|PLST +Fleeting Distraction|PLST +Fog Bank|PLST +Fogwalker|PLST +Foil|PLST +Forbidden Alchemy|PLST +Frantic Search|PLST +Frilled Sea Serpent|PLST +Frost Lynx|PLST +Gaseous Form|PLST +Ghost Ship|PLST +Glacial Crasher|PLST +Glint|PLST +Gone Missing|PLST +Grasp of Phantoms|PLST +Guard Gomazoa|PLST +Gurmag Drowner|PLST +Gush|PLST +Hieroglyphic Illumination|PLST +Hightide Hermit|PLST +Hinterland Drake|PLST +Horseshoe Crab|PLST +Humongulus|PLST +Impulse|PLST +Inkfathom Divers|PLST +Invisibility|PLST +Ior Ruin Expedition|PLST +Jace's Phantasm|PLST +Jeering Homunculus|PLST +Jeskai Sage|PLST +Jwar Isle Avenger|PLST +Kiora's Dambreaker|PLST +Laboratory Brute|PLST +Laboratory Maniac|PLST +Labyrinth Guardian|PLST +Lay Claim|PLST +Leapfrog|PLST +Mahamoti Djinn|PLST +Mana Leak|PLST +Man-o'-War|PLST +Maximize Altitude|PLST +Memory Lapse|PLST +Merfolk Looter|PLST +Messenger Jays|PLST +Metallic Rebuke|PLST +Mind Sculpt|PLST +Mist Raven|PLST +Mnemonic Wall|PLST +Monastery Loremaster|PLST +Mulldrifter|PLST +Murder of Crows|PLST +Mystical Teachings|PLST +Mystic of the Hidden Way|PLST +Nagging Thoughts|PLST +Negate|PLST +Niblis of Dusk|PLST +Nine-Tail White Fox|PLST +Ninja of the Deep Hours|PLST +Ojutai Interceptor|PLST +Ojutai's Breath|PLST +Omenspeaker|PLST +Opportunity|PLST +Opt|PLST +Peel from Reality|PLST +Phantasmal Bear|PLST +Phyrexian Ingester|PLST +Pondering Mage|PLST +Portent|PLST +Predict|PLST +Preordain|PLST +Prodigal Sorcerer|PLST +Propaganda|PLST +Prosperous Pirates|PLST +Purple-Crystal Crab|PLST +Refocus|PLST +Repulse|PLST +Retraction Helix|PLST +Riftwing Cloudskate|PLST +Ringwarden Owl|PLST +River Darter|PLST +River Serpent|PLST +Riverwheel Aerialists|PLST +Sage of Lat-Nam|PLST +Sailor of Means|PLST +Scroll Thief|PLST +Sea Gate Oracle|PLST +Sealock Monster|PLST +Secrets of the Golden City|PLST +Send to Sleep|PLST +Shaper Parasite|PLST +Shimmerscale Drake|PLST +Shipwreck Looter|PLST +Sigiled Starfish|PLST +Silent Observer|PLST +Silvergill Adept|PLST +Singing Bell Strike|PLST +Skaab Goliath|PLST +Skitter Eel|PLST +Skittering Crustacean|PLST +Sleep|PLST +Slipstream Eel|PLST +Slither Blade|PLST +Snap|PLST +Snapping Drake|PLST +Somber Hoverguard|PLST +Sphinx's Tutelage|PLST +Spire Monitor|PLST +Steady Progress|PLST +Stitched Drake|PLST +Storm Sculptor|PLST +Strategic Planning|PLST +Stream of Thought|PLST +Surrakar Banisher|PLST +Syncopate|PLST +Syr Elenora, the Discerning|PLST +Tandem Lookout|PLST +Temporal Fissure|PLST +Thornwind Faeries|PLST +Thoughtcast|PLST +Thought Collapse|PLST +Thought Scour|PLST +Thrummingbird|PLST +Thunder Drake|PLST +Tidal Warrior|PLST +Tidal Wave|PLST +Totally Lost|PLST +Trail of Evidence|PLST +Treasure Cruise|PLST +Treasure Hunt|PLST +Treasure Mage|PLST +Trinket Mage|PLST +Triton Tactics|PLST +Turn Aside|PLST +Uncomfortable Chill|PLST +Vapor Snag|PLST +Vigean Graftmage|PLST +Wall of Frost|PLST +Warden of Evos Isle|PLST +Watercourser|PLST +Wave-Wing Elemental|PLST +Weldfast Wingsmith|PLST +Welkin Tern|PLST +Whiplash Trap|PLST +Windcaller Aven|PLST +Wind Drake|PLST +Wind-Kin Raiders|PLST +Windrider Eel|PLST +Wind Strider|PLST +Wishcoin Crab|PLST +Wishful Merfolk|PLST +Write into Being|PLST +Youthful Scholar|PLST [Black CommonUncommon] -Absorb Vis -Accursed Spirit -Aid the Fallen -Alesha's Vanguard -Alley Strangler -Altar's Reap -Ambitious Aetherborn -Ancestral Vengeance -Animate Dead -Annihilate -Bala Ged Scorpion -Baleful Ammit -Balustrade Spy -Bartizan Bats -Bitter Revelation -Black Cat -Bladebrand -Blessing of Belzenlok -Blighted Bat -Blightsoil Druid -Blistergrub -Blood Artist -Bloodrite Invoker -Bone Splinters -Boon of Emrakul -Breeding Pit -Butcher's Glee -Cabal Therapy -Cackling Imp -Cadaver Imp -Caligo Skin-Witch -Carrion Feeder -Carrion Imp -Catacomb Crocodile -Catacomb Slug -Caustic Tar -Certain Death -Child of Night -Coat with Venom -Corpsehatch -Costly Plunder -Covenant of Blood -Cower in Fear -Crippling Blight -Crow of Dark Tidings -Cursed Minotaur -Daring Demolition -Darkblast -Dark Dabbling -Dark Ritual -Dark Withering -Deadbridge Shaman -Deadeye Tormentor -Dead Reveler -Death Denied -Defeat -Demonic Tutor -Demonic Vigor -Demon's Grasp -Desperate Castaways -Diabolic Edict -Die Young -Dinosaur Hunter -Dirge of Dread -Dismember -Disowned Ancestor -Doomed Dissenter -Douse in Gloom -Dreadbringer Lampads -Dread Drone -Dread Return -Dregscape Zombie -Driver of the Dead -Drudge Sentinel -Dukhara Scavenger -Dune Beetle -Duress -Dusk Charger -Dusk Legion Zealot -Epicure of Blood -Erg Raiders -Eternal Thirst -Evincar's Justice -Executioner's Capsule -Eyeblight's Ending -Fallen Angel -Farbog Revenant -Fatal Push -Fen Hauler -Feral Abomination -Festercreep -Festering Newt -Fetid Imp -Fill with Fright -First-Sphere Gargantua -Flesh to Dust -Fretwork Colony -Fungal Infection -Genju of the Fens -Ghostly Changeling -Ghoulcaller's Accomplice -Gifted Aetherborn -Go for the Throat -Grasping Scoundrel -Gravedigger -Gravepurge -Gray Merchant of Asphodel -Grim Affliction -Grim Discovery -Grixis Slavedriver -Grotesque Mutation -Gruesome Fate -Gurmag Angler -Hideous End -Hired Blade -Hound of the Farbogs -Induce Despair -Infernal Scarring -Infest -Innocent Blood -Inquisition of Kozilek -Instill Infection -Kalastria Nightwatch -Krumar Bond-Kin -Lawless Broker -Lazotep Behemoth -Lethal Sting -Lord of the Accursed -Macabre Waltz -Marauding Boneslasher -March of the Drowned -Mark of the Vampire -Marsh Hulk -Mephitic Vapors -Merciless Resolve -Miasmic Mummy -Mind Rake -Mind Rot -Mire's Malice -Moment of Craving -Murder -Murderous Compulsion -Nameless Inversion -Nantuko Husk -Never Happened -Night's Whisper -Nirkana Assassin -Noxious Dragon -Okiba-Gang Shinobi -Painful Lesson -Phyrexian Rager -Phyrexian Reclamation -Pit Keeper -Plaguecrafter -Plagued Rusalka -Plague Wight -Prakhata Club Security -Prowling Pangolin -Queen's Agent -Quest for the Gravelord -Rabid Bloodsucker -Rakdos Drake -Rakshasa's Secret -Ravenous Chupacabra -Read the Bones -Reaper of Night -Reassembling Skeleton -Reckless Imp -Reckless Spite -Recover -Renegade Demon -Renegade's Getaway -Returned Centaur -Revenant -Rite of the Serpent -Rotfeaster Maggot -Ruin Rat -Scarab Feast -Scrounger of Souls -Scuttling Death -Seal of Doom -Sengir Vampire -Shadowcloak Vampire -Shambling Attendants -Shambling Goblin -Shriekmaw -Silumgar Butcher -Skeletal Scrying -Skeleton Archer -Skulking Ghost -Smiting Helix -Spreading Rot -Stab Wound -Stallion of Ashmouth -Stinkweed Imp -Street Wraith -Stromkirk Patrol -Subtle Strike -Sultai Runemark -Tar Snare -Tavern Swindler -Tendrils of Corruption -Thallid Omnivore -The Eldest Reborn -Thornbow Archer -Thorn of the Black Rose -Thraben Foulbloods -Tidy Conclusion -Torment of Venom -Touch of Moonglove -Tragic Slip -Trespasser's Curse -Trial of Ambition -Twins of Maurer Estate -Typhoid Rats -Unburden -Undercity's Embrace -Untamed Hunger -Unyielding Krumar -Urborg Uprising -Vampire Champion -Vampire Envoy -Vampire Hexmage -Vampire Lacerator -Vampire Nighthawk -Vessel of Malignity -Virulent Swipe -Voracious Null -Vraska's Finisher -Wake of Vultures -Walking Corpse -Walk the Plank -Wander in Death -Warteye Witch -Weight of the Underworld -Weirded Vampire -Wight of Precinct Six -Will-o'-the-Wisp -Windgrace Acolyte -Wrench Mind -Yargle, Glutton of Urborg -Zulaport Chainmage +Absorb Vis|PLST +Accursed Spirit|PLST +Aid the Fallen|PLST +Alesha's Vanguard|PLST +Alley Strangler|PLST +Altar's Reap|PLST +Ambitious Aetherborn|PLST +Ancestral Vengeance|PLST +Animate Dead|PLST +Annihilate|PLST +Bala Ged Scorpion|PLST +Baleful Ammit|PLST +Balustrade Spy|PLST +Bartizan Bats|PLST +Bitter Revelation|PLST +Black Cat|PLST +Bladebrand|PLST +Blessing of Belzenlok|PLST +Blighted Bat|PLST +Blightsoil Druid|PLST +Blistergrub|PLST +Blood Artist|PLST +Bloodrite Invoker|PLST +Bone Splinters|PLST +Boon of Emrakul|PLST +Breeding Pit|PLST +Butcher's Glee|PLST +Cabal Therapy|PLST +Cackling Imp|PLST +Cadaver Imp|PLST +Caligo Skin-Witch|PLST +Carrion Feeder|PLST +Carrion Imp|PLST +Catacomb Crocodile|PLST +Catacomb Slug|PLST +Caustic Tar|PLST +Certain Death|PLST +Child of Night|PLST +Coat with Venom|PLST +Corpsehatch|PLST +Costly Plunder|PLST +Covenant of Blood|PLST +Cower in Fear|PLST +Crippling Blight|PLST +Crow of Dark Tidings|PLST +Cursed Minotaur|PLST +Daring Demolition|PLST +Darkblast|PLST +Dark Dabbling|PLST +Dark Ritual|PLST +Dark Withering|PLST +Deadbridge Shaman|PLST +Deadeye Tormentor|PLST +Dead Reveler|PLST +Death Denied|PLST +Defeat|PLST +Demonic Tutor|PLST +Demonic Vigor|PLST +Demon's Grasp|PLST +Desperate Castaways|PLST +Diabolic Edict|PLST +Die Young|PLST +Dinosaur Hunter|PLST +Dirge of Dread|PLST +Dismember|PLST +Disowned Ancestor|PLST +Doomed Dissenter|PLST +Douse in Gloom|PLST +Dreadbringer Lampads|PLST +Dread Drone|PLST +Dread Return|PLST +Dregscape Zombie|PLST +Driver of the Dead|PLST +Drudge Sentinel|PLST +Dukhara Scavenger|PLST +Dune Beetle|PLST +Duress|PLST +Dusk Charger|PLST +Dusk Legion Zealot|PLST +Epicure of Blood|PLST +Erg Raiders|PLST +Eternal Thirst|PLST +Evincar's Justice|PLST +Executioner's Capsule|PLST +Eyeblight's Ending|PLST +Fallen Angel|PLST +Farbog Revenant|PLST +Fatal Push|PLST +Fen Hauler|PLST +Feral Abomination|PLST +Festercreep|PLST +Festering Newt|PLST +Fetid Imp|PLST +Fill with Fright|PLST +First-Sphere Gargantua|PLST +Flesh to Dust|PLST +Fretwork Colony|PLST +Fungal Infection|PLST +Genju of the Fens|PLST +Ghostly Changeling|PLST +Ghoulcaller's Accomplice|PLST +Gifted Aetherborn|PLST +Go for the Throat|PLST +Grasping Scoundrel|PLST +Gravedigger|PLST +Gravepurge|PLST +Gray Merchant of Asphodel|PLST +Grim Affliction|PLST +Grim Discovery|PLST +Grixis Slavedriver|PLST +Grotesque Mutation|PLST +Gruesome Fate|PLST +Gurmag Angler|PLST +Hideous End|PLST +Hired Blade|PLST +Hound of the Farbogs|PLST +Induce Despair|PLST +Infernal Scarring|PLST +Infest|PLST +Innocent Blood|PLST +Inquisition of Kozilek|PLST +Instill Infection|PLST +Kalastria Nightwatch|PLST +Krumar Bond-Kin|PLST +Lawless Broker|PLST +Lazotep Behemoth|PLST +Lethal Sting|PLST +Lord of the Accursed|PLST +Macabre Waltz|PLST +Marauding Boneslasher|PLST +March of the Drowned|PLST +Mark of the Vampire|PLST +Marsh Hulk|PLST +Mephitic Vapors|PLST +Merciless Resolve|PLST +Miasmic Mummy|PLST +Mind Rake|PLST +Mind Rot|PLST +Mire's Malice|PLST +Moment of Craving|PLST +Murder|PLST +Murderous Compulsion|PLST +Nameless Inversion|PLST +Nantuko Husk|PLST +Never Happened|PLST +Night's Whisper|PLST +Nirkana Assassin|PLST +Noxious Dragon|PLST +Okiba-Gang Shinobi|PLST +Painful Lesson|PLST +Phyrexian Rager|PLST +Phyrexian Reclamation|PLST +Pit Keeper|PLST +Plaguecrafter|PLST +Plagued Rusalka|PLST +Plague Wight|PLST +Prakhata Club Security|PLST +Prowling Pangolin|PLST +Queen's Agent|PLST +Quest for the Gravelord|PLST +Rabid Bloodsucker|PLST +Rakdos Drake|PLST +Rakshasa's Secret|PLST +Ravenous Chupacabra|PLST +Read the Bones|PLST +Reaper of Night|PLST +Reassembling Skeleton|PLST +Reckless Imp|PLST +Reckless Spite|PLST +Recover|PLST +Renegade Demon|PLST +Renegade's Getaway|PLST +Returned Centaur|PLST +Revenant|PLST +Rite of the Serpent|PLST +Rotfeaster Maggot|PLST +Ruin Rat|PLST +Scarab Feast|PLST +Scrounger of Souls|PLST +Scuttling Death|PLST +Seal of Doom|PLST +Sengir Vampire|PLST +Shadowcloak Vampire|PLST +Shambling Attendants|PLST +Shambling Goblin|PLST +Shriekmaw|PLST +Silumgar Butcher|PLST +Skeletal Scrying|PLST +Skeleton Archer|PLST +Skulking Ghost|PLST +Smiting Helix|PLST +Spreading Rot|PLST +Stab Wound|PLST +Stallion of Ashmouth|PLST +Stinkweed Imp|PLST +Street Wraith|PLST +Stromkirk Patrol|PLST +Subtle Strike|PLST +Sultai Runemark|PLST +Tar Snare|PLST +Tavern Swindler|PLST +Tendrils of Corruption|PLST +Thallid Omnivore|PLST +The Eldest Reborn|PLST +Thornbow Archer|PLST +Thorn of the Black Rose|PLST +Thraben Foulbloods|PLST +Tidy Conclusion|PLST +Torment of Venom|PLST +Touch of Moonglove|PLST +Tragic Slip|PLST +Trespasser's Curse|PLST +Trial of Ambition|PLST +Twins of Maurer Estate|PLST +Typhoid Rats|PLST +Unburden|PLST +Undercity's Embrace|PLST +Untamed Hunger|PLST +Unyielding Krumar|PLST +Urborg Uprising|PLST +Vampire Champion|PLST +Vampire Envoy|PLST +Vampire Hexmage|PLST +Vampire Lacerator|PLST +Vampire Nighthawk|PLST +Vessel of Malignity|PLST +Virulent Swipe|PLST +Voracious Null|PLST +Vraska's Finisher|PLST +Wake of Vultures|PLST +Walking Corpse|PLST +Walk the Plank|PLST +Wander in Death|PLST +Warteye Witch|PLST +Weight of the Underworld|PLST +Weirded Vampire|PLST +Wight of Precinct Six|PLST +Will-o'-the-Wisp|PLST +Windgrace Acolyte|PLST +Wrench Mind|PLST +Yargle, Glutton of Urborg|PLST +Zulaport Chainmage|PLST [Red CommonUncommon] -Act of Treason -Act on Impulse -Ahn-Crop Crasher -Ainok Tracker -Akroan Sergeant -Alchemist's Greeting -Ancient Grudge -Anger -Arc Trail -Arrow Storm -Atarka Efreet -Avarax -Azra Bladeseeker -Balduvian Horde -Barging Sergeant -Barrage of Boulders -Battle Rampart -Battle-Rattle Shaman -Beetleback Chief -Bellows Lizard -Blades of Velis Vel -Blastfire Bolt -Blazing Volley -Blindblast -Bloodfire Expert -Bloodlust Inciter -Bloodmad Vampire -Blood Ogre -Bloodstone Goblin -Blow Your House Down -Blur of Blades -Boggart Brute -Boiling Earth -Bombard -Bomber Corps -Borrowed Hostility -Boulder Salvo -Brazen Buccaneers -Brazen Wolves -Bring Low -Browbeat -Brute Strength -Built to Smash -Burst Lightning -Canyon Lurkers -Cartouche of Zeal -Cathartic Reunion -Chandra's Pyrohelix -Chandra's Revolution -Charging Monstrosaur -Chartooth Cougar -Cinder Hellion -Cleansing Screech -Cobblebrute -Cosmotronic Wave -Crash Through -Crowd's Favor -Crown-Hunter Hireling -Curse of Opulence -Curse of the Nightly Hunt -Death by Dragons -Defiant Ogre -Demolish -Desert Cerodon -Desperate Ravings -Destructive Tampering -Direct Current -Distemper of the Blood -Dragon Breath -Dragon Egg -Dragon Fodder -Dragonsoul Knight -Dragon Whelp -Dual Shot -Dynacharge -Earth Elemental -Emrakul's Hatcher -Enthralling Victor -Erratic Explosion -Expedite -Faithless Looting -Falkenrath Reaver -Fall of the Hammer -Fervent Strike -Fierce Invocation -Fiery Hellhound -Fiery Temper -Fireball -Firebolt -Firebrand Archer -Fire Elemental -Flame Jab -Flametongue Kavu -Flamewave Invoker -Fling -Forge Devil -Foundry Street Denizen -Frenzied Raptor -Frilled Deathspitter -Frontline Devastator -Frontline Rebel -Furnace Whelp -Fury Charm -Galvanic Blast -Generator Servant -Genju of the Spires -Geomancer's Gambit -Ghitu Lavarunner -Giant Spectacle -Goblin Assault -Goblin Balloon Brigade -Goblin Bombardment -Goblin Fireslinger -Goblin Locksmith -Goblin Matron -Goblin Motivator -Goblin Oriflamme -Goblin Roughrider -Goblin Warchief -Goblin War Paint -Gorehorn Minotaurs -Gore Swine -Granitic Titan -Grapeshot -Gravitic Punch -Gut Shot -Guttersnipe -Hammerhand -Hanweir Lancer -Hardened Berserker -Hijack -Hulking Devil -Hyena Pack -Ill-Tempered Cyclops -Impact Tremors -Incorrigible Youths -Inferno Fist -Inferno Jet -Ingot Chewer -Insolent Neonate -Jackal Pup -Keldon Halberdier -Keldon Overseer -Khenra Scrapper -Kiln Fiend -Kird Ape -Kolaghan Stormsinger -Krenko's Command -Krenko's Enforcer -Leaping Master -Leopard-Spotted Jiao -Lightning Bolt -Lightning Javelin -Lightning Shrieker -Lightning Talons -Madcap Skills -Magma Spray -Makindi Sliderunner -Mardu Warshrieker -Mark of Mutiny -Maximize Velocity -Miner's Bane -Mogg Fanatic -Mogg Flunkies -Mogg War Marshal -Molten Rain -Monastery Swiftspear -Mutiny -Nimble-Blade Khenra -Ondu Champion -Orcish Cannonade -Orcish Oriflamme -Outnumber -Pillage -Price of Progress -Prickleboar -Prophetic Ravings -Pyrotechnics -Quakefoot Cyclops -Rampaging Cyclops -Reckless Fireweaver -Reckless Wurm -Renegade Tactics -Rivals' Duel -Roast -Rolling Thunder -Rubblebelt Maaka -Ruinous Gremlin -Rummaging Goblin -Run Amok -Rush of Adrenaline -Salivating Gremlins -Samut's Sprint -Sarkhan's Rage -Screamreach Brawler -Seismic Shift -Seismic Stomp -Shatter -Shattering Spree -Shenanigans -Shock -Skirk Commando -Skirk Prospector -Smash to Smithereens -Smelt -Sparkmage Apprentice -Sparkspitter -Sparktongue Dragon -Spikeshot Goblin -Staggershock -Stormblood Berserker -Sulfurous Blast -Summit Prowler -Sun-Crowned Hunters -Swashbuckling -Sweatworks Brawler -Swift Kick -Tarfire -Tectonic Rift -Temur Battle Rage -Thresher Lizard -Thrill of Possibility -Tibalt's Rager -Torch Courier -Uncaged Fury -Undying Rage -Valakut Invoker -Valakut Predator -Valley Dasher -Vandalize -Vent Sentinel -Vessel of Volatility -Volcanic Dragon -Volcanic Rush -Voldaren Duelist -Wall of Fire -Wayward Giant -Wildfire Emissary -Wojek Bodyguard -Young Pyromancer -Zada's Commando -Zealot of the God-Pharaoh +Act of Treason|PLST +Act on Impulse|PLST +Ahn-Crop Crasher|PLST +Ainok Tracker|PLST +Akroan Sergeant|PLST +Alchemist's Greeting|PLST +Ancient Grudge|PLST +Anger|PLST +Arc Trail|PLST +Arrow Storm|PLST +Atarka Efreet|PLST +Avarax|PLST +Azra Bladeseeker|PLST +Balduvian Horde|PLST +Barging Sergeant|PLST +Barrage of Boulders|PLST +Battle Rampart|PLST +Battle-Rattle Shaman|PLST +Beetleback Chief|PLST +Bellows Lizard|PLST +Blades of Velis Vel|PLST +Blastfire Bolt|PLST +Blazing Volley|PLST +Blindblast|PLST +Bloodfire Expert|PLST +Bloodlust Inciter|PLST +Bloodmad Vampire|PLST +Blood Ogre|PLST +Bloodstone Goblin|PLST +Blow Your House Down|PLST +Blur of Blades|PLST +Boggart Brute|PLST +Boiling Earth|PLST +Bombard|PLST +Bomber Corps|PLST +Borrowed Hostility|PLST +Boulder Salvo|PLST +Brazen Buccaneers|PLST +Brazen Wolves|PLST +Bring Low|PLST +Browbeat|PLST +Brute Strength|PLST +Built to Smash|PLST +Burst Lightning|PLST +Canyon Lurkers|PLST +Cartouche of Zeal|PLST +Cathartic Reunion|PLST +Chandra's Pyrohelix|PLST +Chandra's Revolution|PLST +Charging Monstrosaur|PLST +Chartooth Cougar|PLST +Cinder Hellion|PLST +Cleansing Screech|PLST +Cobblebrute|PLST +Cosmotronic Wave|PLST +Crash Through|PLST +Crowd's Favor|PLST +Crown-Hunter Hireling|PLST +Curse of Opulence|PLST +Curse of the Nightly Hunt|PLST +Death by Dragons|PLST +Defiant Ogre|PLST +Demolish|PLST +Desert Cerodon|PLST +Desperate Ravings|PLST +Destructive Tampering|PLST +Direct Current|PLST +Distemper of the Blood|PLST +Dragon Breath|PLST +Dragon Egg|PLST +Dragon Fodder|PLST +Dragonsoul Knight|PLST +Dragon Whelp|PLST +Dual Shot|PLST +Dynacharge|PLST +Earth Elemental|PLST +Emrakul's Hatcher|PLST +Enthralling Victor|PLST +Erratic Explosion|PLST +Expedite|PLST +Faithless Looting|PLST +Falkenrath Reaver|PLST +Fall of the Hammer|PLST +Fervent Strike|PLST +Fierce Invocation|PLST +Fiery Hellhound|PLST +Fiery Temper|PLST +Fireball|PLST +Firebolt|PLST +Firebrand Archer|PLST +Fire Elemental|PLST +Flame Jab|PLST +Flametongue Kavu|PLST +Flamewave Invoker|PLST +Fling|PLST +Forge Devil|PLST +Foundry Street Denizen|PLST +Frenzied Raptor|PLST +Frilled Deathspitter|PLST +Frontline Devastator|PLST +Frontline Rebel|PLST +Furnace Whelp|PLST +Fury Charm|PLST +Galvanic Blast|PLST +Generator Servant|PLST +Genju of the Spires|PLST +Geomancer's Gambit|PLST +Ghitu Lavarunner|PLST +Giant Spectacle|PLST +Goblin Assault|PLST +Goblin Balloon Brigade|PLST +Goblin Bombardment|PLST +Goblin Fireslinger|PLST +Goblin Locksmith|PLST +Goblin Matron|PLST +Goblin Motivator|PLST +Goblin Oriflamme|PLST +Goblin Roughrider|PLST +Goblin Warchief|PLST +Goblin War Paint|PLST +Gorehorn Minotaurs|PLST +Gore Swine|PLST +Granitic Titan|PLST +Grapeshot|PLST +Gravitic Punch|PLST +Gut Shot|PLST +Guttersnipe|PLST +Hammerhand|PLST +Hanweir Lancer|PLST +Hardened Berserker|PLST +Hijack|PLST +Hulking Devil|PLST +Hyena Pack|PLST +Ill-Tempered Cyclops|PLST +Impact Tremors|PLST +Incorrigible Youths|PLST +Inferno Fist|PLST +Inferno Jet|PLST +Ingot Chewer|PLST +Insolent Neonate|PLST +Jackal Pup|PLST +Keldon Halberdier|PLST +Keldon Overseer|PLST +Khenra Scrapper|PLST +Kiln Fiend|PLST +Kird Ape|PLST +Kolaghan Stormsinger|PLST +Krenko's Command|PLST +Krenko's Enforcer|PLST +Leaping Master|PLST +Leopard-Spotted Jiao|PLST +Lightning Bolt|PLST +Lightning Javelin|PLST +Lightning Shrieker|PLST +Lightning Talons|PLST +Madcap Skills|PLST +Magma Spray|PLST +Makindi Sliderunner|PLST +Mardu Warshrieker|PLST +Mark of Mutiny|PLST +Maximize Velocity|PLST +Miner's Bane|PLST +Mogg Fanatic|PLST +Mogg Flunkies|PLST +Mogg War Marshal|PLST +Molten Rain|PLST +Monastery Swiftspear|PLST +Mutiny|PLST +Nimble-Blade Khenra|PLST +Ondu Champion|PLST +Orcish Cannonade|PLST +Orcish Oriflamme|PLST +Outnumber|PLST +Pillage|PLST +Price of Progress|PLST +Prickleboar|PLST +Prophetic Ravings|PLST +Pyrotechnics|PLST +Quakefoot Cyclops|PLST +Rampaging Cyclops|PLST +Reckless Fireweaver|PLST +Reckless Wurm|PLST +Renegade Tactics|PLST +Rivals' Duel|PLST +Roast|PLST +Rolling Thunder|PLST +Rubblebelt Maaka|PLST +Ruinous Gremlin|PLST +Rummaging Goblin|PLST +Run Amok|PLST +Rush of Adrenaline|PLST +Salivating Gremlins|PLST +Samut's Sprint|PLST +Sarkhan's Rage|PLST +Screamreach Brawler|PLST +Seismic Shift|PLST +Seismic Stomp|PLST +Shatter|PLST +Shattering Spree|PLST +Shenanigans|PLST +Shock|PLST +Skirk Commando|PLST +Skirk Prospector|PLST +Smash to Smithereens|PLST +Smelt|PLST +Sparkmage Apprentice|PLST +Sparkspitter|PLST +Sparktongue Dragon|PLST +Spikeshot Goblin|PLST +Staggershock|PLST +Stormblood Berserker|PLST +Sulfurous Blast|PLST +Summit Prowler|PLST +Sun-Crowned Hunters|PLST +Swashbuckling|PLST +Sweatworks Brawler|PLST +Swift Kick|PLST +Tarfire|PLST +Tectonic Rift|PLST +Temur Battle Rage|PLST +Thresher Lizard|PLST +Thrill of Possibility|PLST +Tibalt's Rager|PLST +Torch Courier|PLST +Uncaged Fury|PLST +Undying Rage|PLST +Valakut Invoker|PLST +Valakut Predator|PLST +Valley Dasher|PLST +Vandalize|PLST +Vent Sentinel|PLST +Vessel of Volatility|PLST +Volcanic Dragon|PLST +Volcanic Rush|PLST +Voldaren Duelist|PLST +Wall of Fire|PLST +Wayward Giant|PLST +Wildfire Emissary|PLST +Wojek Bodyguard|PLST +Young Pyromancer|PLST +Zada's Commando|PLST +Zealot of the God-Pharaoh|PLST [Green CommonUncommon] -Abundant Growth -Acidic Slime -Adventurous Impulse -Aerie Bowmasters -Affectionate Indrik -Aggressive Instinct -Aggressive Urge -Ainok Survivalist -Alpine Grizzly -Ambassador Oak -Ancestral Mask -Ancient Brontodon -Ancient Stirrings -Arachnus Web -Arbor Armament -Arbor Elf -Aura Gnarlid -Avacyn's Pilgrim -Backwoods Survivalists -Baloth Gorger -Basking Rootwalla -Beastbreaker of Bala Ged -Beast Within -Become Immense -Beneath the Sands -Bestial Menace -Bitterblade Warrior -Bitterbow Sharpshooters -Blanchwood Armor -Blastoderm -Blossom Dryad -Borderland Explorer -Borderland Ranger -Briarhorn -Bristling Boar -Broken Bond -Broodhunter Wurm -Byway Courier -Canopy Spider -Carnivorous Moss-Beast -Caustic Caterpillar -Centaur Courser -Charging Rhino -Citanul Woodreaders -Clip Wings -Colossal Dreadmaw -Combo Attack -Commune with Nature -Commune with the Gods -Conifer Strider -Creeping Mold -Crop Rotation -Crossroads Consecrator -Crowned Ceratok -Crushing Canopy -Cultivate -Daggerback Basilisk -Dawn's Reflection -Death-Hood Cobra -Desert Twister -Destructor Dragon -Dissenter's Deliverance -Domesticated Hydra -Dragonscale Boon -Dragon-Scarred Bear -Durkwood Baloth -Earthen Arms -Elemental Uprising -Elephant Guide -Elves of Deep Shadow -Elvish Fury -Elvish Visionary -Elvish Warrior -Ember Weaver -Epic Confrontation -Essence Warden -Eternal Witness -Experiment One -Explore -Explosive Vegetation -Ezuri's Archers -Fade into Antiquity -Farseek -Feed the Clan -Feral Krushok -Feral Prowler -Ferocious Zheng -Fertile Ground -Fierce Empath -Fog -Formless Nurturing -Frontier Mastodon -Gaea's Blessing -Gaea's Protector -Giant Growth -Giant Spider -Gift of Growth -Gift of Paradise -Glade Watcher -Gnarlid Pack -Grapple with the Past -Grazing Gladehart -Greater Basilisk -Greater Sandwurm -Greenwood Sentinel -Groundswell -Guardian Shield-Bearer -Hamlet Captain -Hardy Veteran -Harmonize -Harrow -Hooded Brawler -Hooting Mandrills -Hunter's Ambush -Hunt the Weak -Imperious Perfect -Invigorate -Ivy Lane Denizen -Jungle Delver -Jungle Wayfinder -Kavu Climber -Kavu Primarch -Khalni Heart Expedition -Kin-Tree Warden -Kozilek's Predator -Kraul Foragers -Kraul Warrior -Krosan Druid -Krosan Tusker -Larger Than Life -Lay of the Land -Lead by Example -Lead the Stampede -Lifespring Druid -Lignify -Llanowar Elves -Llanowar Empath -Longshot Squad -Lure -Manglehorn -Mantle of Webs -Map the Wastes -Might of the Masses -Mulch -Natural Connection -Naturalize -Nature's Claim -Nature's Lore -Nest Invader -Nettle Sentinel -New Horizons -Nimble Mongoose -Oakgnarl Warrior -Ondu Giant -Oran-Rief Invoker -Overgrown Armasaur -Overgrown Battlement -Overrun -Pack's Favor -Peema Outrider -Pelakka Wurm -Penumbra Spider -Pierce the Sky -Pinion Feast -Plummet -Pouncing Cheetah -Prey's Vengeance -Prey Upon -Priest of Titania -Pulse of Murasa -Quiet Disrepair -Rain of Thorns -Rampant Growth -Rancor -Ranger's Guile -Ravenous Leucrocota -Reclaim -Reclaiming Vines -Regrowth -Relic Crush -Return to the Earth -Revive -Rhox Maulers -Riparian Tiger -Roar of the Wurm -Root Out -Roots -Rosethorn Halberd -Runeclaw Bear -Sagu Archer -Sakura-Tribe Elder -Saproling Migration -Savage Punch -Scatter the Seeds -Seal of Strength -Search for Tomorrow -Seek the Horizon -Seek the Wilds -Shape the Sands -Siege Wurm -Silhana Ledgewalker -Silkweaver Elite -Snake Umbra -Snapping Sailback -Spider Spawning -Stalking Tiger -Stoic Builder -Strength in Numbers -Sylvan Bounty -Sylvan Scrying -Tajuru Pathwarden -Tajuru Warcaller -Take Down -Talons of Wildwood -Terrain Elemental -Territorial Baloth -#The Crowd Goes Wild -Thornhide Wolves -Thornscape Battlemage -Thornweald Archer -Thrashing Brontodon -Thrive -Timberwatch Elf -Time to Feed -Titanic Growth -Tukatongue Thallid -Turntimber Basilisk -Vastwood Gorger -Venom Sliver -Watcher in the Web -Wellwisher -Wild Growth -Wild Mongrel -Wildsize -Wolfkin Bond -Woodborn Behemoth -Woolly Loxodon -Wren's Run Vanquisher -Yavimaya Elder -Yavimaya Sapherd -Yeva's Forcemage -Zendikar's Roil +Abundant Growth|PLST +Acidic Slime|PLST +Adventurous Impulse|PLST +Aerie Bowmasters|PLST +Affectionate Indrik|PLST +Aggressive Instinct|PLST +Aggressive Urge|PLST +Ainok Survivalist|PLST +Alpine Grizzly|PLST +Ambassador Oak|PLST +Ancestral Mask|PLST +Ancient Brontodon|PLST +Ancient Stirrings|PLST +Arachnus Web|PLST +Arbor Armament|PLST +Arbor Elf|PLST +Aura Gnarlid|PLST +Avacyn's Pilgrim|PLST +Backwoods Survivalists|PLST +Baloth Gorger|PLST +Basking Rootwalla|PLST +Beastbreaker of Bala Ged|PLST +Beast Within|PLST +Become Immense|PLST +Beneath the Sands|PLST +Bestial Menace|PLST +Bitterblade Warrior|PLST +Bitterbow Sharpshooters|PLST +Blanchwood Armor|PLST +Blastoderm|PLST +Blossom Dryad|PLST +Borderland Explorer|PLST +Borderland Ranger|PLST +Briarhorn|PLST +Bristling Boar|PLST +Broken Bond|PLST +Broodhunter Wurm|PLST +Byway Courier|PLST +Canopy Spider|PLST +Carnivorous Moss-Beast|PLST +Caustic Caterpillar|PLST +Centaur Courser|PLST +Charging Rhino|PLST +Citanul Woodreaders|PLST +Clip Wings|PLST +Colossal Dreadmaw|PLST +Combo Attack|PLST +Commune with Nature|PLST +Commune with the Gods|PLST +Conifer Strider|PLST +Creeping Mold|PLST +Crop Rotation|PLST +Crossroads Consecrator|PLST +Crowned Ceratok|PLST +Crushing Canopy|PLST +Cultivate|PLST +Daggerback Basilisk|PLST +Dawn's Reflection|PLST +Death-Hood Cobra|PLST +Desert Twister|PLST +Destructor Dragon|PLST +Dissenter's Deliverance|PLST +Domesticated Hydra|PLST +Dragonscale Boon|PLST +Dragon-Scarred Bear|PLST +Durkwood Baloth|PLST +Earthen Arms|PLST +Elemental Uprising|PLST +Elephant Guide|PLST +Elves of Deep Shadow|PLST +Elvish Fury|PLST +Elvish Visionary|PLST +Elvish Warrior|PLST +Ember Weaver|PLST +Epic Confrontation|PLST +Essence Warden|PLST +Eternal Witness|PLST +Experiment One|PLST +Explore|PLST +Explosive Vegetation|PLST +Ezuri's Archers|PLST +Fade into Antiquity|PLST +Farseek|PLST +Feed the Clan|PLST +Feral Krushok|PLST +Feral Prowler|PLST +Ferocious Zheng|PLST +Fertile Ground|PLST +Fierce Empath|PLST +Fog|PLST +Formless Nurturing|PLST +Frontier Mastodon|PLST +Gaea's Blessing|PLST +Gaea's Protector|PLST +Giant Growth|PLST +Giant Spider|PLST +Gift of Growth|PLST +Gift of Paradise|PLST +Glade Watcher|PLST +Gnarlid Pack|PLST +Grapple with the Past|PLST +Grazing Gladehart|PLST +Greater Basilisk|PLST +Greater Sandwurm|PLST +Greenwood Sentinel|PLST +Groundswell|PLST +Guardian Shield-Bearer|PLST +Hamlet Captain|PLST +Hardy Veteran|PLST +Harmonize|PLST +Harrow|PLST +Hooded Brawler|PLST +Hooting Mandrills|PLST +Hunter's Ambush|PLST +Hunt the Weak|PLST +Imperious Perfect|PLST +Invigorate|PLST +Ivy Lane Denizen|PLST +Jungle Delver|PLST +Jungle Wayfinder|PLST +Kavu Climber|PLST +Kavu Primarch|PLST +Khalni Heart Expedition|PLST +Kin-Tree Warden|PLST +Kozilek's Predator|PLST +Kraul Foragers|PLST +Kraul Warrior|PLST +Krosan Druid|PLST +Krosan Tusker|PLST +Larger Than Life|PLST +Lay of the Land|PLST +Lead by Example|PLST +Lead the Stampede|PLST +Lifespring Druid|PLST +Lignify|PLST +Llanowar Elves|PLST +Llanowar Empath|PLST +Longshot Squad|PLST +Lure|PLST +Manglehorn|PLST +Mantle of Webs|PLST +Map the Wastes|PLST +Might of the Masses|PLST +Mulch|PLST +Natural Connection|PLST +Naturalize|PLST +Nature's Claim|PLST +Nature's Lore|PLST +Nest Invader|PLST +Nettle Sentinel|PLST +New Horizons|PLST +Nimble Mongoose|PLST +Oakgnarl Warrior|PLST +Ondu Giant|PLST +Oran-Rief Invoker|PLST +Overgrown Armasaur|PLST +Overgrown Battlement|PLST +Overrun|PLST +Pack's Favor|PLST +Peema Outrider|PLST +Pelakka Wurm|PLST +Penumbra Spider|PLST +Pierce the Sky|PLST +Pinion Feast|PLST +Plummet|PLST +Pouncing Cheetah|PLST +Prey's Vengeance|PLST +Prey Upon|PLST +Priest of Titania|PLST +Pulse of Murasa|PLST +Quiet Disrepair|PLST +Rain of Thorns|PLST +Rampant Growth|PLST +Rancor|PLST +Ranger's Guile|PLST +Ravenous Leucrocota|PLST +Reclaim|PLST +Reclaiming Vines|PLST +Regrowth|PLST +Relic Crush|PLST +Return to the Earth|PLST +Revive|PLST +Rhox Maulers|PLST +Riparian Tiger|PLST +Roar of the Wurm|PLST +Root Out|PLST +Roots|PLST +Rosethorn Halberd|PLST +Runeclaw Bear|PLST +Sagu Archer|PLST +Sakura-Tribe Elder|PLST +Saproling Migration|PLST +Savage Punch|PLST +Scatter the Seeds|PLST +Seal of Strength|PLST +Search for Tomorrow|PLST +Seek the Horizon|PLST +Seek the Wilds|PLST +Shape the Sands|PLST +Siege Wurm|PLST +Silhana Ledgewalker|PLST +Silkweaver Elite|PLST +Snake Umbra|PLST +Snapping Sailback|PLST +Spider Spawning|PLST +Stalking Tiger|PLST +Stoic Builder|PLST +Strength in Numbers|PLST +Sylvan Bounty|PLST +Sylvan Scrying|PLST +Tajuru Pathwarden|PLST +Tajuru Warcaller|PLST +Take Down|PLST +Talons of Wildwood|PLST +Terrain Elemental|PLST +Territorial Baloth|PLST +#The Crowd Goes Wild|PLST +Thornhide Wolves|PLST +Thornscape Battlemage|PLST +Thornweald Archer|PLST +Thrashing Brontodon|PLST +Thrive|PLST +Timberwatch Elf|PLST +Time to Feed|PLST +Titanic Growth|PLST +Tukatongue Thallid|PLST +Turntimber Basilisk|PLST +Vastwood Gorger|PLST +Venom Sliver|PLST +Watcher in the Web|PLST +Wellwisher|PLST +Wild Growth|PLST +Wild Mongrel|PLST +Wildsize|PLST +Wolfkin Bond|PLST +Woodborn Behemoth|PLST +Woolly Loxodon|PLST +Wren's Run Vanquisher|PLST +Yavimaya Elder|PLST +Yavimaya Sapherd|PLST +Yeva's Forcemage|PLST +Zendikar's Roil|PLST [Multi CommonUncommon] -Azorius Charm -Cunning Breezedancer -Ethercaste Knight -Kiss of the Amesha -Lawmage's Binding -Migratory Route -Mistmeadow Witch -Raff Capashen, Ship's Mage -Reflector Mage -Riptide Crab -Agony Warp -Baleful Strix -Call of the Nightwing -Contraband Kingpin -Deny Reality -Extract from Darkness -Kathari Remnant -Shipwreck Singer -Soul Manipulation -Thought Erasure -Azra Oddsmaker -Bituminous Blast -Bladewing the Risen -Blightning -Cauldron Dance -Claim // Fame -Goblin Deathraiders -Shambling Remains -Terminate -Unlicensed Disintegration -Bloodbraid Elf -Draconic Disciple -Fires of Yavimaya -Ghor-Clan Rampager -Giantbaiting -Raging Swordtooth -Rosheen Meanderer -Savage Twister -Treacherous Terrain -Vengeful Rebirth -Zhur-Taa Druid -Armadillo Cloak -Belligerent Brontodon -Citadel Castellan -Engineered Might -Join Shields -Pollenbright Wings -Qasali Pridemage -Rosemane Centaur -Satyr Enchanter -Selesnya Guildmage -Unflinching Courage -Wayfaring Temple -Campaign of Vengeance -Drana's Emissary -Gift of Orzhova -Gwyllion Hedge-Mage -Hidden Stockpile -Mortify -Pillory of the Sleepless -Tithe Drinker -Underworld Coinsmith -Zealous Persecution -Fire // Ice -Gelectrode -Hypothesizzle -Maverick Thopterist -Mercurial Geists -Nucklavee -Reclusive Artificer -Shrewd Hatchling -Stormchaser Chimera -Wee Dragonauts -Baloth Null -Corpsejack Menace -Deathreap Ritual -Grim Contest -Kin-Tree Invocation -Obelisk Spider -Ochran Assassin -Putrefy -Winding Constrictor -Akroan Hoplite -Boros Challenger -Flame-Kin Zealot -Hammer Dropper -Highspire Mantis -Iroas's Champion -Lightning Helix -Martial Glory -Weapons Trainer -Bounding Krasis -Coiling Oracle -Ethereal Ambush -Jungle Barrier -Kiora's Follower -Plaxcaster Frogling -River Hoopoe -Shardless Agent -Tatyova, Benthic Druid -Urban Evolution -Esper Charm -Thopter Foundry -Tower Gargoyle -Crosis's Charm -Sedraxis Specter -Slave of Bolas -Sprouting Thrinax -Naya Charm -Woolly Thoctar -Rhox War Monk -Skyward Eye Prophets -Mardu Roughrider -Bear's Companion -Abzan Charm -Abzan Guide -Armament Corps -Warden of the Eye -Sultai Charm -Sultai Soothsayer -Fusion Elemental +Azorius Charm|PLST +Cunning Breezedancer|PLST +Ethercaste Knight|PLST +Kiss of the Amesha|PLST +Lawmage's Binding|PLST +Migratory Route|PLST +Mistmeadow Witch|PLST +Raff Capashen, Ship's Mage|PLST +Reflector Mage|PLST +Riptide Crab|PLST +Agony Warp|PLST +Baleful Strix|PLST +Call of the Nightwing|PLST +Contraband Kingpin|PLST +Deny Reality|PLST +Extract from Darkness|PLST +Kathari Remnant|PLST +Shipwreck Singer|PLST +Soul Manipulation|PLST +Thought Erasure|PLST +Azra Oddsmaker|PLST +Bituminous Blast|PLST +Bladewing the Risen|PLST +Blightning|PLST +Cauldron Dance|PLST +Claim // Fame|PLST +Goblin Deathraiders|PLST +Shambling Remains|PLST +Terminate|PLST +Unlicensed Disintegration|PLST +Bloodbraid Elf|PLST +Draconic Disciple|PLST +Fires of Yavimaya|PLST +Ghor-Clan Rampager|PLST +Giantbaiting|PLST +Raging Swordtooth|PLST +Rosheen Meanderer|PLST +Savage Twister|PLST +Treacherous Terrain|PLST +Vengeful Rebirth|PLST +Zhur-Taa Druid|PLST +Armadillo Cloak|PLST +Belligerent Brontodon|PLST +Citadel Castellan|PLST +Engineered Might|PLST +Join Shields|PLST +Pollenbright Wings|PLST +Qasali Pridemage|PLST +Rosemane Centaur|PLST +Satyr Enchanter|PLST +Selesnya Guildmage|PLST +Unflinching Courage|PLST +Wayfaring Temple|PLST +Campaign of Vengeance|PLST +Drana's Emissary|PLST +Gift of Orzhova|PLST +Gwyllion Hedge-Mage|PLST +Hidden Stockpile|PLST +Mortify|PLST +Pillory of the Sleepless|PLST +Tithe Drinker|PLST +Underworld Coinsmith|PLST +Zealous Persecution|PLST +Fire // Ice|PLST +Gelectrode|PLST +Hypothesizzle|PLST +Maverick Thopterist|PLST +Mercurial Geists|PLST +Nucklavee|PLST +Reclusive Artificer|PLST +Shrewd Hatchling|PLST +Stormchaser Chimera|PLST +Wee Dragonauts|PLST +Baloth Null|PLST +Corpsejack Menace|PLST +Deathreap Ritual|PLST +Grim Contest|PLST +Kin-Tree Invocation|PLST +Obelisk Spider|PLST +Ochran Assassin|PLST +Putrefy|PLST +Winding Constrictor|PLST +Akroan Hoplite|PLST +Boros Challenger|PLST +Flame-Kin Zealot|PLST +Hammer Dropper|PLST +Highspire Mantis|PLST +Iroas's Champion|PLST +Lightning Helix|PLST +Martial Glory|PLST +Weapons Trainer|PLST +Bounding Krasis|PLST +Coiling Oracle|PLST +Ethereal Ambush|PLST +Jungle Barrier|PLST +Kiora's Follower|PLST +Plaxcaster Frogling|PLST +River Hoopoe|PLST +Shardless Agent|PLST +Tatyova, Benthic Druid|PLST +Urban Evolution|PLST +Esper Charm|PLST +Thopter Foundry|PLST +Tower Gargoyle|PLST +Crosis's Charm|PLST +Sedraxis Specter|PLST +Slave of Bolas|PLST +Sprouting Thrinax|PLST +Naya Charm|PLST +Woolly Thoctar|PLST +Rhox War Monk|PLST +Skyward Eye Prophets|PLST +Mardu Roughrider|PLST +Bear's Companion|PLST +Abzan Charm|PLST +Abzan Guide|PLST +Armament Corps|PLST +Warden of the Eye|PLST +Sultai Charm|PLST +Sultai Soothsayer|PLST +Fusion Elemental|PLST [Artifact Land CommonUncommon] -Blinding Souleater -Benthic Infiltrator -Wretched Gryff -Implement of Malice -Call the Scions -Gruul Signet -Simic Locket -Alchemist's Vial -Alloy Myr -Armillary Sphere -Artisan of Kozilek -Ashnod's Altar -Bomat Bazaar Barge -Bone Saw -Bottle Gnomes -Breaker of Armies -Burnished Hart -Cathodion -Coldsteel Heart -Consulate Dreadnought -Copper Carapace -Crystal Ball -Crystal Chimes -Diamond Mare -Eldrazi Devastator -Emmessi Tome -Etched Oracle -Farmstead Gleaner -Filigree Familiar -Flayer Husk -Foundry Inspector -Fountain of Renewal -Frogmite -Guardians of Meletis -Heavy Arbalest -Herald's Horn -Hexplate Golem -Hot Soup -Icy Manipulator -Irontread Crusher -Juggernaut -Lightning Greaves -Loxodon Warhammer -Mask of Memory -Meteorite -Millikin -Millstone -Mind Stone -Mishra's Bauble -Moonglove Extract -Mortarpod -Myr Retriever -Myr Sire -Ornithopter -Palladium Myr -Peace Strider -Perilous Myr -Pilgrim's Eye -Prophetic Prism -Renegade Map -Rhonas's Monument -Sandstone Oracle -Serrated Arrows -Short Sword -Sigil of Valor -Skullclamp -Skyscanner -Sol Ring -Sorcerer's Broom -Spy Kit -Sunset Pyramid -Suspicious Bookcase -Thought Vessel -Thran Dynamo -Thran Golem -Tormod's Crypt -Trepanation Blade -Universal Automaton -Universal Solvent -Whispersilk Cloak -New Benalia -Faerie Conclave -Blighted Fen -Bojuka Bog -Forgotten Cave -Goblin Burrows -Great Furnace -Wirewood Lodge -Sejiri Refuge -Dismal Backwater -Dreadship Reef -Akoum Refuge -Kazandu Refuge -Skarrg, the Rage Pits -Blossoming Sands -Graypelt Refuge -Orzhov Basilica -Scoured Barrens -Swiftwater Cliffs -Jungle Hollow -Thornwood Falls -Arcane Sanctum -Crumbling Necropolis -Jungle Shrine -Frontier Bivouac -Sandsteppe Citadel -Aether Hub -Ash Barrens -Blasted Landscape -Darksteel Citadel -Evolving Wilds -Field of Ruin -Gateway Plaza -Ghost Quarter -Krosan Verge -Mishra's Factory -Reliquary Tower -Rogue's Passage -Tectonic Edge -Temple of the False God -Unclaimed Territory +Blinding Souleater|PLST +Benthic Infiltrator|PLST +Wretched Gryff|PLST +Implement of Malice|PLST +Call the Scions|PLST +Gruul Signet|PLST +Simic Locket|PLST +Alchemist's Vial|PLST +Alloy Myr|PLST +Armillary Sphere|PLST +Artisan of Kozilek|PLST +Ashnod's Altar|PLST +Bomat Bazaar Barge|PLST +Bone Saw|PLST +Bottle Gnomes|PLST +Breaker of Armies|PLST +Burnished Hart|PLST +Cathodion|PLST +Coldsteel Heart|PLST +Consulate Dreadnought|PLST +Copper Carapace|PLST +Crystal Ball|PLST +Crystal Chimes|PLST +Diamond Mare|PLST +Eldrazi Devastator|PLST +Emmessi Tome|PLST +Etched Oracle|PLST +Farmstead Gleaner|PLST +Filigree Familiar|PLST +Flayer Husk|PLST +Foundry Inspector|PLST +Fountain of Renewal|PLST +Frogmite|PLST +Guardians of Meletis|PLST +Heavy Arbalest|PLST +Herald's Horn|PLST +Hexplate Golem|PLST +Hot Soup|PLST +Icy Manipulator|PLST +Irontread Crusher|PLST +Juggernaut|PLST +Lightning Greaves|PLST +Loxodon Warhammer|PLST +Mask of Memory|PLST +Meteorite|PLST +Millikin|PLST +Millstone|PLST +Mind Stone|PLST +Mishra's Bauble|PLST +Moonglove Extract|PLST +Mortarpod|PLST +Myr Retriever|PLST +Myr Sire|PLST +Ornithopter|PLST +Palladium Myr|PLST +Peace Strider|PLST +Perilous Myr|PLST +Pilgrim's Eye|PLST +Prophetic Prism|PLST +Renegade Map|PLST +Rhonas's Monument|PLST +Sandstone Oracle|PLST +Serrated Arrows|PLST +Short Sword|PLST +Sigil of Valor|PLST +Skullclamp|PLST +Skyscanner|PLST +Sol Ring|PLST +Sorcerer's Broom|PLST +Spy Kit|PLST +Sunset Pyramid|PLST +Suspicious Bookcase|PLST +Thought Vessel|PLST +Thran Dynamo|PLST +Thran Golem|PLST +Tormod's Crypt|PLST +Trepanation Blade|PLST +Universal Automaton|PLST +Universal Solvent|PLST +Whispersilk Cloak|PLST +New Benalia|PLST +Faerie Conclave|PLST +Blighted Fen|PLST +Bojuka Bog|PLST +Forgotten Cave|PLST +Goblin Burrows|PLST +Great Furnace|PLST +Wirewood Lodge|PLST +Sejiri Refuge|PLST +Dismal Backwater|PLST +Dreadship Reef|PLST +Akoum Refuge|PLST +Kazandu Refuge|PLST +Skarrg, the Rage Pits|PLST +Blossoming Sands|PLST +Graypelt Refuge|PLST +Orzhov Basilica|PLST +Scoured Barrens|PLST +Swiftwater Cliffs|PLST +Jungle Hollow|PLST +Thornwood Falls|PLST +Arcane Sanctum|PLST +Crumbling Necropolis|PLST +Jungle Shrine|PLST +Frontier Bivouac|PLST +Sandsteppe Citadel|PLST +Aether Hub|PLST +Ash Barrens|PLST +Blasted Landscape|PLST +Darksteel Citadel|PLST +Evolving Wilds|PLST +Field of Ruin|PLST +Gateway Plaza|PLST +Ghost Quarter|PLST +Krosan Verge|PLST +Mishra's Factory|PLST +Reliquary Tower|PLST +Rogue's Passage|PLST +Tectonic Edge|PLST +Temple of the False God|PLST +Unclaimed Territory|PLST [Pre M15] -Ana Sanctuary -Ancient Den -Ancient Ziggurat -Angelic Destiny -Archangel -Asceticism -Assemble the Legion -Athreos, God of Passage -Aura Shards -Avalanche Riders -Bear Cub -Belbe's Portal -Black Knight -Bloom Tender -Bonesplitter -Bow of Nylea -Brimstone Dragon -Brimstone Mage -Cairn Wanderer -Carpet of Flowers -Centaur Glade -Chancellor of the Annex -Chatter of the Squirrel -Chromatic Star -Contagion Clasp -Corrupted Conscience -Cragganwick Cremator -Crenellated Wall -Crystal Shard -Darksteel Garrison -Dauthi Mindripper -Defense of the Heart -Dictate of Erebos -Dolmen Gate -Dominus of Fealty -Doomgape -Draco -Dragon Broodmother -Dragon Mask -Dungrove Elder -Eater of Days -Elixir of Immortality -Empyrial Armor -Enchanted Evening -Energy Field -Exsanguinate -Flameshot -Floodgate -Font of Mythos -Ghitu War Cry -Gilt-Leaf Palace -Goblin Game -Greater Gargadon -Guided Passage -Haakon, Stromgald Scourge -Hedron Crab -Helm of Awakening -Hunter of Eyeblights -Hurricane -Hypnotic Specter -Impending Disaster -Jushi Apprentice -Kaervek's Torch -Kargan Dragonlord -Knight of Dawn -Knollspine Dragon -Kor Chant -Kruphix, God of Horizons -Lashknife Barrier -Lotus Petal -Maelstrom Archangel -Magus of the Moat -Mana Tithe -Manamorphose -Martyr's Bond -Martyr's Cause -Master Transmuter -Meddling Mage -Mistform Shrieker -Nemesis of Reason -Oracle of Nectars -Pathrazer of Ulamog -Perish -Pestilence -Phantasmal Dragon -Phantom Centaur -Phyrexian Metamorph -Phyrexian Soulgorger -Purphoros, God of the Forge -Questing Phelddagrif -Rage Reflection -Recoup -Release the Ants -Rhys the Redeemed -Rhystic Study -Rishadan Footpad -Rith, the Awakener -River Boa -Sadistic Hypnotist -Sakashima the Impostor -Sapphire Charm -Shrouded Lore -Soothsaying -Sorin Markov -Squirrel Wrangler -Thieving Magpie -Thrun, the Last Troll -Time Sieve -Timely Reinforcements -Tinker -Tower of Eons -Toxin Sliver -Triumph of the Hordes -Umbral Mantle -Viashino Sandstalker -Violent Ultimatum -Volunteer Reserves -Wargate -Weathered Wayfarer -Wild Nacatl -Yavimaya's Embrace +Ana Sanctuary|PLST +Ancient Den|PLST +Ancient Ziggurat|PLST +Angelic Destiny|PLST +Archangel|PLST +Asceticism|PLST +Assemble the Legion|PLST +Athreos, God of Passage|PLST +Aura Shards|PLST +Avalanche Riders|PLST +Bear Cub|PLST +Belbe's Portal|PLST +Black Knight|PLST +Bloom Tender|PLST +Bonesplitter|PLST +Bow of Nylea|PLST +Brimstone Dragon|PLST +Brimstone Mage|PLST +Cairn Wanderer|PLST +Carpet of Flowers|PLST +Centaur Glade|PLST +Chancellor of the Annex|PLST +Chatter of the Squirrel|PLST +Chromatic Star|PLST +Contagion Clasp|PLST +Corrupted Conscience|PLST +Cragganwick Cremator|PLST +Crenellated Wall|PLST +Crystal Shard|PLST +Darksteel Garrison|PLST +Dauthi Mindripper|PLST +Defense of the Heart|PLST +Dictate of Erebos|PLST +Dolmen Gate|PLST +Dominus of Fealty|PLST +Doomgape|PLST +Draco|PLST +Dragon Broodmother|PLST +Dragon Mask|PLST +Dungrove Elder|PLST +Eater of Days|PLST +Elixir of Immortality|PLST +Empyrial Armor|PLST +Enchanted Evening|PLST +Energy Field|PLST +Exsanguinate|PLST +Flameshot|PLST +Floodgate|PLST +Font of Mythos|PLST +Ghitu War Cry|PLST +Gilt-Leaf Palace|PLST +Goblin Game|PLST +Greater Gargadon|PLST +Guided Passage|PLST +Haakon, Stromgald Scourge|PLST +Hedron Crab|PLST +Helm of Awakening|PLST +Hunter of Eyeblights|PLST +Hurricane|PLST +Hypnotic Specter|PLST +Impending Disaster|PLST +Jushi Apprentice|PLST +Kaervek's Torch|PLST +Kargan Dragonlord|PLST +Knight of Dawn|PLST +Knollspine Dragon|PLST +Kor Chant|PLST +Kruphix, God of Horizons|PLST +Lashknife Barrier|PLST +Lotus Petal|PLST +Maelstrom Archangel|PLST +Magus of the Moat|PLST +Mana Tithe|PLST +Manamorphose|PLST +Martyr's Bond|PLST +Martyr's Cause|PLST +Master Transmuter|PLST +Meddling Mage|PLST +Mistform Shrieker|PLST +Nemesis of Reason|PLST +Oracle of Nectars|PLST +Pathrazer of Ulamog|PLST +Perish|PLST +Pestilence|PLST +Phantasmal Dragon|PLST +Phantom Centaur|PLST +Phyrexian Metamorph|PLST +Phyrexian Soulgorger|PLST +Purphoros, God of the Forge|PLST +Questing Phelddagrif|PLST +Rage Reflection|PLST +Recoup|PLST +Release the Ants|PLST +Rhys the Redeemed|PLST +Rhystic Study|PLST +Rishadan Footpad|PLST +Rith, the Awakener|PLST +River Boa|PLST +Sadistic Hypnotist|PLST +Sakashima the Impostor|PLST +Sapphire Charm|PLST +Shrouded Lore|PLST +Soothsaying|PLST +Sorin Markov|PLST +Squirrel Wrangler|PLST +Thieving Magpie|PLST +Thrun, the Last Troll|PLST +Time Sieve|PLST +Timely Reinforcements|PLST +Tinker|PLST +Tower of Eons|PLST +Toxin Sliver|PLST +Triumph of the Hordes|PLST +Umbral Mantle|PLST +Viashino Sandstalker|PLST +Violent Ultimatum|PLST +Volunteer Reserves|PLST +Wargate|PLST +Weathered Wayfarer|PLST +Wild Nacatl|PLST +Yavimaya's Embrace|PLST [Post M15 RareMythic] -Adorned Pouncer -Aetherflux Reservoir -Akroan Horse -Alesha, Who Smiles at Death -Alhammarret's Archive -All Is Dust -Aminatou's Augury -Angel of the Dire Hour -Anger of the Gods -Animar, Soul of Elements -Approach of the Second Sun -Arch of Orazca -Basilisk Collar -Beacon of Immortality -Beastmaster Ascension -Birds of Paradise -Black Market -Boompile -Boros Reckoner -Caged Sun -Cauldron of Souls -Champion of the Parish -Chaos Warp -Chasm Skulker -Chromatic Lantern -Coat of Arms -Collective Brutality -Commit // Memory -Courser of Kruphix -Coveted Jewel -Daretti, Scrap Savant -Deadly Tempest -Debtors' Knell -Decree of Justice -Deepglow Skate -Desolation Twin -Dictate of Heliod -Djinn of Wishes -Dragonlord Ojutai -Drana, Kalastria Bloodchief -Eldrazi Monument -Eldritch Evolution -Elesh Norn, Grand Cenobite -Evra, Halcyon Witness -Expropriate -Fblthp, the Lost -Felidar Sovereign -Gideon Jura -Goblin Charbelcher -Goblin Piledriver -Gonti, Lord of Luxury -Grasp of Fate -Grave Titan -Gravecrawler -Greenbelt Rampager -Hornet Nest -Kiki-Jiki, Mirror Breaker -Kolaghan's Command -Krenko, Mob Boss -Liliana, Death's Majesty -Living Death -Mana Crypt -Meandering Towershell -Memory Erosion -Meren of Clan Nel Toth -Mimic Vat -Mind Shatter -Mind Spring -Mirran Crusader -Mirror Entity -Misdirection -Mizzix's Mastery -Mycoloth -Mystic Confluence -Nighthowler -Nin, the Pain Artist -Nissa, Voice of Zendikar -Odric, Lunarch Marshal -Phyrexian Arena -Phyrexian Plaguelord -Precursor Golem -Preyseizer Dragon -Queen Marchesa -Reality Scramble -Recruiter of the Guard -Release the Gremlins -Revel in Riches -Rune-Scarred Demon -Savage Knuckleblade -Selvala, Heart of the Wilds -Serendib Efreet -Sewer Nemesis -Shamanic Revelation -Sliver Hivelord -Solemn Simulacrum -Spawning Grounds -Star of Extinction -Steamflogger Boss -Stunt Double -Sudden Demise -Supreme Verdict -Sword of the Animist -Talrand, Sky Summoner -Taurean Mauler -Teferi's Protection -Teferi, Temporal Archmage -Temporal Mastery -Tempt with Discovery -Thalia's Lancers -The Gitrog Monster -The Mirari Conjecture -Tireless Tracker -Torment of Hailfire -Trading Post -Two-Headed Giant -Urza's Rage -Vigor -Wheel of Fate -Whelming Wave -Whir of Invention -Yuriko, the Tiger's Shadow +Adorned Pouncer|PLST +Aetherflux Reservoir|PLST +Akroan Horse|PLST +Alesha, Who Smiles at Death|PLST +Alhammarret's Archive|PLST +All Is Dust|PLST +Aminatou's Augury|PLST +Angel of the Dire Hour|PLST +Anger of the Gods|PLST +Animar, Soul of Elements|PLST +Approach of the Second Sun|PLST +Arch of Orazca|PLST +Basilisk Collar|PLST +Beacon of Immortality|PLST +Beastmaster Ascension|PLST +Birds of Paradise|PLST +Black Market|PLST +Boompile|PLST +Boros Reckoner|PLST +Caged Sun|PLST +Cauldron of Souls|PLST +Champion of the Parish|PLST +Chaos Warp|PLST +Chasm Skulker|PLST +Chromatic Lantern|PLST +Coat of Arms|PLST +Collective Brutality|PLST +Commit // Memory|PLST +Courser of Kruphix|PLST +Coveted Jewel|PLST +Daretti, Scrap Savant|PLST +Deadly Tempest|PLST +Debtors' Knell|PLST +Decree of Justice|PLST +Deepglow Skate|PLST +Desolation Twin|PLST +Dictate of Heliod|PLST +Djinn of Wishes|PLST +Dragonlord Ojutai|PLST +Drana, Kalastria Bloodchief|PLST +Eldrazi Monument|PLST +Eldritch Evolution|PLST +Elesh Norn, Grand Cenobite|PLST +Evra, Halcyon Witness|PLST +Expropriate|PLST +Fblthp, the Lost|PLST +Felidar Sovereign|PLST +Gideon Jura|PLST +Goblin Charbelcher|PLST +Goblin Piledriver|PLST +Gonti, Lord of Luxury|PLST +Grasp of Fate|PLST +Grave Titan|PLST +Gravecrawler|PLST +Greenbelt Rampager|PLST +Hornet Nest|PLST +Kiki-Jiki, Mirror Breaker|PLST +Kolaghan's Command|PLST +Krenko, Mob Boss|PLST +Liliana, Death's Majesty|PLST +Living Death|PLST +Mana Crypt|PLST +Meandering Towershell|PLST +Memory Erosion|PLST +Meren of Clan Nel Toth|PLST +Mimic Vat|PLST +Mind Shatter|PLST +Mind Spring|PLST +Mirran Crusader|PLST +Mirror Entity|PLST +Misdirection|PLST +Mizzix's Mastery|PLST +Mycoloth|PLST +Mystic Confluence|PLST +Nighthowler|PLST +Nin, the Pain Artist|PLST +Nissa, Voice of Zendikar|PLST +Odric, Lunarch Marshal|PLST +Phyrexian Arena|PLST +Phyrexian Plaguelord|PLST +Precursor Golem|PLST +Preyseizer Dragon|PLST +Queen Marchesa|PLST +Reality Scramble|PLST +Recruiter of the Guard|PLST +Release the Gremlins|PLST +Revel in Riches|PLST +Rune-Scarred Demon|PLST +Savage Knuckleblade|PLST +Selvala, Heart of the Wilds|PLST +Serendib Efreet|PLST +Sewer Nemesis|PLST +Shamanic Revelation|PLST +Sliver Hivelord|PLST +Solemn Simulacrum|PLST +Spawning Grounds|PLST +Star of Extinction|PLST +Steamflogger Boss|PLST +Stunt Double|PLST +Sudden Demise|PLST +Supreme Verdict|PLST +Sword of the Animist|PLST +Talrand, Sky Summoner|PLST +Taurean Mauler|PLST +Teferi's Protection|PLST +Teferi, Temporal Archmage|PLST +Temporal Mastery|PLST +Tempt with Discovery|PLST +Thalia's Lancers|PLST +The Gitrog Monster|PLST +The Mirari Conjecture|PLST +Tireless Tracker|PLST +Torment of Hailfire|PLST +Trading Post|PLST +Two-Headed Giant|PLST +Urza's Rage|PLST +Vigor|PLST +Wheel of Fate|PLST +Whelming Wave|PLST +Whir of Invention|PLST +Yuriko, the Tiger's Shadow|PLST [Foils] -Not of This World+|FMB1 -Celestial Dawn+|FMB1 -Celestial Kirin+|FMB1 -Changeling Hero+|FMB1 -Council Guardian+|FMB1 -Eidolon of Rhetoric+|FMB1 -Isamaru, Hound of Konda+|FMB1 -Lapse of Certainty+|FMB1 -Lumithread Field+|FMB1 -Norn's Annex+|FMB1 -Proclamation of Rebirth+|FMB1 -Pull from Eternity+|FMB1 -Rune-Tail, Kitsune Ascendant+|FMB1 -Sinew Sliver+|FMB1 -Soul's Attendant+|FMB1 -Spelltithe Enforcer+|FMB1 -Springjack Shepherd+|FMB1 -Wall of Shards+|FMB1 -White Knight+|FMB1 -Blighted Agent+|FMB1 -Delay+|FMB1 -Fatespinner+|FMB1 -Frozen Aether+|FMB1 -Grand Architect+|FMB1 -Intruder Alarm+|FMB1 -Misthollow Griffin+|FMB1 -Paradox Haze+|FMB1 -Patron of the Moon+|FMB1 -Puca's Mischief+|FMB1 -Spellweaver Volute+|FMB1 -Storm Crow+|FMB1 -Zur's Weirding+|FMB1 -Bringer of the Black Dawn+|FMB1 -Chimney Imp+|FMB1 -Conspiracy+|FMB1 -Echoing Decay+|FMB1 -Funeral Charm+|FMB1 -Herald of Leshrac+|FMB1 -Marrow-Gnawer+|FMB1 -Nezumi Shortfang+|FMB1 -One with Nothing+|FMB1 -Ravenous Trap+|FMB1 -Rescue from the Underworld+|FMB1 -Undead Warchief+|FMB1 -Viscera Seer+|FMB1 -Balduvian Rage+|FMB1 -Braid of Fire+|FMB1 -Burning Inquiry+|FMB1 -Fiery Gambit+|FMB1 -Flamekin Harbinger+|FMB1 -Form of the Dragon+|FMB1 -Goblin Bushwhacker+|FMB1 -Guerrilla Tactics+|FMB1 -Lightning Storm+|FMB1 -Norin the Wary+|FMB1 -Ogre Gatecrasher+|FMB1 -Pyretic Ritual+|FMB1 -Scourge of the Throne+|FMB1 -Stigma Lasher+|FMB1 -Treasonous Ogre+|FMB1 -Allosaurus Rider+|FMB1 -Archetype of Endurance+|FMB1 -Boreal Druid+|FMB1 -Boundless Realms+|FMB1 -Bramblewood Paragon+|FMB1 -Fungusaur+|FMB1 -Game-Trail Changeling+|FMB1 -Gleeful Sabotage+|FMB1 -Greater Mossdog+|FMB1 -Helix Pinnacle+|FMB1 -Hornet Sting+|FMB1 -Manaweft Sliver+|FMB1 -Maro+|FMB1 -Myojin of Life's Web+|FMB1 -Panglacial Wurm+|FMB1 -Reki, the History of Kamigawa+|FMB1 -Rhox+|FMB1 -Sakura-Tribe Scout+|FMB1 -Scryb Ranger+|FMB1 -Sheltering Ancient+|FMB1 -Sosuke, Son of Seshiro+|FMB1 -Spike Feeder+|FMB1 -Aurelia's Fury+|FMB1 -Drogskol Captain+|FMB1 -Glittering Wish+|FMB1 -Harmonic Sliver+|FMB1 -Karrthus, Tyrant of Jund+|FMB1 -Maelstrom Nexus+|FMB1 -Mind Funeral+|FMB1 -Sarkhan the Mad+|FMB1 -Sen Triplets+|FMB1 -Yore-Tiller Nephilim+|FMB1 -Balefire Liege+|FMB1 -Gilder Bairn+|FMB1 -Kulrath Knight+|FMB1 -Noggle Bandit+|FMB1 -Wear // Tear+|FMB1 -Amulet of Vigor+|FMB1 -Blasting Station+|FMB1 -Codex Shredder+|FMB1 -Geth's Grimoire+|FMB1 -Iron Myr+|FMB1 -Knowledge Pool+|FMB1 -Lantern of Insight+|FMB1 -Leveler+|FMB1 -Lich's Mirror+|FMB1 -Magewright's Stone+|FMB1 -Memnite+|FMB1 -Mindslaver+|FMB1 -Pili-Pala+|FMB1 -Reaper King+|FMB1 -Sundial of the Infinite+|FMB1 -Teferi's Puzzle Box+|FMB1 -Trailblazer's Boots+|FMB1 -Triskelion+|FMB1 -Witchbane Orb+|FMB1 -Alchemist's Refuge+|FMB1 -Minamo, School at Water's Edge+|FMB1 -Mirrodin's Core+|FMB1 -Shizo, Death's Storehouse+|FMB1 -Stalking Stones+|FMB1 +Not of This World+|PLST +Celestial Dawn+|PLST +Celestial Kirin+|PLST +Changeling Hero+|PLST +Council Guardian+|PLST +Eidolon of Rhetoric+|PLST +Isamaru, Hound of Konda+|PLST +Lapse of Certainty+|PLST +Lumithread Field+|PLST +Norn's Annex+|PLST +Proclamation of Rebirth+|PLST +Pull from Eternity+|PLST +Rune-Tail, Kitsune Ascendant+|PLST +Sinew Sliver+|PLST +Soul's Attendant+|PLST +Spelltithe Enforcer+|PLST +Springjack Shepherd+|PLST +Wall of Shards+|PLST +White Knight+|PLST +Blighted Agent+|PLST +Delay+|PLST +Fatespinner+|PLST +Frozen Aether+|PLST +Grand Architect+|PLST +Intruder Alarm+|PLST +Misthollow Griffin+|PLST +Paradox Haze+|PLST +Patron of the Moon+|PLST +Puca's Mischief+|PLST +Spellweaver Volute+|PLST +Storm Crow+|PLST +Zur's Weirding+|PLST +Bringer of the Black Dawn+|PLST +Chimney Imp+|PLST +Conspiracy+|PLST +Echoing Decay+|PLST +Funeral Charm+|PLST +Herald of Leshrac+|PLST +Marrow-Gnawer+|PLST +Nezumi Shortfang+|PLST +One with Nothing+|PLST +Ravenous Trap+|PLST +Rescue from the Underworld+|PLST +Undead Warchief+|PLST +Viscera Seer+|PLST +Balduvian Rage+|PLST +Braid of Fire+|PLST +Burning Inquiry+|PLST +Fiery Gambit+|PLST +Flamekin Harbinger+|PLST +Form of the Dragon+|PLST +Goblin Bushwhacker+|PLST +Guerrilla Tactics+|PLST +Lightning Storm+|PLST +Norin the Wary+|PLST +Ogre Gatecrasher+|PLST +Pyretic Ritual+|PLST +Scourge of the Throne+|PLST +Stigma Lasher+|PLST +Treasonous Ogre+|PLST +Allosaurus Rider+|PLST +Archetype of Endurance+|PLST +Boreal Druid+|PLST +Boundless Realms+|PLST +Bramblewood Paragon+|PLST +Fungusaur+|PLST +Game-Trail Changeling+|PLST +Gleeful Sabotage+|PLST +Greater Mossdog+|PLST +Helix Pinnacle+|PLST +Hornet Sting+|PLST +Manaweft Sliver+|PLST +Maro+|PLST +Myojin of Life's Web+|PLST +Panglacial Wurm+|PLST +Reki, the History of Kamigawa+|PLST +Rhox+|PLST +Sakura-Tribe Scout+|PLST +Scryb Ranger+|PLST +Sheltering Ancient+|PLST +Sosuke, Son of Seshiro+|PLST +Spike Feeder+|PLST +Aurelia's Fury+|PLST +Drogskol Captain+|PLST +Glittering Wish+|PLST +Harmonic Sliver+|PLST +Karrthus, Tyrant of Jund+|PLST +Maelstrom Nexus+|PLST +Mind Funeral+|PLST +Sarkhan the Mad+|PLST +Sen Triplets+|PLST +Yore-Tiller Nephilim+|PLST +Balefire Liege+|PLST +Gilder Bairn+|PLST +Kulrath Knight+|PLST +Noggle Bandit+|PLST +Wear // Tear+|PLST +Amulet of Vigor+|PLST +Blasting Station+|PLST +Codex Shredder+|PLST +Geth's Grimoire+|PLST +Iron Myr+|PLST +Knowledge Pool+|PLST +Lantern of Insight+|PLST +Leveler+|PLST +Lich's Mirror+|PLST +Magewright's Stone+|PLST +Memnite+|PLST +Mindslaver+|PLST +Pili-Pala+|PLST +Reaper King+|PLST +Sundial of the Infinite+|PLST +Teferi's Puzzle Box+|PLST +Trailblazer's Boots+|PLST +Triskelion+|PLST +Witchbane Orb+|PLST +Alchemist's Refuge+|PLST +Minamo, School at Water's Edge+|PLST +Mirrodin's Core+|PLST +Shizo, Death's Storehouse+|PLST +Stalking Stones+|PLST diff --git a/forge-gui/res/editions/The List.txt b/forge-gui/res/editions/The List.txt index 483061a9df1..0fc3960694c 100644 --- a/forge-gui/res/editions/The List.txt +++ b/forge-gui/res/editions/The List.txt @@ -1,1387 +1,5062 @@ [metadata] -Code=PLIST +Code=PLST +Code2=PLIST Date=2020-09-26 Name=The List Type=Reprint -ScryfallCode=PLIST +ScryfallCode=PLST +TokensCode=PLST [cards] -1 U Iterative Analysis @Winona Nelson -2 M Emrakul, the Aeons Torn @Mark Tedin -3 U Lashweed Lurker @Igor Kieryluk -4 R Thought-Knot Seer @Svetlin Velinov -5 R Ancestor's Prophet @Kev Walker -6 R Angel's Grace @Mark Zug -7 C Anointer Priest @Lake Hurwitz -8 C Aven Riftwatcher @Don Hazeltine -9 U Belfry Spirit @Daren Bader -10 U Calming Licid @D. Alexander Gregory -11 U Cloudgoat Ranger @Adam Rex -12 R Council's Judgment @Kev Walker -13 R Disenchant @Heather Hudson -14 R Eldrazi Displacer @Daarken -15 R Emeria Angel @Jim Murray -16 U Enlightened Tutor @Dan Frazier -17 M Entreat the Angels @Todd Lockwood -18 M Gideon, Ally of Zendikar @Eric Deschamps -19 C Goldenglow Moth @Howard Lyon -20 M History of Benalia @Noah Bradley -21 R Hundred-Handed One @Brad Rigney -22 U Kazandu Blademaster @Michael Komarck -23 M Land Tax @Chuck Lukacs -24 U Loyal Unicorn @Volkan Baǵa -25 M Monastery Mentor @Magali Villeneuve -26 M Nahiri, the Lithomancer @Eric Deschamps -27 R Parallax Wave @Greg Staples -28 U Pegasus Stampede @Mark Zug -29 R Regal Caracal @Filip Burburan -30 R Rest in Peace @Jason Rainville -31 R Reveillark @Jim Murray -32 R Sensei Golden-Tail @Stephen Tappin -33 C Snubhorn Sentry @Aaron Miller -34 U Soltari Monk @Janet Aulisio -35 U Splicer's Skill @Jason Felix -36 U Springjack Shepherd @Thomas Denmark -37 U Sunscape Battlemage @Tony Szczudlo -38 C Triplicate Spirits @Izzy -39 C Trokin High Guard @Ron Spencer -40 U Vanguard of Brimaz @Mark Zug -41 R Winds of Abandon @Noah Bradley -42 U Wizened Cenn @Kev Walker -43 R Wrath of God @Mike Raabe -44 C Amoeboid Changeling @Nils Hamm -45 R Battle of Wits @Jason Chan -46 U Brain Freeze @Tim Hildebrandt -47 R Brainstorm @Daarken -48 M Brazen Borrower @Iris Compiet -49 R Broodstar @Glen Angus -50 U Chemister's Insight @Josh Hass -51 U Coveted Peacock @Christopher Burdett -52 R Cryptic Command @Wayne England -53 C Drift of Phantasms @Michael Phillippi -54 U Enclave Cryptologist @Igor Kieryluk -55 R Eternal Dominion @Shishizaru -56 U Evermind @Matt Thompson -57 R Eye of the Storm @Hideaki Takamura -58 U Fabricate @Warren Mahy -59 R Forced Fruition @William O'Connor -60 R Ixidor, Reality Sculptor @Kev Walker -61 R Jwari Shapeshifter @Kev Walker -62 R Keeper of the Nine Gales @Jim Nelson -63 C Latchkey Faerie @Warren Mahy -64 M Lorthos, the Tidemaker @Kekai Kotaki -65 C Man-o'-War @Jon J Muth -66 R Mischievous Quanar @Lars Grant-West -67 U Moon-Eating Dog @Tingting Yeh -68 R Negate @Ralph Horsley -69 U Noble Benefactor @DiTerlizzi -70 R Octopus Umbra @Howard Lyon -71 R Pact of Negation @Jason Chan -72 R Patron Wizard @Donato Giancola -73 U Pouncing Shoreshark @Daniel Warren Johnson -74 U Pteramander @Simon Dominic -75 U Reality Shift @Howard Lyon -76 U Retreat to Coralhelm @Kieran Yanner -77 U Ruination Guide @Mathias Kollros -78 C Spined Thopter @Pete Venters -79 C Stonybrook Banneret @Ralph Horsley -80 M Temporal Manipulation @Franz Vohwinkel -81 R Training Grounds @James Ryman -82 U Vodalian Illusionist @John Matson -83 R Ancient Craving @Rob Alexander -84 U Beseech the Queen @Jason Chan -85 R Bloodghast @Daarken -86 M Bloodlord of Vaasgoth @Greg Staples -87 R Body Snatcher @Mark Zug -88 R Bogbrew Witch @Eric Deschamps -89 R Brink of Madness @Donato Giancola -90 C Cadaverous Knight @Dermot Power -91 R Cruel Tutor @Kev Walker -92 R Doom Blade @Carl Critchlow -93 R Doomwake Giant @Kev Walker -94 R Endling @Livia Prima -95 R Extinction @Una Fricker -96 U Gatekeeper of Malakir @Karl Kopinski -97 C Gempalm Polluter @Dany Orizio -98 U Golgari Thug @Kev Walker -99 R Grim Haruspex @Seb McKinnon -100 C Grim Harvest @Zoltan Boros & Gabor Szikszai -101 R Kalastria Highborn @D. Alexander Gregory -102 R Korlash, Heir to Blackblade @Daarken -103 R Living Death @Mark Winters -104 R Lord of the Undead @Brom -105 U Murderous Cut @Yohann Schepacz -106 R Necravolver @Dave Dorman -107 U Necromancy @Pete Venters -108 U Nezumi Graverobber @Jim Nelson -109 U Oubliette @Jim Pavelec -110 M Phyrexian Obliterator @Todd Lockwood -111 R Promise of Power @Kev Walker -112 U Relentless Rats @Thomas M. Baxa -113 M Skithiryx, the Blight Dragon @Chippy -114 R Tombstalker @Aleksi Briclot -115 C Tortured Existence @Keith Parkinson -116 U Unburial Rites @Ryan Pancoast -117 C Urborg Panther @Cliff Nielsen -118 U Vampire Nighthawk @Jason Chan -119 M Vampire Nocturnus @Raymond Swanland -120 U Victimize @Craig J Spearing -121 R Virtus the Veiled @Johann Bodin -122 U Abrade @Florian de Gesincourt -123 U Anax, Hardened in the Forge @Jason A. Engle -124 C Boggart Arsonists @Jesper Ejsing -125 U Brothers Yamazaki @Ron Spears -126 R Burst Lightning @Jung Park -127 R Decree of Annihilation @John Avon -128 R Fall of the Titans @Chris Rallis -129 U The Flame of Keld @Lake Hurwitz -130 C Fomori Nomad @Raymond Swanland -131 R Goblin Chieftain @Sam Wood -132 U Goblin Grenade @Kev Walker -133 U Goblin Lore @D. Alexander Gregory -134 U Hammer Mage @Rebecca Guay -135 R Hammer of Purphoros @Yeong-Hao Han -136 R Hell's Thunder @Karl Kopinski -137 R Hidetsugu's Second Rite @Jeff Miracola -138 R Hunted Dragon @Mark Zug -139 R Jaya's Immolating Inferno @Noah Bradley -140 R Kilnmouth Dragon @Carl Critchlow -141 C Lash Out @Scott Hampton -142 R Lightning Bolt @Kekai Kotaki -143 R Lightning Crafter @Dan Scott -144 U Light Up the Stage @Dmitry Burmak -145 R Marauding Raptor @Bayard Wu -146 R Moggcatcher @Pete Venters -147 R Patron of the Akki @Jim Nelson -148 C Plated Geopede @Eric Deschamps -149 R Puppet's Verdict @Edward P. Beard, Jr. -150 R Pyromancer Ascension @Kev Walker -151 M Scourge of the Throne @Michael Komarck -152 R Sedge Sliver @Richard Kane Ferguson -153 U Shivan Meteor @Chippy -154 C Simian Spirit Guide @Dave DeVries -155 C Skred @Christopher Moeller -156 C Stone Rain @John Matson -157 R Tuktuk the Explorer @Volkan Baǵa -158 R Voracious Dragon @Dominick Domingo -159 R Warp World @Ron Spencer -160 R Wild Research @Gary Ruddell -161 U Alpha Kavu @Matt Cavotta -162 R Awakening @Dan Frazier -163 U Cradle Guard @Mark Zug -164 C Curious Pair @Josu Hernaiz -165 R Elvish Archdruid @Raymond Swanland -166 U Eternal Witness @Terese Nielsen -167 R Food Chain @Val Mayerik -168 R Gaea's Anthem @Greg Staples -169 R Genesis Hydra @Peter Mohrbacher -170 R Gigantosaurus @Jonathan Kuo -171 R Gorm the Great @Johann Bodin -172 U Grizzly Fate @Dave Dorman -173 R Groundbreaker @Matt Cavotta -174 R Harmonize @Vance Kovacs -175 R Helix Pinnacle @Dan Scott -176 R Hua Tuo, Honored Physician @Gao Jianzhang -177 U Imperious Perfect @Scott M. Fischer -178 M Ishkanah, Grafwidow @Christine Choi -179 R Jadelight Ranger @Jason Rainville -180 M Kalonian Hydra @Chris Rahn -181 M Khalni Hydra @Todd Lockwood -182 C Moonmist @Ryan Yee -183 C Muscle Sliver @Richard Kane Ferguson -184 C Nightshade Peddler @John Stanko -185 M Nissa Revane @Jaime Jones -186 M Nylea, God of the Hunt @Chris Rahn -187 R Parallel Evolution @Matt Cavotta -188 R Primal Vigor @Matt Stewart -189 U Rootrunner @Adam Rex -190 U Saber Ants @Greg Staples -191 R Skyshroud Behemoth @Eric Peterson -192 R Song of the Dryads @Lars Grant-West -193 M Soul of Zendikar @Vincent Proce -194 R Spike Weaver @Mike Raabe -195 R Squirrel Mob @Carl Critchlow -196 U Ulvenwald Mysteries @Greg Opalinski -197 C Willow Dryad @D. Alexander Gregory -198 C Yavimaya Scion @DiTerlizzi -199 R Zendikar Resurgent @Chris Rallis -200 U Army Ants @Geofrey Darrow & I. Rabarot -201 U Boros Challenger @Gabor Szikszai -202 M Chromanticore @Min Yum -203 M Chulane, Teller of Tales @Victor Adame Minguez -204 U Crystalline Sliver @Allen Williams -205 U Diregraf Captain @Slawomir Maniak -206 R Doran, the Siege Tower @Mark Zug -207 R Dromar, the Banisher @Dave Dorman -208 R Dune-Brood Nephilim @Jim Murray -209 R Etherium-Horn Sorcerer @Franz Vohwinkel -210 M Ezuri, Claw of Progress @James Ryman -211 R Fathom Mage @Ryan Pancoast -212 R Fiery Justice @Mathias Kollros -213 M Godsire @Jim Murray -214 R Ith, High Arcanist @Zoltan Boros & Gabor Szikszai -215 C Kingpin's Pet @Mark Zug -216 M Lazav, the Multifarious @Yongjae Choi -217 R Lightning Angel @rk post -218 M Maelstrom Nexus @Steven Belledin -219 U Merfolk Mistbinder @Clint Cearley -220 M Muldrotha, the Gravetide @Jason Rainville -221 U Necrotic Sliver @Dave Allsop -222 R Nicol Bolas @D. Alexander Gregory -223 M Oloro, Ageless Ascetic @Eric Deschamps -224 M Omnath, Locus of Rage @Brad Rigney -225 R Phyrexian Tyranny @Kev Walker -226 M Progenitus @Jaime Jones -227 C Shambling Shell @Joel Thomas -228 U Sky Hussar @Kev Walker -229 U Slimefoot, the Stowaway @Alex Konstad -230 R Terminate @Thomas M. Baxa -231 U Vitu-Ghazi Guildmage @Jason Chan -232 M Wrenn and Six @Chase Stone -233 U Zendikar Incarnate @Lucas Graciano -234 U Angrath, Captain of Chaos @Slawomir Maniak -235 R Djinn Illuminatus @Carl Critchlow -236 U Murderous Redcap @Dave Allsop -237 U Noggle Hedge-Mage @Larry MacDougall -238 R Beck // Call @Adam Paquette -239 R Cut // Ribbons @Raymond Swanland -240 R Odds // Ends @Michael Sutfin -241 R Acorn Catapult @Jesper Ejsing -242 R Akroma's Memorial @Dan Scott -243 U Arcbound Slith @Vance Kovacs -244 C Arcum's Astrolabe @Igor Kieryluk -245 C Blight Sickle @John Avon -246 R Bonehoard @Chippy -247 M The Chain Veil @Volkan Baǵa -248 R Clearwater Goblet @Dany Orizio -249 R Contagion Engine @Daarken -250 U Crown of Empires @John Avon -251 R Door to Nothingness @Puddnhead -252 R Electrostatic Pummeler @Slawomir Maniak -253 R Erratic Portal @John Matson -254 U Everflowing Chalice @Steve Argyle -255 U Fellwar Stone @John Avon -256 U Fodder Cannon @DiTerlizzi -257 C Fractured Powerstone @Rob Alexander -258 R Helm of Kaldra @Donato Giancola -259 U Isochron Scepter @Mark Harrison -260 R Krark's Thumb @Ron Spencer -261 R Lotus Bloom @Mark Zug -262 U Memnite @Svetlin Velinov -263 R Mycosynth Golem @Paolo Parente -264 R Panharmonicon @Volkan Baǵa -265 M Platinum Angel @Brom -266 R Prismatic Geoscope @Steven Belledin -267 R Scarecrone @Jesper Ejsing -268 R Scroll Rack @Heather Hudson -269 U Shuriken @Matt Cavotta -270 U Skullclamp @Luca Zontini -271 U Swiftfoot Boots @Svetlin Velinov -272 R Tamiyo's Journal @Chase Stone -273 R Tek @Chippy -274 C Thought Vessel @rk post -275 R Thrumming Stone @Rob Alexander -276 U Trusty Machete @Raymond Swanland -277 R Urza's Blueprints @Tom Wänerstrand -278 C Wayfarer's Bauble @Darrell Riche -279 M Weatherlight @Jaime Jones -280 R Workhorse @DiTerlizzi -281 U Worn Powerstone @Henry G. Higginbotham -282 C Bojuka Bog @Howard Lyon -283 R Cathedral of War @Kekai Kotaki -284 R Command Beacon @Jonas De Ro -285 U Dryad Arbor @Eric Fortune -286 U Eldrazi Temple @James Paick -287 R Emeria, the Sky Ruin @Jaime Jones -288 R Gemstone Mine @Brom -289 U Hashep Oasis @Jonas De Ro -290 R Inventors' Fair @Jonas De Ro -291 R Kher Keep @Paolo Parente -292 U Llanowar Reborn @Philip Straub -293 R Nykthos, Shrine to Nyx @Jung Park -294 R Phyrexian Tower @Chippy -295 R Riptide Laboratory @John Avon -296 R Shelldock Isle @Mark Tedin -297 C Tree of Tales @John Avon -298 R Vesuva @Zoltan Boros & Gabor Szikszai -299 L Wastes @Jason Felix -300 L Plains @Christopher Rush -301 M Morophon, the Boundless @Victor Adame Minguez -302 R Adarkar Valkyrie @Jeremy Jarvis -303 M Crested Sunmare @Lucas Graciano -304 U Daxos, Blessed by the Sun @Jason A. Engle -305 R Elspeth Conquers Death @Ryan Yee -306 R Giver of Runes @Seb McKinnon -307 U Jötun Grunt @Franz Vohwinkel -308 U Release the Dogs @Jason Kang -309 M Frost Titan @Mike Bierek -310 R Ice Cave @Jerry Tiritilli -311 R Jokulmorder @Mark Zug -312 R Kindred Discovery @Lake Hurwitz -313 R Mystical Tutor @Yongjae Choi -314 R Read the Runes @Alan Pollack -315 R Desolation Angel @Brom -316 U Liliana's Devotee @Colin Boyer -317 R Skyclave Shade @Dominik Mayer -318 R Bonecrusher Giant @John Severin Brassell -319 M Brallin, Skyshark Rider @Paul Scott Canavan -320 M Combustible Gearhulk @Daarken -321 C Pillage @Jesper Ejsing -322 R Rite of Flame @Kieran Yanner -323 C Seething Song @Jaime Jones -324 U Tibalt, Rakish Instigator @Chase Stone -325 U Beanstalk Giant @Nick Southam -326 M Freyalise, Llanowar's Fury @Adam Paquette -327 R Hunted Troll @Greg Staples -328 C Into the North @Richard Sardinha -329 R Ohran Frostfang @Torstein Nordstrand -330 R Panglacial Wurm @Jim Pavelec -331 R Vernal Equinox @Rebecca Guay -332 M Vorinclex, Voice of Hunger @Karl Kopinski -333 R Hans Eriksson @Ryan Pancoast -334 R Ice-Fang Coatl @Filip Burburan -335 M Kaya, Ghost Assassin @Chris Rallis -336 M Korvold, Fae-Cursed King @Wisnu Tan -337 U Parcelbeast @Justine Mara Andersen -338 M Shabraz, the Skyshark @Paul Scott Canavan -339 R Yore-Tiller Nephilim @Jeremy Jarvis -340 U Birthing Boughs @Mike Bierek -341 R Cold Storage @Greg Simanson -342 C Cranial Plating @Adam Rex -343 U Herald's Horn @Jason Felix -344 C Horned Helm @Martina Pilcerova -345 C Runed Stalactite @Jim Pavelec -346 R Cavern of Souls @Cliff Childs -347 R Dark Depths @Stephan Martiniere -348 R Scrying Sheets @Thomas M. Baxa -349 M Kozilek, Butcher of Truth @Michael Komarck -350 U Great Teacher's Decree @Zoltan Boros -351 U Jubilant Mascot @Filip Burburan -352 R Pursuit of Knowledge @DiTerlizzi -353 C Stonybrook Schoolmaster @Quinton Hoover & Val Mayerik -354 R Academy Elite @Volkan Baǵa -355 R Archive Trap @Jason Felix -356 U Kasmina, Enigmatic Mentor @Magali Villeneuve -357 R Ormos, Archive Keeper @G-host Lee -358 R Pedantic Learning @Heather Hudson -359 U Relearn @Zina Saunders -360 C Venerated Teacher @Greg Staples -361 M Will Kenrith @Anna Steinbauer -362 M Liliana, the Last Hope @Anna Steinbauer -363 C Painful Lesson @Adrian Majkrzak -364 C Arcane Teachings @Mark Brill -365 R Dual Casting @Johannes Voss -366 C Ghitu Chronicler @Anthony Palumbo -367 U Guttersnipe @Steve Prescott -368 M Lukka, Coppercoat Outcast @Chris Rallis -369 R Mages' Contest @Bradley Williams -370 M Rowan Kenrith @Anna Steinbauer -371 U Young Pyromancer @Cynthia Sheppard -372 R Deeproot Champion @Raymond Swanland -373 R Heartwood Storyteller @Anthony S. Waters -374 M Primeval Bounty @Christine Choi -375 U Renata, Called to the Hunt @Jason A. Engle -376 M Unbound Flourishing @Tomasz Jedruszek -377 U Warriors' Lesson @Steve Prescott -378 M Elenda, the Dusk Rose @Chris Rahn -379 R Firemane Angel @Matt Cavotta -380 M Gisela, Blade of Goldnight @Jason Chan -381 R Mercurial Chemister @Wesley Burt -382 M Mizzix of the Izmagnus @Cliff Childs -383 U Moldervine Reclamation @Antonio José Manzanedo -384 M Niv-Mizzet Reborn @Raymond Swanland -385 R Skullbriar, the Walking Grave @Nils Hamm -386 R Spellbound Dragon @Jesper Ejsing -387 R Unexpected Results @Mike Bierek -388 M Uro, Titan of Nature's Wrath @Vincent Proce -389 R Balefire Liege @Ralph Horsley -390 R Biomass Mutation @Dan Scott -391 U Bloodied Ghost @Mike Dringenberg -392 U Deathless Knight @Igor Kieryluk -393 R Grind // Dust @Josh Hass -394 R Fool's Tome @Julie Baroh -395 M Grimoire of the Dead @Steven Belledin -396 R Knowledge Pool @Mike Bierek -397 U Nuisance Engine @Stephen Tappin -398 R Scroll of the Masters @Lake Hurwitz -399 U Spellbook @Andrew Goldhawk -400 R Walking Archive @Heather Hudson -401 M Mirrorpool @Cliff Childs -402 U Nephalia Academy @Adam Paquette -403 L Island @Piotr Dura -404 R Always Watching @Chase Stone -405 M Angel of Serenity @Aleksi Briclot -406 U Canyon Jerboa @Dominik Mayer -407 R Celestial Ancient @Mark Tedin -408 U Reduce to Memory @Campbell White -409 U Soulcatchers' Aerie @Rob Alexander -410 U Stasis Snare @Slawomir Maniak -411 R Stonehewer Giant @Steve Prescott -412 M Sun Titan @Todd Lockwood -413 M Bruvac the Grandiloquent @Ekaterina Burmak -414 U Callaphe, Beloved of the Sea @Jason A. Engle -415 U Fact or Fiction @Matt Cavotta -416 M Orvar, the All-Form @DZO -417 R Riptide Director @Scott M. Fischer -418 R Spell Swindle @Victor Adame Minguez -419 U Time of Ice @Franz Vohwinkel -420 U Animate Dead @Bastien L. Deharme -421 R Bone Miser @Antonio José Manzanedo -422 R Bridge from Below @Greg Hildebrandt & Tim Hildebrandt -423 R Entreat the Dead @Deruchenko Alexander -424 R Mindslicer @Kev Walker -425 U Goblin Assassin @Dave Dorman -426 R Kari Zev, Skyship Raider @Brad Rigney -427 U Lesser Gargadon @Rob Alexander -428 C Lightning Axe @Dan Scott -429 U Lightning Bolt @Christopher Moeller -430 R Splinter Twin @Goran Josic -431 U Storm Entity @Lucio Parrillo -432 C Chatter of the Squirrel @Jim Nelson -433 R Nut Collector @Christopher Moeller -434 R Tarmogoyf @Justin Murray -435 R Tireless Tracker @Eric Deschamps -436 U Veil of Summer @Lake Hurwitz -437 U Aura Shards @Ron Spencer -438 M Dragonlord Atarka @Karl Kopinski -439 R Filigree Angel @Richard Whitters -440 R Grand Arbiter Augustin IV @Zoltan Boros & Gabor Szikszai -441 U Juniper Order Ranger @Greg Hildebrandt -442 M Master of Cruelties @Chase Stone -443 U Obsessive Stitcher @Joe Slucher -444 M Olivia, Mobilized for War @Eric Deschamps -445 M Phenax, God of Deception @Ryan Barger -446 U Guttural Response @Ben Wootten -447 U Aether Vial @Greg Hildebrandt -448 R Arcbound Overseer @Carl Critchlow -449 R Blackblade Reforged @Richard Kane Ferguson -450 C Ancient Den @Rob Alexander -451 R Petrified Field @Glen Angus -452 R Urborg, Tomb of Yawgmoth @Jung Park -453 L Mountain @John Avon -454 U Quest for the Holy Relic @Greg Staples -455 C Resurrection @Michael Komarck -456 S Silence @Wayne Reynolds -457 U Twinblade Paladin @Jana Schirmer -458 U Undead Slayer @Eric Fortune -459 U Air Elemental @Doug Chaffee -460 C Invisibility @Pete Venters -461 U Invisible Stalker @Bud Cook -462 C Jump @Eric Deschamps -463 R Polymorph @Robert Bliss -464 U Raven Familiar @John Avon -465 U Sleep @Chris Rahn -466 C Sleeping Potion @Daren Bader -467 R Tempest Djinn @Zezhou Chen -468 R Trade Routes @Matt Cavotta -469 U Treasure Trove @Michael Sutfin -470 U Assassin's Blade @John Matson -471 R Captivating Vampire @Eric Deschamps -472 R Demonic Tutor @Zack Stella -473 C Dungeon Shade @Jason Alexander Behnke -474 R Nightmare @Vance Kovacs -475 U Noxious Ghoul @Luca Zontini -476 U Tymaret, Chosen from Death @Jason A. Engle -477 U Will-o'-the-Wisp @Rob Alexander -478 M Balefire Dragon @Eric Deschamps -479 U Fireball @Dave Dorman -480 C Orcish Lumberjack @Steve Prescott -481 R Sneak Attack @Jerry Tiritilli -482 U Stone Giant @Warren Mahy -483 R Hermit Druid @Heather Hudson -484 R Traverse the Outlands @Daarken -485 R Yisan, the Wanderer Bard @Chase Stone -486 M Arcades, the Strategist @Even Amundsen -487 M Daxos the Returned @Adam Paquette -488 M Dragonlord Dromoka @Eric Deschamps -489 R Grenzo, Dungeon Warden @Lucas Graciano -490 M Hellkite Overlord @Justin Sweet -491 R Cloud Key @Trevor Hairsine -492 R Coveted Jewel @Jason A. Engle -493 R Doubling Cube @Mark Tedin -494 C Expedition Map @Franz Vohwinkel -495 R Gauntlet of Power @Greg Hildebrandt -496 U Golem's Heart @Matt Cavotta -497 R Haunted Plate Mail @Izzy -498 U Sorcerer's Wand @Matt Stewart -499 R Staff of Domination @Ben Thompson -500 R Transmogrifying Wand @Aaron Miller -501 R Eiganjo Castle @Wayne England -502 R Gemstone Caverns @Martina Pilcerova -503 R Champion of the Parish @Svetlin Velinov -504 U Cloister Gargoyle @Russ Nicholson -505 U Emissary of Sunrise @Deruchenko Alexander -506 C Expose to Daylight @Daniel Ljunggren -507 R Fiendslayer Paladin @Wesley Burt -508 R Hokori, Dust Drinker @Darrell Riche -509 R Selfless Spirit @Seb McKinnon -510 R Speaker of the Heavens @Randy Vargas -511 R Student of Warfare @Volkan Baǵa -512 R Windborn Muse @Adam Rex -513 C Hard Evidence @Yeong-Hao Han -514 R Llawan, Cephalid Empress @Mark Zug -515 R Midnight Clock @Alexander Forssberg -516 R Moonlace @Mike Dringenberg -517 R Patron of the Moon @Scott M. Fischer -518 R Rishadan Brigand @Scott Hampton -519 R Snapcaster Mage @Volkan Baǵa -520 C Toils of Night and Day @Matt Cavotta -521 C Bleak Coven Vampires @Randis Albion -522 R Divining Witch @Donato Giancola -523 R Graveborn Muse @Kev Walker -524 R Gravespawn Sovereign @Adam Rex -525 R Helldozer @Zoltan Boros & Gabor Szikszai -526 M Mikaeus, the Unhallowed @Chris Rahn -527 C Rend Flesh @Stephen Tappin -528 R Sidisi, Undead Vizier @Min Yum -529 U Stitcher's Supplier @Chris Seaman -530 C Treacherous Werewolf @Mark Tedin -531 R Witch of the Moors @Caio Monteiro -532 U Archetype of Aggression @Mathias Kollros -533 C Faithless Looting @Gabor Szikszai -534 U Honden of Infinite Rage @John Avon -535 R Ib Halfheart, Goblin Tactician @Wayne Reynolds -536 U Loyal Apprentice @Joe Slucher -537 R Magus of the Moon @Franz Vohwinkel -538 M Malignus @Jung Park -539 R Mindmoil @Alex Horley-Orlandelli -540 U Shivan Harvest @Daren Bader -541 R Stigma Lasher @Aleksi Briclot -542 R Thieves' Auction @Kevin Murphy -543 R Witch Hunt @Karl Kopinski -544 R All Suns' Dawn @Glen Angus -545 U Arlinn, Voice of the Pack @Ryan Pancoast -546 C Dire Wolf Prowler @Diesel -547 R Early Harvest @Janine Johnston -548 C Fierce Witchstalker @Nicholas Gregory -549 R Gaea's Will @Lucas Graciano -550 M Master of the Wild Hunt @Kev Walker -551 U Serene Sunset @David Martin -552 C Strength of Night @John Avon -553 R Wolfir Silverheart @Raymond Swanland -554 R Abrupt Decay @Svetlin Velinov -555 U Call of the Nightwing @Adam Paquette -556 M General Kudro of Drannith @Ryan Pancoast -557 M Karametra, God of Harvests @Eric Deschamps -F558 R Kaya, Ghost Haunter @Sydney Adams -559 R Lich Lord of Unx @Dave Allsop -560 R Lonis, Cryptozoologist @Andrew Mar -561 R Mortify @Brian Snõddy -562 M Sedris, the Traitor King @Paul Bonner -563 M Teferi, Hero of Dominaria @Chris Rallis -564 U Night // Day @Christopher Moeller -565 U Gate to the Afterlife @Christine Choi -566 M Helvault @Jaime Jones -F567 R Puresteel Angel @Lukas Litzsinger -568 R Sapphire Medallion @Sue Ellen Brown -569 U Selesnya Keyrune @Daniel Ljunggren -570 C Signpost Scarecrow @Jung Park -571 U Umbral Mantle @Richard Sardinha -572 R Vedalken Orrery @John Avon -573 U Witch's Oven @Alexander Forssberg -574 U Ancient Tomb @Colin MacNeil -575 U Karoo @Zina Saunders -576 U Orzhova, the Church of Deals @Martina Pilcerova -577 R Unholy Grotto @John Avon -578 C Benediction of Moons @Matt Cavotta -579 C Late to Dinner @Kev Walker -580 U Light of Day @Drew Tucker -581 R Odric, Master Tactician @Michael Komarck -582 C Sacred Rites @Bradley Williams -583 R Sanguine Sacrament @Bastien L. Deharme -584 R Second Sunrise @Greg Staples -585 U Skymarcher Aspirant @Winona Nelson -586 U Starnheim Aspirant @Kieran Yanner -587 R Thalia's Lieutenant @Johannes Voss -588 S Baral, Chief of Compliance @Wesley Burt -589 U Brinelin, the Moon Kraken @Adam Paquette -590 M Day's Undoing @Jonas De Ro -591 C Floodhound @Lius Lasahido -592 R Profaner of the Dead @Vincent Proce -593 U Silumgar Sorcerer @Jeff Simpson -594 R Bad Moon @Gary Leach -595 R Bloodchief Ascension @Adi Granov -596 C Blood Pet @Brom -597 M Cavalier of Night @Viktor Titov -598 R Exquisite Blood @Cynthia Sheppard -599 R Geralf's Messenger @Kev Walker -600 R Guul Draz Assassin @James Ryman -601 R Sign in Blood @Alan Pollack -602 M Sorin Markov @Michael Komarck -603 R Sorin's Vengeance @Jana Schirmer & Johannes Voss -604 M Twilight Prophet @Seb McKinnon -605 U Vampiric Feast @D. Alexander Gregory -606 M Vampiric Tutor @Raymond Swanland -607 U Wall of Blood @Tony Szczudlo -608 R Blood Moon @Franz Vohwinkel -609 U Blood Rites @Raymond Swanland -610 C Boiling Blood @Cliff Nielsen -611 C Ceremonial Guard @Daren Bader -612 M Chandra Nalaar @Aleksi Briclot -613 U Crimson Muckwader @Steven Belledin -614 U Vow of Lightning @Randy Vargas -615 U Assault Formation @Kieran Yanner -616 C Commencement of Festivities @Zack Stella -617 U Cult of the Waxing Moon @Anastasia Ovchinnikova -618 R Deathcoil Wurm @Rebecca Guay -619 U Exuberant Wolfbear @Jesper Ejsing -620 R Gutter Grime @Erica Yang -621 U Joraga Treespeaker @Cyril Van Der Haegen -622 R Mongrel Pack @Jeff Miracola -623 U Noxious Revival @Matt Stewart -624 R Pir's Whim @Jakub Kasper -625 U Song of Freyalise @Min Yum -626 U Strangleroot Geist @Erica Yang -627 R Witchstalker @Christopher Moeller -628 U Belligerent Brontodon @Dan Scott -629 U Cruel Celebrant @Bastien L. Deharme -630 M Gisa and Geralf @Karla Ortiz -631 M Karador, Ghost Chieftain @Todd Lockwood -632 M Vela the Night-Clad @Allen Williams -633 R Witch-Maw Nephilim @Greg Staples -634 U Dryad Militant @Ryan Pancoast -635 U Mistmeadow Witch @Greg Staples -636 U Moonhold @Mike Dringenberg -637 R Murkfiend Liege @Carl Critchlow -638 R Wheel of Sun and Moon @Zoltan Boros & Gabor Szikszai -639 R Flesh // Blood @Lucas Graciano -640 R Blood Clock @Keith Garletts -641 R Howling Mine @Ralph Horsley -642 R Jet Medallion @Sue Ellen Brown -643 R Juntu Stakes @Mark Brill -644 U Lunar Avenger @Paolo Parente -645 U Perpetual Timepiece @Cliff Childs -646 C Training Drone @Matt Cavotta -647 R Unwinding Clock @Mike Bierek -648 U Witches' Eye @Daniel Ljunggren -649 C Wooden Stake @David Palumbo -650 R Blood Crypt @Rob Alexander -651 R Shinka, the Bloodsoaked Keep @Thomas M. Baxa -652 R Shivan Gorge @John Matson -653 U Scion of Ugin @Cliff Childs -654 R Anointed Procession @Victor Adame Minguez -655 R Final Judgment @Kev Walker -656 C Flutterfox @Lucas Graciano -657 R Michiko Konda, Truth Seeker @Christopher Moeller -658 U Nagao, Bound by Honor @Dave Dorman -659 U Novice Knight @Yongjae Choi -660 R Rune-Tail, Kitsune Ascendant @Randy Gallegos -661 R Spirit of the Labyrinth @Jason Chan -662 U Stone Haven Pilgrim @Cristi Balanescu -663 U The Wanderer @Wesley Burt -664 U Warchanter Skald @Daniel Zrom -665 R Aboshan, Cephalid Emperor @Christopher Moeller -666 C Dispersal Technician @Scott Murphy -667 U Honden of Seeing Winds @Martina Pilcerova -668 M Jin-Gitaxias, Core Augur @Eric Deschamps -669 R Sakashima's Student @Brian Snõddy -670 U Soratami Savant @Jim Nelson -671 M Tezzeret, Artifice Master @Josh Hass -672 R Thousand Winds @Raymond Swanland -673 R The Unspeakable @Daarken -674 R Confront the Past @Kieran Yanner -675 R Ink-Eyes, Servant of Oni @Wayne Reynolds -676 U Noxious Toad @Adrian Smith -677 C Rat Colony @Suzanne Helmigh -678 C Sink into Takenuma @Pat Lee -679 R Whispersteel Dagger @Svetlin Velinov -680 U Akki Coalflinger @Nottsuo -681 R Bedlam @Mike Raabe -682 R Blazing Shoal @Glen Angus -683 R Heartless Hidetsugu @Carl Critchlow -684 R Kiki-Jiki, Mirror Breaker @Pete Venters -685 R Lavaborn Muse @Brian Snõddy -686 R Mizzium Tank @Wayne Reynolds -687 R Pillaging Horde @Kev Walker -688 R Pyroclasm @John Matson -689 C Reality Hemorrhage @Chris Rallis -690 R Ruin Grinder @Hector Ortiz -691 U Siege Modification @Sung Choi -692 R Starke of Rath @Dan Frazier -693 R Eidolon of Blossoms @Min Yum -694 R Endless Wurm @DiTerlizzi -695 R Force of Savagery @Dan Scott -696 U Haru-Onna @Rebecca Guay -697 C Jade Avenger @Chris Seaman -698 R Jugan, the Rising Star @Filip Burburan -699 R Oxidize @Scott M. Fischer -700 S Reclamation Sage @Christopher Moeller -701 R Seshiro the Anointed @Daren Bader -702 U Skullwinder @James Paick -703 U Sosuke's Summons @Kev Walker -704 R Spectral Force @Dan Scott -705 U Vintara Snapper @Joel Biske -706 C Vulpine Goliath @Adam Paquette -707 C Architects of Will @Matt Stewart -708 R Brago, King Eternal @Karla Ortiz -709 C Deny Reality @Jean-Sébastien Rossbach -710 M Kaseto, Orochi Archmage @Aaron Miller -711 U Reyav, Master Smith @Scott Murphy -712 M Roon of the Hidden Realm @Steve Prescott -713 R Tamiyo, Collector of Tales @Chase Stone -714 R Tezzeret's Betrayal @Tyler Jacobson -715 U Veteran Motorist @Christopher Moeller -716 U Illusion // Reality @John Avon -717 M Batterskull @Mark Zug -718 R Illusionist's Bracers @Svetlin Velinov -719 R Mirror Gallery @Scott M. Fischer -720 U O-Naginata @Brian Snõddy -721 R Sensei's Divining Top @Rob Alexander -722 U Tapestry of the Ages @Yeong-Hao Han -723 R That Which Was Taken @Adam Rex -724 R Thousand-Year Elixir @Richard Sardinha -725 R Umezawa's Jitte @Christopher Moeller -726 R Hall of the Bandit Lord @Paolo Parente -727 R Tendo Ice Bridge @Rob Alexander -728 M Elspeth, Undaunted Hero @Steven Belledin -729 R Runed Halo @Steve Prescott -730 M Ob Nixilis, the Fallen @Jason Felix -731 R Remorseless Punishment @Ryan Barger -732 R Krenko, Tin Street Kingpin @Mark Behm -733 M Urabrask the Hidden @Brad Rigney -734 M Vivien Reid @Anna Steinbauer -735 M Admiral Beckett Brass @Jason Rainville -736 R Asmoranomardicadaistinaculdacar @Ryan Pancoast -737 R Crosis, the Purger @Chris Rahn -738 M Outlaws' Merriment @Suzanne Helmigh -739 R Treasury Thrull @Mark Zug -740 R Wasitora, Nekoru Queen @Cynthia Sheppard -741 M Zacama, Primal Calamity @Jaime Jones -742 R Alabaster Dragon @Ted Naifeh -743 U Archway Angel @Milivoj Ćeran -744 R Fountain Watch @Jeff Miracola -745 R Ghostway @Jim Murray -746 R Loxodon Gatekeeper @Carl Critchlow -747 U Nova Cleric @Alan Pollack -748 R Paladin en-Vec @Dave Kendall -749 R Pentarch Paladin @Jim Murray -750 R Puresteel Paladin @Jason Chan -751 R Ranger of Eos @Volkan Baǵa -752 U Treasure Hunter @Adam Rex -753 R Aura Thief @Ron Spears -754 U Broodbirth Viper @Mathias Kollros -755 R Cloud Dragon @John Avon -756 R Curse of Echoes @Slawomir Maniak -757 U Ominous Seas @Vincent Proce -758 C Opal Lake Gatekeepers @Seb McKinnon -759 R Plea for Power @John Severin Brassell -760 R Quicksilver Dragon @Ron Spencer -761 C Sea Gate Oracle @Daniel Ljunggren -762 R Search the City @Jack Wang -763 R Serendib Sorcerer @Dan Scott -764 R Sunder @Stephen Daniele -765 U Wizard Class @Marta Nael -766 U Wizard's Retort @Grzegorz Rutkowski -767 M Demon of Death's Gate @Vance Kovacs -768 R Endrek Sahr, Master Breeder @Mark Tedin -769 R Kederekt Parasite @Dan Scott -770 M Lolth, Spider Queen @Tyler Jacobson -771 U Pitiless Plunderer @David Palumbo -772 R Quest for the Nihil Stone @Mike Bierek -773 R Repay in Kind @Vance Kovacs -774 R Volrath's Dungeon @Stephen Daniele -775 C Dragon's Approach @Andrew Mar -776 U Dragon's Rage Channeler @Martina Fačková -777 M Goldspan Dragon @Andrew Mar -778 R Lathliss, Dragon Queen @Alex Konstad -779 U Magic Missile @PINDURSKI -780 U Thundering Sparkmage @Billy Christian -781 R Worldgorger Dragon @Wayne England -782 U Devoted Druid @Kimonas Theodossiou -783 U Druid's Call @Greg Hildebrandt & Tim Hildebrandt -784 U Edgewall Innkeeper @Matt Stewart -785 R Gilt-Leaf Archdruid @Steve Prescott -786 M Old Gnawbone @Filip Burburan -787 U Scryb Ranger @Rebecca Guay -788 R Silvos, Rogue Elemental @Carl Critchlow -789 U Tireless Provisioner @Josu Hernaiz -790 U Clutch of the Undercity @Pete Venters -791 U Forging the Tyrite Sword @Kieran Yanner -792 U Invade the City @Sung Choi -793 U Krydle of Baldur's Gate @Jeff Dee -794 R Linvala, Shield of Sea Gate @Wayne Reynolds -795 M Minsc, Beloved Ranger @Howard Lyon -796 U Risen Reef @Johan Grenier -797 U Spoils of Adventure @Zezhou Chen -798 M Tiamat @Chris Rahn -799 C Yavimaya Barbarian @Don Hazeltine -800 C Shield of the Oversoul @Steven Belledin -801 U Bucknard's Everfull Purse @Joe Slucher -802 R Clockwork Dragon @Arnie Swekel -803 U Component Pouch @Chris Seaman -804 U Fifty Feet of Rope @Andrew Mar -805 U Kite Shield @Jim Pavelec -806 C Leather Armor @Martina Pilcerova -807 U Lucky Clover @John Stanko -808 C Mimic @Diesel -809 R Pariah's Shield @Doug Chaffee -810 R Sword of the Chosen @Adam Rex -811 U Barbarian Ring @John Avon -812 R Forsaken City @Dana Knutson -813 M Maze's End @Cliff Childs -814 U Underdark Rift @Chris Ostrowski -815 M Karn Liberated @Jason Chan -816 R Ajani's Last Stand @Slawomir Maniak -817 M Ajani, Strength of the Pride @Chris Rallis -818 C Benalish Infantry @Dan Frazier -819 R Dominaria's Judgment @John Avon -820 R Graceful Antelope @Heather Hudson -821 R Orim's Chant @Kev Walker -822 R Planar Collapse @Mark Zug -823 R Rout @Ron Spencer -824 C Teremko Griffin @Martin McKenna -825 R Braids, Conjurer Adept @Zoltan Boros & Gabor Szikszai -826 R Collective Restraint @Alan Rabinowitz -827 R Empress Galina @Matt Cavotta -828 R Ertai's Meddling @Steve Luke -829 U Ghost of Ramirez DePietro @Grzegorz Rutkowski -830 U Jodah's Avenger @Pete Venters -831 U Metathran Elite @Jim Nelson -832 C Probe @Eric Peterson -833 R Seahunter @Heather Hudson -834 U Teferi's Veil @Brom -835 R Whirlpool Warrior @Kev Walker -836 U Cast Down @Bastien L. Deharme -837 U Chain of Smog @Greg Staples -838 R Contamination @Stephen Daniele -839 C Crypt Rats @Paul Lee -840 C Dark Ritual @Tom Fleming -841 C Dash Hopes @Zoltan Boros & Gabor Szikszai -842 R Doomsday @Adrian Smith -843 U Hymn to Tourach @Greg Staples -844 U Imps' Taunt @Colin MacNeil -845 C Phyresis @Izzy -846 C Phyrexian Battleflies @Dan Frazier -847 M Phyrexian Scriptures @Joseph Meehan -848 M Sheoldred, Whispering One @Jana Schirmer & Johannes Voss -849 R Sleeper Agent @Randy Gallegos -850 U Stitch Together @Arnie Swekel -851 M Tourach, Dread Cantor @Greg Staples -852 R Alpine Moon @Alayna Danner -853 C Brightstone Ritual @Wayne England -854 C Burning Inquiry @Zoltan Boros & Gabor Szikszai -855 R Ghitu Fire @Glen Angus -856 R Invasion Plans @Pete Venters -857 R Jaya Ballard, Task Mage @Matt Cavotta -858 R Lovisa Coldeyes @Brian Snõddy -859 R Obliterate @Kev Walker -860 R Pandemonium @Pete Venters -861 R Skirk Fire Marshal @Greg Hildebrandt -862 U Viashino Heretic @Douglas Shuler -863 R Wake of Destruction @Todd Lockwood -864 U Wall of Granite @Kev Walker -865 U Elephant Grass @Tony Roberts -866 R Elvish Champion @D. Alexander Gregory -867 R Jedit Ojanen of Efrava @Carl Critchlow -868 R Magnigoth Treefolk @Peter Bollinger -869 R The Mending of Dominaria @Adam Paquette -870 U Riftsweeper @Brian Despain -871 C Cavern Harpy @Daren Bader -872 S Coalition Victory @Eric Peterson -873 R Ertai, the Corrupted @Mark Tedin -874 R Jhoira of the Ghitu @Kev Walker -875 R Kangee, Aerie Keeper @Mark Romanoski -876 M Prossh, Skyraider of Kher @Todd Lockwood -877 R Tsabo Tavoc @Michael Sutfin -878 M Vaevictis Asmadi, the Dire @Steven Belledin -879 U Wall of Denial @Howard Lyon -880 R Amber Prison @Donato Giancola -881 R Coalition Relic @Donato Giancola -882 R Helm of the Host @Igor Kieryluk -883 R Legacy Weapon @John Avon -884 U Phyrexian Furnace @George Pratt -885 C Phyrexian Walker @Bryan Talbot -886 M Scion of Draco @Greg Staples -887 U Shifting Wall @Michael Sutfin -888 U Desert @Glen Angus -889 U Dromar's Cavern @Franz Vohwinkel -890 R Archaeomancer's Map @Ovidio Cartagena -891 U Argivian Find @Roger Raupp -892 R Blessed Reversal @Pete Venters -893 R Catastrophe @Andrew Robinson -894 R Crescendo of War @Daarken -895 R Death or Glory @Jeff Easley -896 R Fall of the Thran @Jason Felix -897 R Kataki, War's Wage @Matt Thompson -898 U Pledge of Loyalty @Franz Vohwinkel -899 R The Antiquities War @Mark Tedin -900 U Argivian Restoration @Roger Raupp -901 U Energy Flux @Qiao Dafu -902 U Glacian, Powerstone Engineer @Magali Villeneuve -903 R Hurkyl's Recall @Ralph Horsley -904 R March of the Machines @Ben Thompson -905 M Mechanized Production @Adam Paquette -906 U Opportunity @Ron Spears -907 R Beacon of Unrest @Joseph Meehan -908 R Dark Suspicions @Matt Cavotta -909 C Grisly Transformation @Tyler Jacobson -910 R K'rrik, Son of Yawgmoth @Chase Stone -911 U Order of Yawgmoth @Chippy -912 U Priest of Gix @Brian Despain -913 M Tevesh Szat, Doom of Fools @Livia Prima -914 R Witch Engine @Kev Walker -915 R Yawgmoth's Agenda @Arnie Swekel -916 U Acidic Soil @Scott M. Fischer -917 R Brand @Donato Giancola -918 U Detonate @Dave Dorman -919 M Feldon of the Third Path @Chase Stone -920 R In the Web of War @Ron Spencer -921 U Shatterstorm @Paolo Parente -922 R Words of War @Justin Sweet -923 R World at War @Igor Kieryluk -924 U Argothian Elder @DiTerlizzi -925 R Bane of Progress @Lars Grant-West -926 R Citanul Hierophants @Vincent Evans -927 R Collector Ouphe @Filip Burburan -928 R Force of Vigor @Randy Vargas -929 U Gaea's Embrace @Paolo Parente -930 R Gaea's Revenge @Kekai Kotaki -931 R Molder Slug @Heather Hudson -932 C Priest of Titania @Rebecca Guay -933 U Retaliation @Tom Fleming -934 R Tempting Wurm @Bob Petillo -935 M Titania, Protector of Argoth @Magali Villeneuve -936 M Verdurous Gearhulk @Jaime Jones -937 R Mishra, Artificer Prodigy @Scott M. Fischer -938 R Powerstone Minefield @Greg Hildebrandt -939 M Saheeli Rai @Willian Murai -940 M Tawnos, Urza's Apprentice @Matt Stewart -941 U Thopter Foundry @Ralph Horsley -942 R Colossus of Sardia @Greg Staples -943 U Crumbling Colossus @Michael C. Hayes -944 U Endoskeleton @Mark Tedin -945 R Eye of Yawgmoth @DiTerlizzi -946 R Mishra's Helix @Berry -947 R Mishra's Self-Replicator @Joseph Meehan -948 R Pentavus @Greg Staples -949 R Phyrexian Colossus @Mark Tedin -950 U Power Armor @Doug Chaffee -951 C Powerstone Shard @Lindsey Look -952 R Prototype Portal @Drew Baker -953 R Smokestack @Scott Kirschner -954 U Thran Forge @Mark Poole -955 U Thran War Machine @Pete Venters -956 U Toymaker @Frank Kelly Freas -957 U Urza's Armor @rk post -958 C Yotian Soldier @Luca Zontini -959 U Memorial to Genius @James Paick -960 U Mishra's Factory @Scott Chou -961 U Mouth of Ronom @Daren Bader -962 R Thran Quarry @Michael Sutfin -963 U Urza's Factory @Mark Tedin -964 R Urza's Saga @Titus Lunter -965 U Due Respect @James Ryman -966 U High Ground @rk post -967 U Kemba's Legion @Anthony Francisco -968 R Leonin Arbiter @Shelly Wan -969 C Priests of Norn @Igor Kieryluk -970 R Rout @Igor Kieryluk -971 C Survival Cache @Scott Chou -972 R Game Plan @Seb McKinnon -973 C Gitaxian Probe @Chippy -974 R Mirrodin Besieged @Bram Sels -975 R Venser, Shaper Savant @Aleksi Briclot -976 C Geth's Verdict @Whit Brachna -977 C Lose Hope @Matt Cavotta -978 C Phyrexian Monitor @Carl Critchlow -979 U Phyrexian Prowler @Mark Zug -980 U Reaper of Sheoldred @Stephan Martiniere -981 U Vile Requiem @Carl Critchlow -982 C Artillerize @Johann Bodin -983 U Implode @Arnie Swekel -984 C Mana Geyser @Martina Pilcerova -985 R Slobad, Goblin Tinkerer @Kev Walker -986 C Toxic Iguanar @Brandon Kitkouski -987 R Ezuri, Renegade Leader @Karl Kopinski -988 C Glissa's Courier @Dave Kendall -989 U Melira's Keepers @Eric Deschamps -990 M Praetor's Counsel @Daarken -991 C Sabertooth Cobra @Andrew Robinson -992 M Tyvar Kell @Chris Rallis -993 C Virulent Sliver @Franz Vohwinkel -994 M Kaito Shizuki @Yongjae Choi -995 M Kaya, Orzhov Usurper @Yongjae Choi -996 R Xantcha, Sleeper Agent @Mark Winters -997 R Argentum Armor @Matt Cavotta -998 M Blightsteel Colossus @Chris Rahn -999 R Fist of Suns @Arnie Swekel -1000 U Geth's Grimoire @Heather Hudson -1001 M Kaldra Compleat @Vincent Proce -1002 U Lantern of Insight @Tim Hildebrandt -1003 M Mycosynth Lattice @Anthony S. Waters -1004 C Nihil Spellbomb @Franz Vohwinkel -1005 R Phyrexian Altar @Yigit Koroglu -1006 U Phyrexian Snowcrusher @Dave Allsop -1007 U Phyrexian Splicer @Brom -1008 M Phyrexian Triniform @Adam Paquette -1009 U Phyrexian Vault @Hannibal King -1010 M Soul of New Phyrexia @Daarken -1011 M Sword of Feast and Famine @Chris Rahn -1012 M Sword of War and Peace @Chris Rahn -1013 C Great Furnace @Rob Alexander -1014 U Interplanar Beacon @Adam Paquette -1015 R Austere Command @Wayne England -1016 C Brago's Representative @Anthony Palumbo -1017 M Heliod, God of the Sun @Jaime Jones -1018 U Ixalan's Binding @Chase Stone -1019 R Linden, the Steadfast Queen @Ryan Pancoast -1020 R Ravnica at War @Adam Paquette -1021 C Segovian Angel @Simon Dominic -1022 U Vryn Wingmare @Seb McKinnon -1023 R Archmage Emeritus @Caio Monteiro -1024 R Balance of Power @Adam Rex -1025 U Invasive Surgery @Steven Belledin -1026 R Laboratory Maniac @Jason Felix -1027 R Mass Polymorph @Christopher Moeller -1028 R Pulse of the Grid @Wayne England -1029 R Reshape @Jon Foster -1030 R Rite of Replication @Matt Cavotta -1031 R Rooftop Storm @John Stanko -1032 R Shared Fate @Matt Cavotta -1033 U Stormscape Battlemage @Christopher Moeller -1034 R Time Stretch @Paolo Parente -1035 R True-Name Nemesis @Zack Stella -1036 R Aether Snap @Kev Walker -1037 R Drinker of Sorrow @Carl Critchlow -1038 U Endless Obedience @Karl Kopinski -1039 U Ihsan's Shade @Daarken -1040 M Nashi, Moon Sage's Scion @Valera Lutfullina -1041 R Needle Specter @Christopher Moeller -1042 R Phyrexian Crusader @Eric Deschamps -1043 R Phyrexian Delver @Igor Kieryluk -1044 R Phyrexian Etchings @Ron Spears -1045 R Phyrexian Infiltrator @Darrell Riche -1046 R Phyrexian Vatmother @Stephan Martiniere -1047 R Rain of Daggers @Melissa A. Benson -1048 C Siege Zombie @Johann Bodin -1049 R Unmask @rk post -1050 R Eidolon of the Great Revel @Cyril Van Der Haegen -1051 R Etali, Primal Storm @Raymond Swanland -1052 R Five-Alarm Fire @Karl Kopinski -1053 U Mercadia's Downfall @Pete Venters -1054 R Pia and Kiran Nalaar @Eric Deschamps -1055 R Planeswalker's Fury @Christopher Moeller -1056 C Regathan Firecat @Eric Velhagen -1057 C Ruthless Invasion @Svetlin Velinov -1058 R Scorched Earth @Nicola Leonard -1059 R Siege of Towers @Anthony S. Waters -1060 R Slag Fiend @Mike Bierek -1061 M Soul of Shandalar @Raymond Swanland -1062 M Avenger of Zendikar @Zoltan Boros & Gabor Szikszai -1063 C Capenna Express @Viko Menezes -1064 R Dig Up @Slawomir Maniak -1065 R Ghalta, Primal Hunger @Chase Stone -1066 M The Great Aurora @Sam Burley -1067 R Muraganda Petroglyphs @Scott Altmann -1068 U Path to the World Tree @Daniel Ljunggren -1069 M Polukranos, World Eater @Johann Bodin -1070 C Primal Cocoon @Daniel Ljunggren -1071 C Sprout Swarm @Chippy -1072 R Anax and Cymede @Willian Murai -1073 M Borborygmos Enraged @Aleksi Briclot -1074 M Dragonlord Ojutai @Chase Stone -1075 M Gisa and Geralf @Karla Ortiz -1076 U Incubation // Incongruity @Mike Bierek -1077 M Kalamax, the Stormsire @Nicholas Gregory -1078 R Mina and Denn, Wildborn @Izzy -1079 U Reduce // Rubble @Eric Deschamps -1080 R Sarulf, Realm Eater @Chris Rahn -1081 R Dragon Throne of Tarkir @Daarken -1082 R Hope of Ghirapur @Lius Lasahido -1083 R Planar Portal @Mark Tedin -1084 R High Market @Carl Critchlow -1085 R Ketria Triome @Sam Burley -1086 R Okina, Temple to the Grandfathers @Keith Garletts -1087 R Sea of Clouds @Florian de Gesincourt -1088 R The World Tree @Anastasia Ovchinnikova -1089 U Zhalfirin Void @Chase Stone -1090 U All That Glitters @Iain McCaig -1091 U Baird, Steward of Argive @Christine Choi -1092 C Battleflight Eagle @Kev Walker -1093 R Court of Grace @Denman Rooke -1094 R Darien, King of Kjeldor @Michael Phillippi -1095 C Doomed Traveler @Lars Grant-West -1096 R Earnest Fellowship @Heather Hudson -1097 U Far Traveler @Alix Branwyn -1098 C Fortifying Provisions @Scott Murphy -1099 U Generous Gift @Kev Walker -1100 M Kenrith, the Returned King @Kieran Yanner -1101 R Knight-Captain of Eos @Chris Rahn -1102 R Knight Exemplar @Jason Chan -1103 C Oaken Brawler @Jim Murray -1104 R Ancestral Memories @Dan Frazier -1105 R Arcane Melee @Jaime Jones -1106 R Commandeer @John Matson -1107 R Counterlash @Austin Hsu -1108 R Denying Wind @Tony Szczudlo -1109 R Exhaustion @DiTerlizzi -1110 R Mindlock Orb @rk post -1111 R Oath of Scholars @Michael Sutfin -1112 R Rayne, Academy Chancellor @Matthew D. Wilson -1113 C Stormwatch Eagle @Aaron Boyd -1114 R Stroke of Genius @Stephen Daniele -1115 C Traveler's Cloak @Rebecca Guay -1116 C Barrow Ghoul @Bryan Talbot -1117 C Barrow Witches @Alex Brock -1118 U Bog Wraith @Daarken -1119 U Evil Eye of Urborg @Clint Langley -1120 U Grim Strider @Christine Choi -1121 U Orc Sureshot @Kev Walker -1122 R Pitiless Horde @Viktor Titov -1123 U Crush the Weak @Lucas Graciano -1124 R Dwarven Bloodboiler @Arnie Swekel -1125 C Dwarven Grunt @Mike Ploog -1126 U Dwarven Miner @Jock -1127 U Glittering Stockpile @Brock Grossman -1128 U Hoarding Dragon @Matt Cavotta -1129 C Miner's Bane @Adam Paquette -1130 U Orcish Artillery @Jeff Miracola -1131 R Reforge the Soul @Jaime Jones -1132 C Battlewand Oak @Steve Prescott -1133 U Blossom Prancer @Ryan Yee -1134 R Budoka Gardener @Kev Walker -1135 C Courage in Crisis @Micah Epstein -1136 R Dauntless Dourbark @Jeremy Jarvis -1137 U Elven Palisade @Mark Zug -1138 R Elven Warhounds @Kev Walker -1139 U Gather Courage @Brian Despain -1140 R Leaf-Crowned Elder @Wayne Reynolds -1141 U Murasa Ranger @Eric Deschamps -1142 R Nemata, Grove Guardian @John Avon -1143 R Unstoppable Ash @Brian Snõddy -1144 R Ancient Spider @Greg Staples -1145 R Doomsday Specter @Donato Giancola -1146 U Empyrean Eagle @Jason A. Engle -1147 R Ghastlord of Fugue @Mike Dringenberg -1148 R Gluttonous Troll @Joe Slucher -1149 R Jared Carthalion, True Heir @Lius Lasahido -1150 C Old Ghastbark @Thomas M. Baxa -1151 R Tolsimir, Friend to Wolves @Ryan Pancoast -1152 R Angelheart Vial @Chippy -1153 R Dolmen Gate @Richard Sardinha -1154 R Doom Cannon @Matthew Mitchell -1155 R Eye of Doom @Yeong-Hao Han -1156 R Forebear's Blade @Scott Murphy -1157 R Jinxed Ring @M. W. Kaluta -1158 R Rakdos Riteknife @Jim Nelson -1159 M Ring of Three Wishes @Mark Winters -1160 R Sword of Vengeance @Dan Scott -1161 R Tower of Calamities @Aleksi Briclot -1162 R Tower of Fortunes @Matt Cavotta -1163 R Wheel of Torture @Henry Van Der Linde -1164 U Forbidding Watchtower @Aleksi Briclot -1165 R Alliance of Arms @Johann Bodin -1166 R Hanna's Custody @DiTerlizzi -1167 R Hour of Reckoning @Randy Gallegos -1168 R Knight Exemplar @Jason Chan -1169 R Kor Spiritdancer @Scott Chou -1170 R Nomad Mythmaker @Darrell Riche -1171 R Oath of Lieges @Mark Zug -1172 R Pariah @Jon J Muth -1173 U Prison Term @Zoltan Boros & Gabor Szikszai -1174 R Rune of Protection: Lands @Scott M. Fischer -1175 R Sacred Mesa @Margaret Organ-Kean -1176 R Storm Herd @Jim Nelson -1177 C Whitemane Lion @Zoltan Boros & Gabor Szikszai -1178 R Dreamborn Muse @Kev Walker -1179 R Echo Mage @Matt Stewart -1180 R Equilibrium @Jeff Miracola -1181 R Flusterstorm @Erica Yang -1182 R Jace's Archivist @James Ryman -1183 C Leap @Kev Walker -1184 R Scalpelexis @Mark Tedin -1185 R Thing from the Deep @Paolo Parente -1186 R Tradewind Rider @John Matson -1187 R Trench Gorger @Hideaki Takamura -1188 C Brain Weevil @Anthony Jones -1189 U Consume Spirit @Matt Thompson -1190 C Dirtwater Wraith @Steve Luke -1191 U Fallen Ideal @Anson Maddocks -1192 R Kels, Fight Fixer @Magali Villeneuve -1193 R Netherborn Altar @Titus Lunter -1194 R Oppression @Pete Venters -1195 C Sadistic Augermage @Nick Percival -1196 U Spined Fluke @Mark A. Nelson -1197 U Throat Slitter @Paolo Parente -1198 R Zombie Apocalypse @Volkan Baǵa -1199 R Chaos Warp @Trevor Claxton -1200 U Cinder Elemental @Svetlin Velinov -1201 R Furnace of Rath @John Matson -1202 U Initiate of Blood @Carl Critchlow -1203 R Magmatic Force @Jung Park -1204 C Rift Bolt @Michael Sutfin -1205 R Ryusei, the Falling Star @Nottsuo -1206 R Shocker @Thomas M. Baxa -1207 R Taurean Mauler @Dominick Domingo -1208 R Burgeoning @Randy Gallegos -1209 R Collective Voyage @Charles Urbach -1210 R Forgotten Ancient @Mark Tedin -1211 C Giant Caterpillar @Zina Saunders -1212 C Gleeful Sabotage @Todd Lockwood -1213 R Hidden Herd @Andrew Robinson -1214 R Magus of the Vineyard @Jim Murray -1215 R Scavenging Ooze @Austin Hsu -1216 R Spawnwrithe @Daarken -1217 R Tornado Elemental @Alex Horley-Orlandelli -1218 R Verdant Force @DiTerlizzi -1219 R Vernal Bloom @Bob Eggleton -1220 U Adeliz, the Cinder Wind @Zezhou Chen -1221 M Aminatou, the Fateshifter @Seb McKinnon -1222 U Bladewing the Risen @Seb McKinnon -1223 U Bruenor Battlehammer @Wayne Reynolds -1224 U Dina, Soul Steeper @Chris Rahn -1225 U Elas il-Kor, Sadistic Pilgrim @G-host Lee -1226 U Eutropia the Twice-Favored @Sara Winters -1227 M Ghave, Guru of Spores @James Paick -1228 U Grumgully, the Generous @Milivoj Ćeran -1229 U Maja, Bretagard Protector @Lie Setiawan -1230 U Narfi, Betrayer King @Daarken -1231 U Rakdos Cackler @Ryan Barger -1232 U Vega, the Watcher @Paul Scott Canavan -1233 R Crystalline Crawler @Jason Felix -1234 C Suntouched Myr @Greg Hildebrandt -1235 R Flamekin Village @Ron Spears -1236 U Nivix, Aerie of the Firemind @Martina Pilcerova -1237 U Rix Maadi, Dungeon Palace @Martina Pilcerova -1238 R Thespian's Stage @John Avon -1239 C Warped Landscape @Cliff Childs -1240 R Eldrazi Conscription @Jaime Jones -1241 C Arcbound Mouser @Campbell White -1242 U Changeling Hero @Jeff Miracola -1243 R Charming Prince @Randy Vargas -1244 R Giant Killer @Jesper Ejsing -1245 U Rebuff the Wicked @Stephen Tappin -1246 C Royal Trooper @Scott M. Fischer -1247 U Auramancer's Guise @Greg Staples -1248 U Counterbalance @John Zeleznik -1249 R Faerie Artisans @Tony Foti -1250 U Faerie Harbinger @Larry MacDougall -1251 U Pemmin's Aura @Greg Staples -1252 C Spellstutter Sprite @Rebecca Guay -1253 C Bake into a Pie @Zoltan Boros -1254 U Cauldron Familiar @Milivoj Ćeran -1255 C Cursed Flesh @Ron Spencer -1256 R Demonic Bargain @Sam Guay -1257 U Foulmire Knight @Alex Brock -1258 M The Meathook Massacre @Chris Seaman -1259 R Mirri the Cursed @Filip Burburan -1260 U No Rest for the Wicked @Carl Critchlow -1261 U Aura Barbs @Aleksi Briclot -1262 U Dwarven Recruiter @Ciruelo -1263 M Embercleave @Joe Slucher -1264 C Giant's Ire @Alex Horley-Orlandelli -1265 U Mad Ratter @Johann Bodin -1266 U Rust Monster @Simon Dominic -1267 C Vulshok Sorcerer @rk post -1268 U Warchief Giant @Slawomir Maniak -1269 R Yidaro, Wandering Monster @Jesper Ejsing -1270 M Cavalier of Thorns @Jehan Choo -1271 C Echoing Courage @Greg Staples -1272 U Fae Offering @Lucas Graciano -1273 M Greensleeves, Maro-Sorcerer @Tuan Duong Chu -1274 R Hungry Lynx @Shreya Shetty -1275 R Once Upon a Time @Matt Stewart -1276 M Questing Beast @Igor Kieryluk -1277 R Return of the Wildspeaker @Chris Rallis -1278 R Wolfcaller's Howl @Ralph Horsley -1279 U Cunning Breezedancer @Todd Lockwood -1280 U Maraleaf Pixie @Matt Cavotta -1281 M Minsc & Boo, Timeless Heroes @Andreas Zafiratos -1282 M Oko, the Trickster @Chris Rallis -1283 M The Royal Scions @Paul Scott Canavan -1284 R Sythis, Harvest's Hand @Ryan Yee -1285 R Academy Manufactor @Campbell White -1286 U Clock of Omens @Ryan Yee -1287 U Enchanted Carriage @Zoltan Boros -1288 R Stonecoil Serpent @Mark Poole -1289 R Castle Garenbrig @Adam Paquette -1290 R Brought Back @Mitchell Malloy -1291 R Deep Gnome Terramancer @David Sladek -1292 U Dispatch @Erica Yang -1293 R Esper Sentinel @Eric Deschamps -1294 U Famished Paladin @Tommy Arnold -1295 R Monologue Tax @Justine Cruz -1296 U Veteran of the Depths @Daren Bader -1297 R Curiosity Crafter @Rudy Siswanto -1298 R Elder Deep-Fiend @Jason Felix -1299 U Merrow Harbinger @Steve Prescott -1300 M Murktide Regent @Lucas Graciano -1301 R Nezahal, Primal Tide @Sam Burley -1302 C Deadly Dispute @Irina Nordsol -1303 M Kalitas, Traitor of Ghet @Todd Lockwood -1304 U Pawn of Ulamog @Daarken -1305 R Rotting Regisaur @Randy Vargas -1306 R Tomb Robber @Xi Zhang -1307 R Brass's Bounty @Grzegorz Rutkowski -1308 C Cave Sense @Mark Romanoski -1309 M Dockside Extortionist @Lie Setiawan -1310 R The Reaver Cleaver @Yigit Koroglu -1311 M Star of Extinction @Chris Rahn -1312 U Storm-Kiln Artist @Manuel Castañón -1313 R Xorn @Yigit Koroglu -1314 R Beast Whisperer @Matt Stewart -1315 U Deep Reconnaissance @Jeff Remmer -1316 U Deep Wood @Paolo Parente -1317 U Harmony of Nature @Kaja Foglio -1318 C Jungleborn Pioneer @Scott Murphy -1319 C Pouncing Jaguar @Daren Bader -1320 M The Tarrasque @Filip Burburan -1321 U Titanoth Rex @Svetlin Velinov -1322 U Ardent Plea @Chippy -1323 U Deathsprout @Seb McKinnon -1324 U Ghostflame Sliver @Luca Zontini -1325 U Inkfathom Infiltrator @Jesper Ejsing -1326 U Pain Magnification @Aleksi Briclot -1327 U Stromkirk Captain @Jana Schirmer & Johannes Voss -1328 R Sygg, River Cutthroat @Jeremy Enecio -1329 U Zebra Unicorn @Margaret Organ-Kean -1330 U Bottle Gnomes @Kaja Foglio -1331 U Ersatz Gnomes @Ron Spencer -1332 U Fabrication Module @Aaron Miller -1333 U Heartstone @John Matson -1334 C Pili-Pala @Ron Spencer -1335 R Cave of the Frost Dragon @Johannes Voss -1336 U Rootwater Depths @Roger Raupp -1337 R Treasure Vault @Johannes Voss -1338 U Zoetic Cavern @Lars Grant-West -1339 U Wall of Omens @James Paick -1340 R Baleful Mastery -1341 U Bishop of the Bloodstained -1342 C Burden of Guilt -1343 M Cavalier of Thorns -1344 U Combine Chrysalis -1345 U Consign // Oblivion -1346 R Death Cloud -1347 U Duskmantle, House of Shadow -1348 U Enlisted Wurm -1349 U Ghost Quarter -1350 C Gnaw to the Bone -1351 U Goblin Warchief -1352 C Hard Evidence -1353 U High Alert -1354 R Ixidor, Reality Sculptor -1355 R Jace, Wielder of Mysteries -1356 C Krosan Tusker -1357 C Kuldotha Rebirth -1358 U Laid to Rest -1359 U Leonin Relic-Warder -1360 U Magmaw -1361 R Mass Hysteria -1362 U Maverick Thopterist -1363 U Mentor of the Meek -1364 C Metalspinner's Puzzleknot -1365 U Millstone -1366 U Mistveil Plains -1367 R Molten Psyche -1368 R Monologue Tax -1369 U Mystery Key -1370 U Nyx Weaver -1371 C Putrid Warrior -1372 U Quintorius, Field Historian -1373 M Ranger-Captain of Eos -1374 C Shard of Broken Glass -1375 U Spell Snare -1376 U Stromkirk Captain -1377 U Syr Konrad, the Grim -1378 U Treacherous Terrain -1379 M Worldspine Wurm \ No newline at end of file +10E-20 U High Ground @rk post +10E-30 R Nomad Mythmaker @Darrell Riche +10E-32 R Paladin en-Vec @Dave Kendall +10E-33 R Pariah @Jon J Muth +10E-45 U Spirit Link @Kev Walker +10E-52 U Treasure Hunter @Adam Rex +10E-105 R Scalpelexis @Mark Tedin +10E-145 R Graveborn Muse @Kev Walker +10E-165 U No Rest for the Wicked @Carl Critchlow +10E-173 U Relentless Rats @Thomas M. Baxa +10E-178 R Sleeper Agent @Randy Gallegos +10E-182 C Terror @Adam Rex +10E-211 U Guerrilla Tactics @Dave Dorman +10E-220 U Orcish Artillery @Jeff Miracola +10E-229 U Shatterstorm @Paolo Parente +10E-270 R Hurricane @John Howe +10E-291 R Rhox @Mark Zug +10E-317 R Colossus of Sardia @Greg Staples +10E-321 R Doubling Cube @Mark Tedin +10E-343 U Spellbook @Andrew Goldhawk +10E-352 U Forbidding Watchtower @Aleksi Briclot +2X2-9 C Doomed Traveler @Lars Grant-West +2X2-17 U Mentor of the Meek @Jana Schirmer & Johannes Voss +2X2-19 C Militia Bugler @David Gaillet +2X2-22 U Myth Realized @Jason Rainville +2X2-40 U Body Double @Winona Nelson +2X2-72 C Carrier Thrall @Lius Lasahido +2X2-106 C Dark-Dweller Oracle @Deruchenko Alexander +2X2-107 M Dockside Extortionist @Lie Setiawan +2X2-169 M Aminatou, the Fateshifter @Seb McKinnon +2X2-208 R Elsha of the Infinite @G-host Lee +2X2-332 C Cryptic Spires @Sam Burley +2XM-3 C Ancestral Blade @Scott Murphy +2XM-32 R Stonehewer Giant @Steve Prescott +2XM-52 C Frogify @Chris Seaman +2XM-64 R Reshape @Jon Foster +2XM-68 U Serra Sphinx @Daren Bader +2XM-77 R Beacon of Unrest @Joseph Meehan +2XM-79 C Cast Down @Bastien L. Deharme +2XM-100 U Oubliette @Jim Pavelec +2XM-114 C Abrade @Jonas De Ro +2XM-140 C Rapacious Dragon @Johan Grenier +2XM-178 U Reclamation Sage @Clint Cearley +2XM-180 U Skullmulcher @Michael Ryan +2XM-209 R Mazirek, Kraul Death Priest @Mathias Kollros +2XM-233 R Basilisk Collar @Howard Lyon +2XM-235 M Blightsteel Colossus @Chris Rahn +2XM-255 C Expedition Map @Franz Vohwinkel +2XM-267 U Lightning Greaves @Jeremy Jarvis +2XM-296 M Sword of Feast and Famine @Chris Rahn +2XM-300 M Sword of War and Peace @Chris Rahn +2XM-309 R Academy Ruins @Zoltan Boros & Gabor Szikszai +2XM-312 U Buried Ruin @Franz Vohwinkel +2XM-313 R Cascade Bluffs @Brandon Kitkouski +2XM-332 R Wooded Bastion @Christopher Moeller +5DN-38 C Thought Courier @Stephen Tappin +5DN-43 R Bringer of the Black Dawn @Carl Critchlow +5DN-52 C Lose Hope @Matt Cavotta +5DN-75 C Mana Geyser @Martina Pilcerova +5DN-80 C Vulshok Sorcerer @rk post +5DN-81 R All Suns' Dawn @Glen Angus +5DN-86 U Eternal Witness @Terese Nielsen +5DN-97 R Tornado Elemental @Alex Horley-Orlandelli +5DN-107 U Blasting Station @Stephen Tappin +5DN-109 R Clearwater Goblet @Dany Orizio +5DN-131 R Helm of Kaldra @Donato Giancola +5DN-132 C Horned Helm @Martina Pilcerova +5DN-135 U Lantern of Insight @Greg Hildebrandt +5DN-136 U Lunar Avenger @Paolo Parente +5DN-137 R Mycosynth Golem @Paolo Parente +5DN-156 R Staff of Domination @Ben Thompson +5DN-163 R Vedalken Orrery @John Avon +5DN-165 C Wayfarer's Bauble @Darrell Riche +7ED-60 U Arcane Laboratory @Brian Snõddy +7ED-149 U Necrologia @Scott M. Fischer +8ED-72 U Curiosity @Jim Nelson +8ED-86 R Intruder Alarm @Luca Zontini +8ED-116 R Zur's Weirding @Scott M. Fischer +8ED-231 C Volcanic Hammer @Ben Thompson +8ED-250 R Fungusaur @Heather Hudson +8ED-251 U Fyndhorn Elder @Donato Giancola +8ED-264 R Maro @Stuart Griffin +8ED-316 R Teferi's Puzzle Box @Donato Giancola +8ED-324 U Elfhame Palace @Anthony S. Waters +9ED-100 C Storm Crow @John Matson +9ED-187 R Form of the Dragon @Carl Critchlow +9ED-262 C Overgrowth @Christopher Rush +A25-7 C Cloudshift @Howard Lyon +A25-13 C Fencing Ace @David Rapoza +A25-15 C Geist of the Moors @Aaron Miller +A25-19 C Knight of the Skyward Eye @Matt Stewart +A25-21 U Kor Firewalker @Matt Stewart +A25-22 C Loyal Sentry @Sara Winters +A25-24 C Lunarch Mantle @Anastasia Ovchinnikova +A25-26 U Nyx-Fleece Ram @Terese Nielsen +A25-29 C Path of Peace @Nils Hamm +A25-30 U Promise of Bunrei @Stephen Tappin +A25-31 C Renewed Faith @Steve Argyle +A25-33 C Savannah Lions @Winona Nelson +A25-43 U Blue Elemental Blast @Izzy +A25-45 C Borrowing 100,000 Arrows @Song Shikai +A25-46 C Brainstorm @Chris Rahn +A25-47 U Brine Elemental @Stephen Tappin +A25-48 C Choking Tethers @Carl Critchlow +A25-50 C Counterspell @Zack Stella +A25-51 C Court Hussar @Ron Spears +A25-52 U Curiosity @Val Mayerik +A25-60 C Ghost Ship @Bastien L. Deharme +A25-61 C Horseshoe Crab @Scott Kirschner +A25-63 U Jalira, Master Polymorphist @Steve Prescott +A25-64 C Man-o'-War @Jon J Muth +A25-66 U Murder of Crows @Drew Baker +A25-67 C Mystic of the Hidden Way @Ryan Alexander Lee +A25-68 R Pact of Negation @Jason Chan +A25-69 C Phantasmal Bear @Ryan Yee +A25-71 C Retraction Helix @Phill Simmer +A25-81 U Caustic Tar @Jung Park +A25-82 C Dark Ritual @Clint Langley +A25-85 C Diabolic Edict @Franz Vohwinkel +A25-86 C Dirge of Dread @Seb McKinnon +A25-90 C Erg Raiders @Kev Walker +A25-91 U Fallen Angel @Matthew D. Wilson +A25-92 R Hell's Caretaker @Greg Staples +A25-94 U Ihsan's Shade @Daarken +A25-96 R Living Death @Mark Winters +A25-101 M Phyrexian Obliterator @Todd Lockwood +A25-108 U Street Wraith @Cyril Van Der Haegen +A25-114 C Vampire Lacerator @Steve Argyle +A25-115 U Will-o'-the-Wisp @Rob Alexander +A25-120 C Balduvian Horde @Daarken +A25-122 R Blood Moon @Franz Vohwinkel +A25-123 U Browbeat @Mark Tedin +A25-125 C Chartooth Cougar @Chase Stone +A25-132 U Genju of the Spires @Joel Thomas +A25-134 C Hordeling Outburst @Zoltan Boros +A25-137 U Ire Shaman @Jack Wang +A25-139 C Jackal Pup @Kev Walker +A25-141 U Lightning Bolt @Christopher Moeller +A25-144 C Pillage @Jesper Ejsing +A25-150 C Skirk Commando @Slawomir Maniak +A25-152 U Spikeshot Goblin @Jason Kang +A25-155 C Uncaged Fury @Jason Kang +A25-156 U Zada, Hedron Grinder @Chris Rallis +A25-158 C Ambassador Oak @Steve Prescott +A25-159 U Ancient Stirrings @Vincent Proce +A25-160 C Arbor Elf @rk post +A25-164 R Courser of Kruphix @Eric Deschamps +A25-169 C Ember Weaver @Steve Prescott +A25-173 U Invigorate @Mark Zug +A25-174 U Iwamori of the Open Fist @Paolo Parente +A25-175 C Kavu Climber @Jonathan Kuo +A25-181 M Master of the Wild Hunt @Kev Walker +A25-182 C Nettle Sentinel @Kev Walker +A25-186 U Rancor @Kev Walker +A25-187 U Regrowth @Dan Murayama Scott +A25-196 M Animar, Soul of Elements @Peter Mohrbacher +A25-197 U Baloth Null @Jakub Kasper +A25-198 U Blightning @Thomas M. Baxa +A25-205 R Grenzo, Dungeon Warden @Lucas Graciano +A25-209 R Nicol Bolas @D. Alexander Gregory +A25-212 R Pernicious Deed @Christopher Moeller +A25-213 U Pillory of the Sleepless @Marc Simonetti +A25-214 M Prossh, Skyraider of Kher @Todd Lockwood +A25-218 U Stangg @Izzy +A25-219 R Vindicate @Brian Snõddy +A25-223 R Coalition Relic @Jason Felix +A25-225 U Heavy Arbalest @David Rapoza +A25-227 U Perilous Myr @Jason Felix +A25-229 C Prophetic Prism @John Avon +A25-234 U Swiftfoot Boots @Svetlin Velinov +A25-242 U Mishra's Factory @Scott Chou +A25-243 U Myriad Landscape @Richard Wright +A25-249 U Zoetic Cavern @Lars Grant-West +AER-6 C Alley Evasion @Scott Murphy +AER-10 C Caught in the Brights @Kieran Yanner +AER-12 C Conviction @John Stanko +AER-13 C Countless Gears Renegade @Dan Murayama Scott +AER-16 C Decommission @Josh Hass +AER-19 U Felidar Guardian @Jakub Kasper +AER-21 U Restoration Specialist @David Palumbo +AER-30 C Bastion Inventor @Tony Foti +AER-32 C Dispersal Technician @Scott Murphy +AER-34 C Hinterland Drake @Lake Hurwitz +AER-38 M Mechanized Production @Adam Paquette +AER-39 C Metallic Rebuke @Eric Deschamps +AER-49 R Whir of Invention @Christine Choi +AER-50 U Wind-Kin Raiders @Shreya Shetty +AER-52 C Alley Strangler @Enora Mercier +AER-55 C Daring Demolition @Svetlin Velinov +AER-57 U Fatal Push @Eric Deschamps +AER-58 C Fen Hauler @Sidharth Chaturvedi +AER-61 U Gifted Aetherborn @Ryan Yee +AER-69 C Renegade's Getaway @Ryan Yee +AER-74 R Yahenni, Undying Partisan @Lius Lasahido +AER-77 C Chandra's Revolution @Clint Cearley +AER-78 C Destructive Tampering @Titus Lunter +AER-82 C Frontline Rebel @Winona Nelson +AER-86 U Invigorated Rampage @Craig J Spearing +AER-87 R Kari Zev, Skyship Raider @Brad Rigney +AER-96 R Release the Gremlins @Izzy +AER-99 U Siege Modification @Sung Choi +AER-100 C Sweatworks Brawler @Zack Stella +AER-107 R Greenbelt Rampager @Filip Burburan +AER-125 C Silkweaver Elite @Magali Villeneuve +AER-129 U Hidden Stockpile @Darek Zabrocki +AER-140 U Winding Constrictor @Izzy +AER-146 U Consulate Dreadnought @Cliff Childs +AER-148 U Crackdown Construct @Johannes Voss +AER-154 R Hope of Ghirapur @Lius Lasahido +AER-159 C Implement of Malice @Titus Lunter +AER-161 C Irontread Crusher @Jason A. Engle +AER-173 C Renegade Map @Lake Hurwitz +AER-178 C Universal Solvent @Christopher Moeller +AER-191 R Tezzeret's Betrayal @Tyler Jacobson +AFC-2 M Prosper, Tome-Bound @Yongjae Choi +AFC-25 R Grim Hireling @Tomas Duchek +AFC-50 M Klauth, Unrivaled Ancient @Andrew Mar +AFC-57 U Bucknard's Everfull Purse @Joe Slucher +AFC-59 U Component Pouch @Chris Seaman +AFC-62 U Underdark Rift @Chris Ostrowski +AFC-120 R Demanding Dragon @Chris Rahn +AFC-162 U Kenrith's Transformation @Kimonas Theodossiou +AFC-198 R Argentum Armor @Matt Cavotta +AFC-221 C Viridian Longbow @Jeremy Jarvis +AFC-233 U Desert @Glen Angus +AFR-4 M The Book of Exalted Deeds @Daniel Ljunggren +AFR-6 U Cleric Class @Alayna Danner +AFR-9 C Dawnbringer Cleric @Lie Setiawan +AFR-23 R Loyal Warhound @Dmitry Burmak +AFR-26 U Moon-Blessed Cleric @Marta Nael +AFR-32 U Plate Armor @Martina Pilcerova +AFR-33 U Portable Hole @John Stanko +AFR-42 C You Hear Something on Watch @Zezhou Chen +AFR-78 R Tasha's Hideous Laughter @Ilse Gort +AFR-81 U Wizard Class @Marta Nael +AFR-94 C Deadly Dispute @Irina Nordsol +AFR-103 C Feign Death @Maria Zolotukhina +AFR-106 C Grim Bounty @Justine Cruz +AFR-112 M Lolth, Spider Queen @Tyler Jacobson +AFR-114 U Power Word Kill @Izzy +AFR-117 U Reaper's Talisman @Olena Richards +AFR-119 C Shambling Ghast @Dave Kendall +AFR-120 U Skullport Merchant @Aaron Miller +AFR-132 U Battle Cry Goblin @April Prime +AFR-133 C Boots of Speed @Chris Rallis +AFR-136 U Chaos Channeler @David Palumbo +AFR-146 C Hoarding Ogre @Tuan Duong Chu +AFR-154 U Magic Missile @PINDURSKI +AFR-158 C Plundering Barbarian @Andrew Mar +AFR-161 U Rust Monster @Simon Dominic +AFR-162 C Swarming Goblins @Andrew Mar +AFR-164 C Unexpected Windfall @Alayna Danner +AFR-167 R Xorn @Yigit Koroglu +AFR-169 U You Find Some Prisoners @Lie Setiawan +AFR-188 U Hunter's Mark @Izzy +AFR-197 M Old Gnawbone @Filip Burburan +AFR-200 U Prosperous Innkeeper @Eric Deschamps +AFR-207 M The Tarrasque @Filip Burburan +AFR-219 U Bruenor Battlehammer @Wayne Reynolds +AFR-227 M Minsc, Beloved Ranger @Howard Lyon +AFR-235 M Tiamat @Chris Rahn +AFR-244 U Fifty Feet of Rope @Andrew Mar +AFR-248 C Leather Armor @Martina Pilcerova +AFR-253 R Cave of the Frost Dragon @Johannes Voss +AFR-261 R Treasure Vault @Johannes Voss +AFR-302 U Cloister Gargoyle @Russ Nicholson +AFR-325 C Dire Wolf Prowler @Diesel +AFR-343 U Krydle of Baldur's Gate @Jeff Dee +AFR-349 C Mimic @Diesel +AKH-2 R Anointed Procession @Victor Adame Minguez +AKH-3 C Anointer Priest @Lake Hurwitz +AKH-4 R Approach of the Second Sun @Noah Bradley +AKH-7 C Cartouche of Solidarity @Kieran Yanner +AKH-8 U Cast Out @Magali Villeneuve +AKH-11 C Djeru's Resolve @Kieran Yanner +AKH-13 C Forsake the Worldly @Steve Argyle +AKH-17 C Gust Walker @Jason Rainville +AKH-24 R Regal Caracal @Filip Burburan +AKH-26 C Rhet-Crop Spearmaster @Dan Murayama Scott +AKH-27 C Sacred Cat @Zezhou Chen +AKH-28 U Seraph of the Suns @Winona Nelson +AKH-29 C Sparring Mummy @Ryan Pancoast +AKH-36 C Unwavering Initiate @Greg Opalinski +AKH-38 U Vizier of Remedies @Randy Gallegos +AKH-39 C Winged Shepherd @Chris Rahn +AKH-45 C Cartouche of Knowledge @Kieran Yanner +AKH-47 C Compelling Argument @Lucas Graciano +AKH-50 C Decision Paralysis @Vincent Proce +AKH-57 C Hieroglyphic Illumination @Raoul Vitale +AKH-60 U Labyrinth Guardian @Yeong-Hao Han +AKH-61 U Lay Claim @Chris Rallis +AKH-66 C River Serpent @Christopher Moeller +AKH-70 C Shimmerscale Drake @Tony Foti +AKH-71 C Slither Blade @Zezhou Chen +AKH-79 U Baleful Ammit @Seb McKinnon +AKH-80 C Blighted Bat @Nils Hamm +AKH-81 U Bone Picker @Yeong-Hao Han +AKH-83 C Cartouche of Ambition @Kieran Yanner +AKH-85 C Cursed Minotaur @David Palumbo +AKH-87 C Doomed Dissenter @Tony Foti +AKH-89 C Dune Beetle @Grzegorz Rutkowski +AKH-92 C Final Reward @Sidharth Chaturvedi +AKH-94 U Grim Strider @Christine Choi +AKH-97 M Liliana, Death's Majesty @Chris Rallis +AKH-99 U Lord of the Accursed @Grzegorz Rutkowski +AKH-100 C Miasmic Mummy @E. M. Gist +AKH-102 C Painful Lesson @Adrian Majkrzak +AKH-106 C Scarab Feast @Tony Foti +AKH-110 U Stir the Sands @David Gaillet +AKH-112 C Trespasser's Curse @David Palumbo +AKH-113 U Trial of Ambition @Johann Bodin +AKH-114 C Unburden @Svetlin Velinov +AKH-115 C Wander in Death @Seb McKinnon +AKH-117 U Ahn-Crop Crasher @Seb McKinnon +AKH-119 C Blazing Volley @Zezhou Chen +AKH-120 C Bloodlust Inciter @Anthony Palumbo +AKH-123 U By Force @Magali Villeneuve +AKH-124 C Cartouche of Zeal @Kieran Yanner +AKH-128 C Desert Cerodon @Igor Kieryluk +AKH-132 C Fling @Lucas Graciano +AKH-136 M Hazoret the Fervent @Chase Stone +AKH-139 C Hyena Pack @Winona Nelson +AKH-141 C Magma Spray @Svetlin Velinov +AKH-145 C Nimble-Blade Khenra @Tomasz Jedruszek +AKH-150 C Thresher Lizard @Craig J Spearing +AKH-157 C Bitterblade Warrior @Slawomir Maniak +AKH-158 C Cartouche of Strength @Kieran Yanner +AKH-164 C Dissenter's Deliverance @Bastien L. Deharme +AKH-166 C Giant Spider @Aaron Miller +AKH-167 C Gift of Paradise @Ryan Pancoast +AKH-168 C Greater Sandwurm @Steven Belledin +AKH-173 C Hooded Brawler @Daarken +AKH-175 U Manglehorn @Lius Lasahido +AKH-179 C Pouncing Cheetah @Matt Stewart +AKH-189 C Stinging Shot @Scott Murphy +AKH-211 R Commit // Memory @Ryan Alexander Lee +AKH-213 R Insult // Injury @Lucas Graciano +AKH-216 U Reduce // Rubble @Eric Deschamps +AKH-223 R Cut // Ribbons @Raymond Swanland +AKH-228 U Gate to the Afterlife @Christine Choi +AKH-233 U Oketra's Monument @Christine Choi +AKH-236 U Rhonas's Monument @Cliff Childs +AKH-246 C Painted Bluffs @Mark Poole +AKH-247 R Scattered Groves @Christine Choi +AKH-248 R Sheltered Thicket @Sung Choi +AKH-256 L Plains @Jonas De Ro +AKH-258 L Island @Jonas De Ro +AKH-264 L Mountain @Jonas De Ro +AKH-268 L Forest @Titus Lunter +ALA-17 R Knight-Captain of Eos @Chris Rahn +ALA-21 R Ranger of Eos @Volkan Baǵa +ALA-43 U Fatestitcher @E. M. Gist +ALA-51 R Mindlock Orb @rk post +ALA-68 U Corpse Connoisseur @Mark Hyzer +ALA-82 U Puppet Conjurer @Steven Belledin +ALA-103 R Hell's Thunder @Karl Kopinski +ALA-129 U Drumhunter @Jim Murray +ALA-152 C Wild Nacatl @Wayne Reynolds +ALA-170 M Godsire @Jim Murray +ALA-172 M Hellkite Overlord @Justin Sweet +ALA-184 U Qasali Ambusher @Kev Walker +ALA-193 M Sedris, the Traitor King @Paul Bonner +ALA-206 R Violent Ultimatum @Raymond Swanland +ALA-210 M Lich's Mirror @Ash Wood +ALA-226 U Jungle Shrine @Wayne Reynolds +ALA-228 U Savage Lands @Vance Kovacs +ALA-229 U Seaside Citadel @Volkan Baǵa +APC-7 U Diversionary Tactics @Jerry Tiritilli +APC-18 C Standard Bearer @Ron Spencer +APC-24 R Ice Cave @Jerry Tiritilli +APC-34 U Whirlpool Drake @Alan Pollack +APC-36 R Whirlpool Warrior @Kev Walker +APC-38 R Desolation Angel @Brom +APC-46 R Necravolver @Dave Dorman +APC-48 U Phyrexian Gargantua @Carl Critchlow +APC-72 R Wild Research @Gary Ruddell +APC-74 U Ana Sanctuary @Rob Alexander +APC-83 U Penumbra Kavu @Tony Szczudlo +APC-86 C Strength of Night @John Avon +APC-105 R Guided Passage @Alex Horley-Orlandelli +APC-115 R Powerstone Minefield @Greg Hildebrandt & Tim Hildebrandt +APC-117 C Putrid Warrior @Ray Lago +APC-118 C Quicksilver Dagger @Alex Horley-Orlandelli +APC-119 C Razorfin Hunter @Jeff Easley +APC-122 C Squee's Embrace @Rebecca Guay +APC-123 U Squee's Revenge @Kev Walker +APC-125 C Temporal Spring @John Matson +APC-127 R Yavimaya's Embrace @Eric Peterson +APC-129 U Illusion // Reality @John Avon +APC-131 U Night // Day @Christopher Moeller +APC-137 R Legacy Weapon @John Avon +ARB-1 U Ardent Plea @Chippy +ARB-6 R Filigree Angel @Richard Whitters +ARB-8 R Meddling Mage @Todd Lockwood +ARB-16 U Wall of Denial @Howard Lyon +ARB-17 C Architects of Will @Matt Stewart +ARB-19 C Deny Reality @Jean-Sébastien Rossbach +ARB-24 R Lich Lord of Unx @Dave Allsop +ARB-28 R Nemesis of Reason @Mark Tedin +ARB-31 R Time Sieve @Franz Vohwinkel +ARB-53 M Dragon Broodmother @Jaime Jones +ARB-68 U Enlisted Wurm @Steve Prescott +ARB-69 C Grizzled Leotau @Lars Grant-West +ARB-90 R Spellbound Dragon @Jesper Ejsing +ARB-109 M Sen Triplets @Greg Staples +ARB-117 M Karrthus, Tyrant of Jund @Dave Kendall +ARB-129 R Wargate @Franz Vohwinkel +ARB-130 M Maelstrom Nexus @Steven Belledin +ARB-133 U Thopter Foundry @Ralph Horsley +ARC-8 U Spin into Myth @David Day +ARC-45 R Ryusei, the Falling Star @Nottsuo +ARC-129 U Llanowar Reborn @Philip Straub +AVR-7 U Banishing Stroke @Igor Kieryluk +AVR-20 M Entreat the Angels @Todd Lockwood +AVR-22 U Goldnight Commander @Chris Rahn +AVR-31 U Nearheath Pilgrim @Erica Yang +AVR-35 C Seraph of Dawn @Todd Lockwood +AVR-68 M Misthollow Griffin @Jaime Jones +AVR-133 R Dual Casting @Johannes Voss +AVR-144 U Lightning Mauler @Dave Kendall +AVR-148 M Malignus @Jung Park +AVR-151 R Reforge the Soul @Jaime Jones +AVR-175 U Druid's Familiar @Adam Paquette +AVR-187 C Nightshade Peddler @John Stanko +AVR-192 C Sheltering Word @Igor Kieryluk +AVR-206 R Wolfir Silverheart @Raymond Swanland +AVR-209 M Gisela, Blade of Goldnight @Jason Chan +AVR-225 R Alchemist's Refuge @Dan Murayama Scott +AVR-226 R Cavern of Souls @Cliff Childs +AVR-228 C Seraph Sanctuary @David Palumbo +BBD-1 M Will Kenrith @Anna Steinbauer +BBD-2 M Rowan Kenrith @Anna Steinbauer +BBD-7 R Virtus the Veiled @Johann Bodin +BBD-8 R Gorm the Great @Johann Bodin +BBD-25 M Brightling @Steve Argyle +BBD-28 U Jubilant Mascot @Filip Burburan +BBD-34 U Fumble @Gabor Szikszai +BBD-35 R Game Plan @Seb McKinnon +BBD-55 C Azra Bladeseeker @Joe Slucher +BBD-56 R Bonus Round @Lake Hurwitz +BBD-58 U Cheering Fanatic @Filip Burburan +BBD-67 C Combo Attack @Sara Winters +BBD-68 U The Crowd Goes Wild @Mike Burns +BBD-71 M Grothama, All-Devouring @Mark Behm +BBD-72 C Jungle Wayfinder @Chris Seaman +BBD-73 R Pir's Whim @Jakub Kasper +BBD-75 U Azra Oddsmaker @Josh Hass +BBD-81 R Bountiful Promenade @Jung Park +BBD-84 R Sea of Clouds @Florian de Gesincourt +BBD-88 C Angelic Gift @Josu Hernaiz +BBD-89 U Battle Mastery @Viktor Titov +BBD-92 C Expedition Raptor @Johann Bodin +BBD-94 M Land Tax @Chuck Lukacs +BBD-95 C Lightwalker @Winona Nelson +BBD-99 C Midnight Guard @Jason A. Engle +BBD-104 C Royal Trooper @Scott M. Fischer +BBD-105 C Shoulder to Shoulder @Chris Rallis +BBD-106 C Silverchase Fox @Howard Lyon +BBD-112 C Tandem Tactics @David Gaillet +BBD-113 C Benthic Giant @Jaime Jones +BBD-114 C Call to Heel @Randy Gallegos +BBD-116 C Coralhelm Guide @Viktor Titov +BBD-117 U Fog Bank @Howard Lyon +BBD-118 C Frost Lynx @Izzy +BBD-119 C Impulse @Izzy +BBD-122 R Mystic Confluence @Kieran Yanner +BBD-125 C Omenspeaker @Dallas Williams +BBD-135 C Totally Lost @David Palumbo +BBD-137 C Watercourser @Mathias Kollros +BBD-144 C Fill with Fright @Luca Zontini +BBD-145 C Grotesque Mutation @Dan Murayama Scott +BBD-154 C Painful Lesson @Adrian Majkrzak +BBD-156 U Quest for the Gravelord @Chris Rahn +BBD-162 U Tavern Swindler @Cynthia Sheppard +BBD-165 C Battle Rampart @Steve Prescott +BBD-172 U Dragon Breath @Greg Staples +BBD-174 C Earth Elemental @Anthony S. Waters +BBD-176 U Enthralling Victor @Winona Nelson +BBD-177 C Expedite @Kieran Yanner +BBD-178 U Flamewave Invoker @Dave Dorman +BBD-180 C Lightning Talons @Johann Bodin +BBD-190 U Beast Within @Jesper Ejsing +BBD-191 C Canopy Spider @Christopher Rush +BBD-192 C Charging Rhino @Daren Bader +BBD-196 C Elvish Visionary @D. Alexander Gregory +BBD-197 U Feral Hydra @Steve Prescott +BBD-200 C Giant Growth @Noah Bradley +BBD-204 C Kraul Warrior @David Rapoza +BBD-205 C Lead by Example @Johannes Voss +BBD-210 C Return to the Earth @Mark Winters +BBD-215 R Vigor @Jim Murray +BBD-225 U Kiss of the Amesha @Todd Lockwood +BBD-228 C Riptide Crab @David Martin +BBD-237 C Hexplate Golem @Matt Cavotta +BBD-238 U Juggernaut @Kev Walker +BBD-241 M Mycosynth Lattice @Anthony S. Waters +BBD-243 C Peace Strider @Igor Kieryluk +BBD-249 C Yotian Soldier @Luca Zontini +BBD-251 L Island @Titus Lunter +BBD-253 L Mountain @Titus Lunter +BFZ-3 U Breaker of Armies @Richard Wright +BFZ-6 R Desolation Twin @Jack Wang +BFZ-7 C Eldrazi Devastator @Joseph Meehan +BFZ-18 U Angel of Renewal @Todd Lockwood +BFZ-20 C Cliffside Lookout @Eric Deschamps +BFZ-22 R Emeria Shepherd @Cynthia Sheppard +BFZ-23 U Encircling Fissure @Igor Kieryluk +BFZ-26 R Felidar Sovereign @Zoltan Boros & Gabor Szikszai +BFZ-29 M Gideon, Ally of Zendikar @Eric Deschamps +BFZ-34 U Kor Bladewhirl @Steven Belledin +BFZ-40 C Ondu Greathorn @Aaron Miller +BFZ-44 U Retreat to Emeria @Kieran Yanner +BFZ-48 C Sheer Drop @Clint Cearley +BFZ-50 U Stasis Snare @Jason Felix +BFZ-51 C Stone Haven Medic @Anna Steinbauer +BFZ-55 C Benthic Infiltrator @Mathias Kollros +BFZ-58 C Eldrazi Skyspawner @Chase Stone +BFZ-64 U Ruination Guide @Mathias Kollros +BFZ-70 C Brilliant Spectrum @Winona Nelson +BFZ-72 C Clutch of Currents @Igor Kieryluk +BFZ-76 C Dispel @Chase Stone +BFZ-80 M Part the Waterveil @Titus Lunter +BFZ-82 U Retreat to Coralhelm @Kieran Yanner +BFZ-88 C Wave-Wing Elemental @John Severin Brassell +BFZ-108 C Demon's Grasp @David Gaillet +BFZ-115 C Kalastria Nightwatch @Jama Jurabaev +BFZ-117 C Mire's Malice @Jakub Kasper +BFZ-118 C Nirkana Assassin @Viktor Titov +BFZ-125 C Voracious Null @Karl Kopinski +BFZ-142 C Boiling Earth @Titus Lunter +BFZ-146 C Goblin War Paint @Karl Kopinski +BFZ-148 C Makindi Sliderunner @Matt Stewart +BFZ-149 C Ondu Champion @Volkan Baǵa +BFZ-150 C Outnumber @Tyler Jacobson +BFZ-154 U Rolling Thunder @Yohann Schepacz +BFZ-159 C Valakut Invoker @Joseph Meehan +BFZ-160 C Valakut Predator @Kev Walker +BFZ-164 U Brood Monitor @Izzy +BFZ-165 C Call the Scions @Winona Nelson +BFZ-171 C Broodhunter Wurm @Svetlin Velinov +BFZ-172 C Earthen Arms @Dan Murayama Scott +BFZ-177 C Lifespring Druid @Willian Murai +BFZ-178 U Murasa Ranger @Eric Deschamps +BFZ-183 U Plated Crusher @Jama Jurabaev +BFZ-185 C Reclaiming Vines @Bastien L. Deharme +BFZ-189 C Seek the Wilds @Anna Steinbauer +BFZ-190 C Snapping Gnarlid @Kev Walker +BFZ-192 U Sylvan Scrying @Daniel Ljunggren +BFZ-195 U Tajuru Warcaller @Anastasia Ovchinnikova +BFZ-210 U Drana's Emissary @Karl Kopinski +BFZ-217 M Omnath, Locus of Rage @Brad Rigney +BFZ-230 U Blighted Fen @Jonas De Ro +BFZ-234 R Canopy Vista @Adam Paquette +BFZ-235 R Cinder Glade @Adam Paquette +BLC-16 R Twenty-Toed Toad @Steve Prescott +BNG-2 U Akroan Phalanx @Steve Prescott +BNG-5 M Brimaz, King of Oreskos @Peter Mohrbacher +BNG-27 R Spirit of the Labyrinth @Jason Chan +BNG-29 U Vanguard of Brimaz @Mark Zug +BNG-58 U Archetype of Finality @Chris Rahn +BNG-74 C Grisly Transformation @Tyler Jacobson +BNG-88 U Archetype of Aggression @Mathias Kollros +BNG-116 U Archetype of Endurance @Slawomir Maniak +BNG-144 M Chromanticore @Min Yum +BNG-148 M Karametra, God of Harvests @Eric Deschamps +BNG-152 M Phenax, God of Deception @Ryan Barger +BOK-2 U Empty-Shrine Kannushi @Ron Spears +BOK-4 R Final Judgment @Kev Walker +BOK-5 U Genju of the Fields @Greg Staples +BOK-7 R Hokori, Dust Drinker @Darrell Riche +BOK-10 C Kami of False Hope @Daren Bader +BOK-45 R Patron of the Moon @Scott M. Fischer +BOK-51 C Shimmering Glasskite @John Avon +BOK-57 C Toils of Night and Day @Matt Cavotta +BOK-62 C Blessing of Leeches @Rebecca Guay +BOK-71 R Ink-Eyes, Servant of Oni @Wayne Reynolds +BOK-84 C Skullsnatcher @Matt Cavotta +BOK-88 U Throat Slitter @Paolo Parente +BOK-94 U Aura Barbs @Aleksi Briclot +BOK-96 R Blazing Shoal @Glen Angus +BOK-108 R In the Web of War @Ron Spencer +BOK-115 R Patron of the Akki @Jim Nelson +BOK-145 U Sosuke's Summons @Kev Walker +BOK-154 R Mirror Gallery @Scott M. Fischer +BOK-159 U Shuko @Greg Hildebrandt +BOK-160 U Shuriken @Matt Cavotta +BOK-162 R That Which Was Taken @Adam Rex +BOK-163 R Umezawa's Jitte @Christopher Moeller +BOK-165 R Tendo Ice Bridge @Rob Alexander +BRO-30 R Tocasia's Welcome @Johan Grenier +BRO-108 C Moment of Defiance @Inkognit +BRO-123 C Scrapwork Rager @Michal Ivan +BRO-127 C Bitter Reunion @Jake Murray +BRO-136 U Giant Cindermaw @Edgar Sánchez Hidalgo +BRO-164 C Scrapwork Mutt @Sidharth Chaturvedi +BRO-167 C Argothian Opportunist @Ina Wong +BRO-172 C Blanchwood Prowler @Justine Cruz +BRO-174 U Bushwhack @Artur Nakhodkin +BRO-182 C Gaea's Gift @Olivier Bernard +BRO-199 U Haywire Mite @Izzy +BRO-214 U Junkyard Genius @Rémi Jacquot +BRO-259 R Brushland @Thomas Stoop +C13-5 U Archangel @Quinton Hoover +C13-29 R Arcane Melee @Jaime Jones +C13-43 R Echo Mage @Matt Stewart +C13-55 U Raven Familiar @John Avon +C13-63 R True-Name Nemesis @Zack Stella +C13-71 U Curse of Shallow Graves @Karla Ortiz +C13-86 R Phyrexian Delver @Igor Kieryluk +C13-98 U Vile Requiem @Carl Critchlow +C13-101 U Blood Rites @Raymond Swanland +C13-133 R Witch Hunt @Karl Kopinski +C13-140 U Curse of Predation @Jack Wang +C13-149 R Hua Tuo, Honored Physician @Gao Jianzhang +C13-150 R Hunted Troll @Greg Staples +C13-158 C Night Soil @Richard Wright +C13-162 R Primal Vigor @Matt Stewart +C13-203 M Oloro, Ageless Ascetic @Eric Deschamps +C13-243 R Eye of Doom @Yeong-Hao Han +C14-1 R Angel of the Dire Hour @Jack Wang +C14-10 M Nahiri, the Lithomancer @Eric Deschamps +C14-19 M Teferi, Temporal Archmage @Tyler Jacobson +C14-33 M Daretti, Scrap Savant @Dan Murayama Scott +C14-43 M Freyalise, Llanowar's Fury @Adam Paquette +C14-47 R Song of the Dryads @Lars Grant-West +C14-52 R Wolfcaller's Howl @Ralph Horsley +C14-54 C Commander's Sphere @Ryan Alexander Lee +C14-60 R Flamekin Village @Ron Spears +C14-61 U Myriad Landscape @Richard Wright +C14-68 U Celestial Crusader @Jim Murray +C14-73 U Gift of Estates @Hugh Jamieson +C14-96 C Whitemane Lion @Zoltan Boros & Gabor Szikszai +C14-109 C Fathom Seer @Ralph Horsley +C14-122 R Rite of Replication @Matt Cavotta +C14-125 C Shaper Parasite @rk post +C14-145 M Grave Titan @Nils Hamm +C14-146 C Gray Merchant of Asphodel @Robbie Trevino +C14-162 U Skeletal Scrying @Bob Petillo +C14-166 C Tendrils of Corruption @Vance Kovacs +C14-167 C Tragic Slip @Christopher Moeller +C14-168 U Vampire Hexmage @Eric Deschamps +C14-195 R Ezuri, Renegade Leader @Karl Kopinski +C14-209 M Praetor's Counsel @Daarken +C14-210 C Priest of Titania @Rebecca Guay +C14-249 U Mask of Memory @Alan Pollack +C14-261 R Pentavus @Greg Staples +C14-278 U Tormod's Crypt @Lars Grant-West +C14-290 U Darksteel Citadel @John Avon +C14-303 U Karoo @Zina Saunders +C14-313 U Tectonic Edge @Vincent Proce +C15-3 R Grasp of Fate @Tomasz Jedruszek +C15-10 U Broodbirth Viper @Mathias Kollros +C15-12 U Illusory Ambusher @Steve Argyle +C15-17 U Corpse Augur @Scott M. Fischer +C15-19 R Deadly Tempest @Cliff Childs +C15-29 R Mizzix's Mastery @Dan Murayama Scott +C15-31 U Warchief Giant @Slawomir Maniak +C15-43 M Daxos the Returned @Adam Paquette +C15-44 M Ezuri, Claw of Progress @James Ryman +C15-49 M Meren of Clan Nel Toth @Mark Winters +C15-50 M Mizzix of the Izmagnus @Cliff Childs +C15-52 U Sandstone Oracle @Eric Deschamps +C15-55 C Thought Vessel @rk post +C15-56 R Command Beacon @Jonas De Ro +C15-58 M Angel of Serenity @Aleksi Briclot +C15-60 U Aura of Silence @D. Alexander Gregory +C15-67 C Dawnglare Invoker @Steve Argyle +C15-70 U Ghostblade Eidolon @Ryan Yee +C15-101 C Preordain @Svetlin Velinov +C15-106 U Sleep @Chris Rahn +C15-113 U Ambition's Cost @Junko Taguchi +C15-122 C Dreadbringer Lampads @Willian Murai +C15-125 U Fallen Ideal @Anson Maddocks +C15-129 R Nighthowler @Nils Hamm +C15-133 U Phyrexian Reclamation @rk post +C15-135 C Seal of Doom @Ralph Horsley +C15-149 U Desperate Ravings @John Stanko +C15-169 R Urza's Rage @Jim Murray +C15-170 U Vandalblast @Seb McKinnon +C15-175 R Bane of Progress @Lars Grant-West +C15-178 R Chameleon Colossus @Darrell Riche +C15-184 U Experiment One @Chase Stone +C15-231 R Prophetic Bolt @Slawomir Maniak +C15-235 R Treasury Thrull @Mark Zug +C15-237 U Underworld Coinsmith @Mark Winters +C15-248 U Burnished Hart @Yeong-Hao Han +C15-250 U Crystal Chimes @Donato Giancola +C15-254 U Fellwar Stone @John Avon +C15-273 R Urza's Incubator @Pete Venters +C16-3 U Orzhov Advokist @Jason A. Engle +C16-8 R Faerie Artisans @Tony Foti +C16-18 U Frenzied Fugue @Tony Foti +C16-22 U Evolutionary Escalation @Kev Walker +C16-36 M Kynaios and Tiro of Meletis @Willian Murai +C16-47 U Treacherous Terrain @Titus Lunter +C16-52 R Boompile @Filip Burburan +C16-54 R Crystalline Crawler @Jason Felix +C16-55 R Prismatic Geoscope @Steven Belledin +C16-76 C Sanctum Gargoyle @Shelly Wan +C16-78 U Swords to Plowshares @Terese Nielsen +C16-94 U Propaganda @Clint Cearley +C16-109 C Executioner's Capsule @Warren Mahy +C16-118 U Wight of Precinct Six @Ryan Barger +C16-133 R Slobad, Goblin Tinkerer @Kev Walker +C16-138 R Wheel of Fate @Kev Walker +C16-170 R Tempt with Discovery @William Wu +C16-177 U Abzan Charm @Mathias Kollros +C16-200 M Ghave, Guru of Spores @James Paick +C16-205 M Iroas, God of Victory @Slawomir Maniak +C16-214 U Naya Charm @Jesper Ejsing +C16-232 C Zhur-Taa Druid @Mark Winters +C16-237 U Thopter Foundry @Ralph Horsley +C16-241 R Akroan Horse @Seb McKinnon +C16-252 U Etched Oracle @Matt Cavotta +C16-256 C Gruul Signet @Efrem Palacios +C17-1 R Alms Collector @Bram Sels +C17-5 R Kindred Boon @McLean Kendree +C17-7 R Stalking Leonin @Zoltan Boros +C17-8 R Teferi's Protection @Chase Stone +C17-9 U Curse of Verbosity @Kieran Yanner +C17-11 R Kindred Discovery @Lake Hurwitz +C17-18 R Kindred Dominance @Bram Sels +C17-22 R Bloodsworn Steward @Daarken +C17-24 U Curse of Opulence @Kieran Yanner +C17-31 R Hungry Lynx @Shreya Shetty +C17-33 R Qasali Slingers @Izzy +C17-34 R Traverse the Outlands @Daarken +C17-49 R Wasitora, Nekoru Queen @Cynthia Sheppard +C17-52 U Heirloom Blade @Carmen Sinek +C17-53 U Herald's Horn @Jason Felix +C17-56 C Path of Ancestry @Alayna Danner +C17-64 R Leonin Arbiter @Shelly Wan +C17-65 U Leonin Relic-Warder @Greg Staples +C17-81 C Archaeomancer @Zoltan Boros +C17-89 U Opportunity @Allen Williams +C17-92 C Sea Gate Oracle @Daniel Ljunggren +C17-98 R Black Market @Jeff Easley +C17-99 U Blood Artist @Johannes Voss +C17-112 R Drana, Kalastria Bloodchief @Mike Bierek +C17-114 U Go for the Throat @David Rapoza +C17-131 R Chaos Warp @Trevor Claxton +C17-149 C Farseek @Martina Pilcerova +C17-151 U Harmonize @Paul Lee +C17-156 U Rain of Thorns @Sam Burley +C17-166 U Cauldron Dance @Donato Giancola +C17-168 R Crosis, the Purger @Chris Rahn +C17-169 U Crosis's Charm @Marco Nelor +C17-183 R Nin, the Pain Artist @Brad Rigney +C17-189 C Qasali Pridemage @Chris Rahn +C17-200 C Tithe Drinker @Slawomir Maniak +C17-203 C Armillary Sphere @Franz Vohwinkel +C17-211 R Fist of Suns @Arnie Swekel +C17-216 U Loxodon Warhammer @Jeremy Jarvis +C17-222 U Skullclamp @Daniel Ljunggren +C17-244 U Crumbling Necropolis @Dave Kendall +C17-251 U Frontier Bivouac @Titus Lunter +C17-253 U Graypelt Refuge @Philip Straub +C17-257 U Jungle Shrine @Wayne Reynolds +C17-268 C Orzhov Basilica @John Avon +C17-272 U Rogue's Passage @Christine Choi +C18-4 U Loyal Unicorn @Volkan Baǵa +C18-6 R Aminatou's Augury @Seb McKinnon +C18-11 R Octopus Umbra @Howard Lyon +C18-15 R Entreat the Dead @Deruchenko Alexander +C18-23 U Loyal Apprentice @Joe Slucher +C18-25 R Reality Scramble @Simon Dominic +C18-28 R Varchild, Betrayer of Kjeldor @Lucas Graciano +C18-45 M Tawnos, Urza's Apprentice @Matt Stewart +C18-46 M Thantis, the Warweaver @Jehan Choo +C18-50 R Xantcha, Sleeper Agent @Mark Winters +C18-52 R Yuriko, the Tiger's Shadow @Yongjae Choi +C18-54 R Coveted Jewel @Jason A. Engle +C18-55 R Endless Atlas @Titus Lunter +C18-65 U Crib Swap @Brandon Dorman +C18-68 U Lightform @Steve Prescott +C18-72 U Sage's Reverie @Jason Rainville +C18-81 U Archetype of Imagination @Robbie Trevino +C18-87 R Djinn of Wishes @Kev Walker +C18-88 C Dream Cache @D. Alexander Gregory +C18-89 C Eel Umbra @Howard Lyon +C18-95 C Ninja of the Deep Hours @Dan Murayama Scott +C18-97 C Portent @Christopher Burdett +C18-98 U Predict @Rebecca Guay +C18-109 C Treasure Hunt @Daren Bader +C18-127 U Acidic Slime @Karl Kopinski +C18-128 C Aura Gnarlid @Lars Grant-West +C18-133 C Borderland Explorer @Lucas Graciano +C18-138 C Cultivate @Anthony Palumbo +C18-139 C Dawn's Reflection @John Avon +C18-144 U Explosive Vegetation @John Avon +C18-147 C Fertile Ground @Heather Hudson +C18-148 C Grapple with the Past @Howard Lyon +C18-150 C Harrow @Rob Alexander +C18-154 C Khalni Heart Expedition @Jason Chan +C18-160 C Sakura-Tribe Elder @Carl Critchlow +C18-162 C Snake Umbra @Christopher Moeller +C18-163 R Spawning Grounds @Vincent Proce +C18-165 C Wild Growth @Tony Szczudlo +C18-166 C Yavimaya Elder @Matt Cavotta +C18-174 U Deathreap Ritual @Steve Argyle +C18-179 U Esper Charm @Michael Bruinsma +C18-185 U Maverick Thopterist @Zack Stella +C18-186 U Mortify @Nils Hamm +C18-190 U Savage Twister @John Avon +C18-192 U Unflinching Courage @Mike Bierek +C18-201 U Crystal Ball @Ron Spencer +C18-210 C Mind Stone @Adam Rex +C18-222 U Sol Ring @Mike Bierek +C18-232 U Arcane Sanctum @Anthony Francisco +C18-237 C Blossoming Sands @Sam Burley +C18-238 C Bojuka Bog @Howard Lyon +C18-245 C Evolving Wilds @Steven Belledin +C18-246 C Forgotten Cave @Noah Bradley +C18-250 C Great Furnace @Rob Alexander +C18-261 U Kazandu Refuge @Franz Vohwinkel +C18-263 U Krosan Verge @Tony Szczudlo +C18-270 U New Benalia @Richard Wright +C18-276 C Scoured Barrens @Eytan Zana +C18-280 U Sejiri Refuge @Ryan Pancoast +C18-284 C Swiftwater Cliffs @Eytan Zana +C18-285 U Temple of the False God @James Zapata +C18-287 C Thornwood Falls @Eytan Zana +C18-291 C Warped Landscape @Cliff Childs +C19-15 R Bone Miser @Antonio José Manzanedo +C19-18 R K'rrik, Son of Yawgmoth @Chase Stone +C19-33 R Ohran Frostfang @Torstein Nordstrand +C19-42 M Ghired, Conclave Exile @Yongjae Choi +C19-46 M Marisi, Breaker of the Coil @Rudy Siswanto +C19-54 R Empowered Autogenerator @Piotr Dura +C19-92 U Reality Shift @Howard Lyon +C19-110 C Dark Withering @Wayne Reynolds +C19-170 U Great Oak Guardian @Steven Belledin +C19-179 R Seedborn Muse @Adam Rex +C19-217 U Lightning Greaves @Michael Komarck +C19-219 R Mimic Vat @Donato Giancola +C19-269 U Rix Maadi, Dungeon Palace @Martina Pilcerova +C20-4 M Brallin, Skyshark Rider @Paul Scott Canavan +C20-9 M Kalamax, the Stormsire @Nicholas Gregory +C20-14 M Shabraz, the Skyshark @Paul Scott Canavan +C20-25 R Dismantling Wave @Raoul Vitale +C20-45 R Netherborn Altar @Titus Lunter +C20-67 C Bonder's Ornament @Lindsey Look +C20-146 R Chaos Warp @Trevor Claxton +C20-173 U Harmonize @Dan Murayama Scott +C20-189 U Skullwinder @James Paick +C20-219 M The Locust God @Lius Lasahido +C20-251 U Skullclamp @Daniel Ljunggren +C20-269 R Desolate Lighthouse @Scott Chou +C20-316 R Spinerock Knoll @Steve Prescott +C21-12 R Archaeomancer's Map @Ovidio Cartagena +C21-19 R Monologue Tax @Justine Cruz +C21-24 R Curiosity Crafter @Rudy Siswanto +C21-50 R Cursed Mirror @David Gaillet +C21-57 R Ruin Grinder @Hector Ortiz +C21-79 R Triplicate Titan @Andrew Mar +C21-86 R Cleansing Nova @Marta Nael +C21-98 U Oreskos Explorer @Winona Nelson +C21-101 R Rout @Igor Kieryluk +C21-125 C Ponder @Dan Murayama Scott +C21-126 U Rapid Hybridization @Jack Wang +C21-128 R Rite of Replication @Matt Cavotta +C21-129 U Serum Visions @Izzy +C21-169 M Feldon of the Third Path @Chase Stone +C21-218 R Gluttonous Troll @Joe Slucher +C21-221 M Kaseto, Orochi Archmage @Aaron Miller +C21-234 C Arcane Signet @Dan Murayama Scott +C21-263 U Sol Ring @Mike Bierek +C21-269 U Talisman of Creativity @Lindsey Look +C21-284 C Command Tower @Evan Shipard +C21-286 C Desert of the Fervent @Titus Lunter +C21-288 R Exotic Orchard @Steven Belledin +C21-311 U Reliquary Tower @Jesper Ejsing +C21-316 R Shivan Reef @Rob Alexander +C21-326 U Temple of the False God @James Zapata +CHK-10 U Ghostly Prison @Lars Grant-West +CHK-19 R Isamaru, Hound of Konda @Christopher Moeller +CHK-25 C Kitsune Blademaster @Keith Garletts +CHK-36 U Nagao, Bound by Honor @Dave Dorman +CHK-43 U Samurai of the Pale Curtain @Christopher Moeller +CHK-44 R Sensei Golden-Tail @Stephen Tappin +CHK-69 U Honden of Seeing Winds @Martina Pilcerova +CHK-70 R Jushi Apprentice @Glen Angus +CHK-90 U Soratami Savant @Jim Nelson +CHK-103 U Blood Speaker @Adam Rex +CHK-124 R Marrow-Gnawer @Wayne Reynolds +CHK-129 U Nezumi Graverobber @Jim Nelson +CHK-131 R Nezumi Shortfang @Daren Bader +CHK-140 C Rend Flesh @Stephen Tappin +CHK-160 U Brothers Yamazaki @Ron Spears +CHK-173 U Initiate of Blood @Carl Critchlow +CHK-175 R Kiki-Jiki, Mirror Breaker @Pete Venters +CHK-202 R Budoka Gardener @Kev Walker +CHK-229 R Myojin of Life's Web @Kev Walker +CHK-233 U Orochi Eggwatcher @Dan Murayama Scott +CHK-237 U Rootrunner @Adam Rex +CHK-241 R Seshiro the Anointed @Daren Bader +CHK-244 U Sosuke, Son of Seshiro @Carl Critchlow +CHK-275 R Eiganjo Castle @Wayne England +CHK-276 R Forbidden Orchard @Dany Orizio +CHK-277 R Hall of the Bandit Lord @Paolo Parente +CHK-279 R Minamo, School at Water's Edge @Jeremy Jarvis +CHK-280 R Okina, Temple to the Grandfathers @Keith Garletts +CHK-282 R Shinka, the Bloodsoaked Keep @Thomas M. Baxa +CHK-283 R Shizo, Death's Storehouse @John Matson +CLB-4 R Archivist of Oghma @Stella Spente +CLB-12 U Contraband Livestock @Mark Behm +CLB-17 U Far Traveler @Alix Branwyn +CLB-36 C Pegasus Guardian @Leanna Crossan +CLB-44 C Steadfast Unicorn @John Thacker +CLB-53 C You're Confronted by Robbers @Durion +CLB-78 U Irenicus's Vile Duplication @Oleksandr Kozachenko +CLB-85 U Mystery Key @Yeong-Hao Han +CLB-92 C Run Away Together @Ben Wootten +CLB-151 C Summon Undead @Dallas Williams +CLB-183 U Inspired Tinkering @Craig J Spearing +CLB-193 C Reckless Barbarian @Oleksandr Kozachenko +CLB-201 U Thunderwave @Durion +CLB-203 U Two-Handed Axe @Milivoj Ćeran +CLB-210 C Young Red Dragon @Adam Vehige +CLB-225 C Dread Linnorm @Caio Monteiro +CLB-245 U Overwhelming Encounter @Darek Zabrocki +CLB-285 M Minsc & Boo, Timeless Heroes @Andreas Zafiratos +CLB-309 C Decanter of Endless Water @Titus Lunter +CLB-332 U Patriar's Seal @Kamila Szutenberg +CLB-345 R Baldur's Gate @Titus Lunter +CLB-347 C Black Dragon Gate @Sergey Glushakov +CLB-349 C Citadel Gate @Andreas Rocha +CLB-350 C Cliffgate @Emmanuel Shiu +CLB-353 U Gond Gate @Kamila Szutenberg +CLB-354 C Heap Gate @Andreas Rocha +CLB-356 C Manor Gate @Andreas Rocha +CLB-358 R Reflecting Pool @Alayna Danner +CLB-359 C Sea Gate @Kamila Szutenberg +CLB-658 R Deep Gnome Terramancer @David Sladek +CLB-659 R Harper Recruiter @Ernanda Souza +CLB-661 R Stick Together @Dave Greco +CLB-691 R Dusk // Dawn @Kasia 'Kafis' Zielińska +CLB-903 R Mutavault @Fred Fields +CM2-4 M Daretti, Scrap Savant @Dan Murayama Scott +CM2-11 M Ikra Shidiqi, the Usurper @Josu Hernaiz +CM2-14 U Artisan of Kozilek @Jason Felix +CM2-27 U Elite Scaleguard @Steve Prescott +CM2-39 R Deepglow Skate @Jason Kang +CM2-42 U Fact or Fiction @Matt Cavotta +CM2-45 R Memory Erosion @Howard Lyon +CM2-47 C Mulldrifter @Eric Fortune +CM2-49 C Slipstream Eel @Mark Tedin +CM2-52 U Thrummingbird @Efrem Palacios +CM2-63 C Festercreep @Jeff Easley +CM2-66 C Gravedigger @Dermot Power +CM2-75 R Sewer Nemesis @Nils Hamm +CM2-82 U Vow of Malice @Jesper Ejsing +CM2-90 U Curse of the Nightly Hunt @Daarken +CM2-96 C Faithless Looting @Gabor Szikszai +CM2-97 C Fall of the Hammer @Adam Paquette +CM2-110 C Ingot Chewer @Kev Walker +CM2-122 R Taurean Mauler @Dominick Domingo +CM2-124 R Tuktuk the Explorer @Volkan Baǵa +CM2-142 C Relic Crush @Steven Belledin +CM2-161 U Migratory Route @Winona Nelson +CM2-177 U Bottle Gnomes @Ben Thompson +CM2-178 R Caged Sun @Scott Chou +CM2-179 U Cathodion @Izzy +CM2-180 R Cauldron of Souls @Ron Brown +CM2-181 U Coldsteel Heart @Mark Romanoski +CM2-183 R Crystalline Crawler @Jason Felix +CM2-203 U Myr Retriever @Trevor Hairsine +CM2-204 C Myr Sire @Jaime Jones +CM2-207 U Palladium Myr @Alan Pollack +CM2-213 U Sandstone Oracle @Eric Deschamps +CM2-224 C Thought Vessel @rk post +CM2-225 R Trading Post @Adam Paquette +CM2-235 C Ash Barrens @Jonas De Ro +CM2-238 U Blasted Landscape @Ciruelo +CM2-247 U Dreadship Reef @Lars Grant-West +CM2-251 R Flamekin Village @Ron Spears +CM2-253 U Ghost Quarter @Peter Mohrbacher +CM2-264 U Sandsteppe Citadel @Sam Burley +CMA-9 U Darksteel Mutation @Daniel Ljunggren +CMA-10 U Fiend Hunter @Wayne Reynolds +CMA-16 R Mirror Entity @Zoltan Boros & Gabor Szikszai +CMA-21 U Righteous Cause @Scott M. Fischer +CMA-30 C Arcane Denial @Mark Zug +CMA-40 U Hada Spy Patrol @Zoltan Boros & Gabor Szikszai +CMA-42 C Thornwind Faeries @Rebecca Guay +CMA-58 C Evincar's Justice @Hannibal King +CMA-61 R Phyrexian Plaguelord @Kev Walker +CMA-62 C Phyrexian Rager @Stephan Martiniere +CMA-68 U Shriekmaw @Steve Prescott +CMA-72 U Victimize @Craig J Spearing +CMA-80 U Death by Dragons @Austin Hsu +CMA-81 U Dragon Whelp @Steven Belledin +CMA-88 U Sulfurous Blast @Jeff Miracola +CMA-92 R Beastmaster Ascension @Alex Horley-Orlandelli +CMA-100 U Desert Twister @Noah Bradley +CMA-106 C Essence Warden @Terese Nielsen +CMA-118 U Imperious Perfect @Scott M. Fischer +CMA-128 C Mulch @Christopher Moeller +CMA-129 R Mycoloth @Raymond Swanland +CMA-130 U Overrun @Carl Critchlow +CMA-149 U Spider Spawning @Daniel Ljunggren +CMA-154 C Thornweald Archer @Dave Kendall +CMA-166 C Wellwisher @Karl Kopinski +CMA-190 M Roon of the Hidden Realm @Steve Prescott +CMA-193 U Skyward Eye Prophets @Matt Stewart +CMA-195 C Terminate @Wayne Reynolds +CMA-201 U Gwyllion Hedge-Mage @Todd Lockwood +CMA-203 U Mistmeadow Witch @Greg Staples +CMA-211 R Bonehoard @Chippy +CMA-216 M Eldrazi Monument @Mark Tedin +CMA-238 U Akoum Refuge @Fred Fields +CMA-248 U Faerie Conclave @Stephan Martiniere +CMD-4 R Alliance of Arms @Johann Bodin +CMD-12 R Crescendo of War @Daarken +CMD-19 R Martyr's Bond @Ryan Pancoast +CMD-38 R Windborn Muse @Adam Rex +CMD-46 R Flusterstorm @Erica Yang +CMD-65 R Trench Gorger @Hideaki Takamura +CMD-83 U Fleshbag Marauder @Pete Venters +CMD-114 R Chaos Warp @Trevor Claxton +CMD-128 R Magmatic Force @Jung Park +CMD-147 R Collective Voyage @Charles Urbach +CMD-170 R Scavenging Ooze @Austin Hsu +CMD-171 R Spawnwrithe @Daarken +CMD-182 U Aura Shards @Ron Spencer +CMD-194 R Dominus of Fealty @Kev Walker +CMD-207 M Karador, Ghost Chieftain @Todd Lockwood +CMD-227 R Skullbriar, the Walking Grave @Nils Hamm +CMD-241 R Acorn Catapult @Jesper Ejsing +CMD-248 U Fellwar Stone @John Avon +CMD-260 U Skullclamp @Luca Zontini +CMD-261 U Sol Ring @Mike Bierek +CMD-269 C Command Tower @Ryan Yee +CMM-13 R Angelic Field Marshal @Scott Murphy +CMM-61 C Sunblade Angel @Johannes Voss +CMM-376 R Chromatic Lantern @Jung Park +CMM-398 U Lightning Greaves @Michael Komarck +CMM-711 M Rukarumel, Biologist @Fariba Khamseh +CMM-896 C Gemhide Sliver @Alayna Danner +CMM-900 U Manaweft Sliver @Franz Vohwinkel +CMM-993 R Exotic Orchard @Steven Belledin +CMM-997 U Frontier Bivouac @Titus Lunter +CMR-4 U Alharu, Solemn Ritualist @Chris Rallis +CMR-16 R Court of Grace @Denman Rooke +CMR-27 R Keeper of the Accord @Denman Rooke +CMR-48 U Slaughter the Strong @Randy Vargas +CMR-60 U Brinelin, the Moon Kraken @Adam Paquette +CMR-71 U Ghost of Ramirez DePietro @Grzegorz Rutkowski +CMR-72 U Glacian, Powerstone Engineer @Magali Villeneuve +CMR-84 C Preordain @Svetlin Velinov +CMR-99 M Sphinx of the Second Sun @Antonio José Manzanedo +CMR-130 U Gilt-Leaf Winnower @Viktor Titov +CMR-153 M Tevesh Szat, Doom of Fools @Livia Prima +CMR-160 U Alena, Kessig Trapper @Zoltan Boros +CMR-162 R Blasphemous Act @Daarken +CMR-163 C Boarding Party @Sidharth Chaturvedi +CMR-171 C Crimson Fleet Commodore @Sidharth Chaturvedi +CMR-174 C Dragon Mantle @Anthony Palumbo +CMR-180 U Frenzied Saddlebrute @Wisnu Tan +CMR-182 C Goblin Trailblazer @Josh Hass +CMR-189 R Krark, the Thumbless @Mathias Kollros +CMR-204 U Toggo, Goblin Weaponsmith @Svetlin Velinov +CMR-209 U Vow of Lightning @Randy Vargas +CMR-228 C Fyndhorn Elves @Igor Kieryluk +CMR-261 U Three Visits @Yeong-Hao Han +CMR-279 R Hans Eriksson @Ryan Pancoast +CMR-281 R Jared Carthalion, True Heir @Lius Lasahido +CMR-284 R Kwain, Itinerant Meddler @Lucas Graciano +CMR-286 R Liesa, Shroud of Dusk @Slawomir Maniak +CMR-290 U Reyav, Master Smith @Scott Murphy +CMR-305 M Commander's Plate @Volkan Baǵa +CMR-331 M Phyrexian Triniform @Adam Paquette +CMR-346 U Thought Vessel @rk post +CMR-350 C Command Tower @Ryan Yee +CMR-351 U Guildless Commons @Cliff Childs +CMR-353 C Path of Ancestry @Alayna Danner +CMR-358 R Training Center @Daniel Ljunggren +CMR-361 R War Room @Milivoj Ćeran +CMR-365 M Aesi, Tyrant of Gyre Strait @Viktor Titov +CMR-390 U Valorous Stance @Victor Adame Minguez +CMR-395 C Counterspell @Zack Stella +CMR-414 C Fists of Flame @Steve Argyle +CMR-417 C Temur Battle Rage @Jaime Jones +CN2-7 M Hymn of the Wilds @Jason Rainville +CN2-16 C Lieutenants of the Guard @Johannes Voss +CN2-18 U Palace Jailer @David Palumbo +CN2-19 C Palace Sentinels @Aaron Miller +CN2-22 R Recruiter of the Guard @Jason Rainville +CN2-29 U Coveted Peacock @Christopher Burdett +CN2-30 M Expropriate @Zack Stella +CN2-33 C Jeering Homunculus @Steve Prescott +CN2-35 C Messenger Jays @Lars Grant-West +CN2-36 C Skittering Crustacean @Jason Felix +CN2-38 R Stunt Double @Joseph Meehan +CN2-44 U Marchesa's Decree @Chris Rallis +CN2-48 C Thorn of the Black Rose @David Gaillet +CN2-49 U Besmirch @Mathias Kollros +CN2-50 C Crown-Hunter Hireling @Izzy +CN2-63 U Domesticated Hydra @Mathias Kollros +CN2-70 M Selvala, Heart of the Wilds @Tyler Jacobson +CN2-75 M Kaya, Ghost Assassin @Chris Rallis +CN2-77 M Leovold, Emissary of Trest @Magali Villeneuve +CN2-78 M Queen Marchesa @Kieran Yanner +CN2-79 U Spy Kit @Aaron Miller +CN2-83 C Doomed Traveler @Lars Grant-West +CN2-87 C Gleam of Resistance @Matt Stewart +CN2-97 C Reviving Dose @D. Alexander Gregory +CN2-99 C Wild Griffin @Matt Cavotta +CN2-100 U Windborne Charge @Ryan Pancoast +CN2-101 C Zealous Strike @Bud Cook +CN2-103 C Caller of Gales @Alex Horley-Orlandelli +CN2-107 R Desertion @Richard Kane Ferguson +CN2-110 C Fleeting Distraction @Ryan Yee +CN2-119 C Repulse @Aaron Boyd +CN2-126 C Absorb Vis @Brandon Kitkouski +CN2-133 C Driver of the Dead @James Ryman +CN2-139 U Infest @Karl Kopinski +CN2-144 R Phyrexian Arena @Svetlin Velinov +CN2-149 C Stromkirk Patrol @Karl Kopinski +CN2-159 C Goblin Balloon Brigade @Lars Grant-West +CN2-166 C Ill-Tempered Cyclops @Peter Mohrbacher +CN2-176 R Birds of Paradise @Marcelo Vignali +CN2-181 C Fade into Antiquity @Noah Bradley +CN2-185 C Lay of the Land @Chuck Lukacs +CN2-192 C Ravenous Leucrocota @Christopher Burdett +CN2-197 U Akroan Hoplite @Igor Kieryluk +CN2-206 U Shipwreck Singer @Daarken +CN2-207 U Stormchaser Chimera @Greg Staples +CN2-214 M Platinum Angel @Brom +CNS-6 U Iterative Analysis @Winona Nelson +CNS-14 C Brago's Representative @Anthony Palumbo +CNS-15 U Council Guardian @Volkan Baǵa +CNS-16 R Council's Judgment @Kev Walker +CNS-18 C Custodi Squire @Alex Horley-Orlandelli +CNS-20 R Academy Elite @Volkan Baǵa +CNS-24 R Plea for Power @John Severin Brassell +CNS-35 M Scourge of the Throne @Michael Komarck +CNS-36 U Treasonous Ogre @Randy Gallegos +CNS-37 U Predator's Howl @Ralph Horsley +CNS-54 U Agent of Acquisitions @Eytan Zana +CNS-58 C Cogwork Librarian @Dan Murayama Scott +CNS-73 C Kor Chant @Yohann Schepacz +CNS-88 U Wakestone Gargoyle @Jim Murray +CNS-109 C Traveler's Cloak @Rebecca Guay +CNS-144 R Heartless Hidetsugu @Carl Critchlow +CNS-161 C Echoing Courage @Greg Staples +CON-3 C Aven Squire @David Palumbo +CON-9 C Lapse of Certainty @Anthony Francisco +CON-15 U Path to Exile @Todd Lockwood +CON-16 C Rhox Meditant @Donato Giancola +CON-31 R Master Transmuter @Chippy +CON-48 R Kederekt Parasite @Dan Murayama Scott +CON-72 C Toxic Iguanar @Brandon Kitkouski +CON-75 R Voracious Dragon @Dominick Domingo +CON-115 M Maelstrom Archangel @Cyril Van Der Haegen +CON-121 M Progenitus @Jaime Jones +CON-136 R Font of Mythos @Dave Allsop +CON-141 U Ancient Ziggurat @John Avon +CON-142 R Exotic Orchard @Steven Belledin +CON-145 U Unstable Frontier @John Avon +CSP-1 R Adarkar Valkyrie @Jeremy Jarvis +CSP-4 R Darien, King of Kjeldor @Michael Phillippi +CSP-8 U Jötun Grunt @Franz Vohwinkel +CSP-9 U Jötun Owl Keeper @Dave Dorman +CSP-23 U Wall of Shards @Alex Horley-Orlandelli +CSP-29 R Commandeer @John Matson +CSP-31 U Counterbalance @John Zeleznik +CSP-37 R Jokulmorder @Mark Zug +CSP-58 C Grim Harvest @Zoltan Boros & Gabor Szikszai +CSP-61 R Haakon, Stromgald Scourge @Mark Zug +CSP-62 R Herald of Leshrac @Alex Horley-Orlandelli +CSP-67 R Phyrexian Etchings @Ron Spears +CSP-71 U Stromgald Crusader @Volkan Baǵa +CSP-76 U Balduvian Rage @John Matson +CSP-77 U Balduvian Warlord @Paolo Parente +CSP-78 R Braid of Fire @Cyril Van Der Haegen +CSP-86 R Karplusan Minotaur @Wayne England +CSP-89 U Lightning Storm @Luca Zontini +CSP-90 R Lovisa Coldeyes @Brian Snõddy +CSP-97 C Skred @Christopher Moeller +CSP-100 C Thermopod @Dan Dos Santos +CSP-101 R Allosaurus Rider @Daren Bader +CSP-105 C Boreal Druid @Dan Dos Santos +CSP-111 C Into the North @Richard Sardinha +CSP-116 R Panglacial Wurm @Jim Pavelec +CSP-121 U Sheltering Ancient @Pete Venters +CSP-130 U Juniper Order Ranger @Greg Hildebrandt +CSP-140 U Phyrexian Snowcrusher @Dave Allsop +CSP-141 R Phyrexian Soulgorger @Brian Snõddy +CSP-142 R Thrumming Stone @Rob Alexander +CSP-145 R Dark Depths @Stephan Martiniere +CSP-146 U Frost Marsh @Jim Pavelec +CSP-148 U Mouth of Ronom @Daren Bader +CSP-149 R Scrying Sheets @Thomas M. Baxa +DBL-121 C Siege Zombie @Johann Bodin +DD1-5 C Elvish Warrior @Christopher Moeller +DD1-19 U Wren's Run Vanquisher @Paolo Parente +DD1-26 U Wirewood Lodge @Anthony S. Waters +DD1-33 U Akki Coalflinger @Nottsuo +DD1-44 U Mogg Fanatic @Brom +DD1-58 U Goblin Burrows @David Martin +DD2-6 U Willbender @Eric Peterson +DD2-10 U Fledgling Mawcor @Kev Walker +DD2-15 U Riftwing Cloudskate @Carl Critchlow +DD2-20 C Errant Ephemeron @Luca Zontini +DD2-23 C Daze @Matthew D. Wilson +DD2-27 C Gush @Kev Walker +DD2-53 U Flame Javelin @Trevor Hairsine +DD2-56 U Fireball @Dave Dorman +DDC-15 C Angelsong @Sal Villagran +DDC-16 U Otherworldly Journey @Vance Kovacs +DDC-21 U Serra's Embrace @Zoltan Boros & Gabor Szikszai +DDC-41 C Cackling Imp @Matt Thompson +DDC-49 U Demonic Tutor @Scott Chou +DDC-53 U Breeding Pit @Adrian Smith +DDC-54 R Promise of Power @Kev Walker +DDC-56 U Consume Spirit @Matt Thompson +DDD-2 C Basking Rootwalla @Heather Hudson +DDD-5 C Wild Mongrel @Anthony S. Waters +DDD-7 C Blastoderm @Nils Hamm +DDD-16 C Lignify @Jesper Ejsing +DDD-17 C Nature's Lore @Terese Nielsen +DDD-20 C Serrated Arrows @John Avon +DDD-33 C Deathgreeter @Dominick Domingo +DDD-47 U Genju of the Fens @Tsutomu Kawade +DDD-48 R Bad Moon @Gary Leach +DDE-7 U Priest of Gix @Brian Despain +DDE-11 U Order of Yawgmoth @Chippy +DDE-18 C Dark Ritual @Tom Fleming +DDE-48 R Rith, the Awakener @Carl Critchlow +DDF-3 C Goldmeadow Harrier @Steve Prescott +DDF-69 U Argivian Restoration @Roger Raupp +DDG-5 U Knight of Meadowgrain @Larry MacDougall +DDG-14 R Knight Exemplar @Jason Chan +DDG-59 R Kilnmouth Dragon @Carl Critchlow +DDG-66 U Punishing Fire @Greg Staples +DDG-70 C Seething Song @Jaime Jones +DDH-45 U Slavering Nulls @Dave Kendall +DDH-59 U Countersquall @Anthony Francisco +DDI-13 C Kor Cartographer @Ryan Pancoast +DDI-55 U Stone Giant @Warren Mahy +DDJ-14 C Force Spike @Nelson DeCastro +DDJ-36 U Nivix, Aerie of the Firemind @Martina Pilcerova +DDJ-58 C Brain Weevil @Anthony Jones +DDJ-65 R Doomgape @Dave Allsop +DDJ-72 C Feast or Famine @Chase Stone +DDK-46 U Hellspark Elemental @Justin Sweet +DDK-50 R Lavaborn Muse @Brian Snõddy +DDK-59 C Faithless Looting @Gabor Szikszai +DDK-60 C Flame Slash @Raymond Swanland +DDK-63 U Recoup @Dave Dorman +DDL-32 U Pyrokinesis @Igor Kieryluk +DDL-44 C Orcish Lumberjack @Steve Prescott +DDM-14 U Phantasmal Dragon @Wayne Reynolds +DDM-36 C Halimar Depths @Volkan Baǵa +DDM-52 C Sadistic Augermage @Nick Percival +DDM-62 U Nekrataal @Christopher Moeller +DDN-3 C Infantry Veteran @Zoltan Boros +DDN-5 C Dregscape Zombie @Lars Grant-West +DDN-6 C Goblin Deathraiders @Raymond Swanland +DDN-12 U Shambling Remains @Nils Hamm +DDN-24 U Goblin Bombardment @Dave Kendall +DDN-28 C Orcish Cannonade @Pete Venters +DDN-42 M Arcanis the Omnipotent @Ryan Alexander Lee +DDN-44 C Coral Trickster @D. Alexander Gregory +DDN-48 C Sparkmage Apprentice @Jaime Jones +DDN-49 C Lone Missionary @Svetlin Velinov +DDN-57 C Faerie Invaders @Ryan Pancoast +DDN-58 R Thousand Winds @Raymond Swanland +DDN-61 C Stave Off @Mark Zug +DDN-64 C Mana Leak @Howard Lyon +DDN-70 C Whiplash Trap @Zoltan Boros & Gabor Szikszai +DDO-5 C Court Street Denizen @Volkan Baǵa +DDO-7 R Decree of Justice @Lius Lasahido +DDO-8 R Dictate of Heliod @Terese Nielsen +DDO-13 U Gustcloak Skirmisher @Dan Frazier +DDO-16 C Kor Skyfisher @Dan Murayama Scott +DDO-17 C Loxodon Partisan @Matt Stewart +DDO-19 C Mortal's Ardor @Kev Walker +DDO-20 U Mother of Runes @Terese Nielsen +DDO-24 C Soul Parry @Igor Kieryluk +DDO-28 C Veteran Swordsmith @Michael Komarck +DDO-36 U Aetherize @Ryan Barger +DDO-40 C Peel from Reality @Jason Felix +DDO-42 U Sealock Monster @Adam Paquette +DDO-43 C Surrakar Banisher @Matt Cavotta +DDO-44 R Whelming Wave @Slawomir Maniak +DDO-45 C Explore @Johann Bodin +DDO-50 C Time to Feed @Wayne Reynolds +DDO-52 U Kiora's Follower @Eric Deschamps +DDP-3 C Caravan Escort @Goran Josic +DDP-4 U Kabira Vindicator @Steven Belledin +DDP-5 C Knight of Cliffhaven @Matt Cavotta +DDP-7 U Oust @Mike Bierek +DDP-10 U Beastbreaker of Bala Ged @Karl Kopinski +DDP-14 C Grazing Gladehart @Ryan Pancoast +DDP-15 C Groundswell @Chris Rahn +DDP-24 C Territorial Baloth @Jesper Ejsing +DDP-45 C Bloodrite Invoker @Svetlin Velinov +DDP-50 U Corpsehatch @Kekai Kotaki +DDP-53 C Induce Despair @Igor Kieryluk +DDP-56 C Read the Bones @Lars Grant-West +DDP-59 C Emrakul's Hatcher @Jaime Jones +DDP-68 U Eldrazi Temple @James Paick +DDQ-2 C Bonds of Faith @Steve Argyle +DDQ-4 R Champion of the Parish @Svetlin Velinov +DDQ-19 C Spectral Gateguards @Wayne England +DDQ-22 C Village Bell-Ringer @David Palumbo +DDQ-23 C Voice of the Provinces @Igor Kieryluk +DDQ-26 C Mist Raven @John Avon +DDQ-27 U Nephalia Smuggler @Matt Stewart +DDQ-49 C Stitched Drake @Chris Rahn +DDQ-55 U Dread Return @Svetlin Velinov +DDQ-59 R Gravecrawler @Steven Belledin +DDR-3 U Briarhorn @Nils Hamm +DDR-4 C Citanul Woodreaders @Steven Belledin +DDR-7 C Crop Rotation @Daniel Ljunggren +DDR-13 C Natural Connection @Wesley Burt +DDR-15 C Oakgnarl Warrior @Jim Nelson +DDR-17 C Oran-Rief Invoker @Anastasia Ovchinnikova +DDR-20 U Seek the Horizon @Min Yum +DDR-28 C Khalni Garden @Ryan Pancoast +DDR-37 C Altar's Reap @Tyler Jacobson +DDR-40 C Blistergrub @Daarken +DDR-41 C Cadaver Imp @Dave Kendall +DDR-51 C Grim Discovery @Christopher Moeller +DDR-52 C Hideous End @Zoltan Boros & Gabor Szikszai +DDR-59 C Renegade Demon @Tomasz Jedruszek +DDS-1 M Jhoira of the Ghitu @Magali Villeneuve +DDS-10 C Snap @Véronique Meignaud +DDS-11 R Talrand, Sky Summoner @Svetlin Velinov +DDS-12 C Temporal Fissure @Seb McKinnon +DDS-13 R The Unspeakable @Daarken +DDS-15 C Empty the Warrens @Jasper Sandner +DDS-16 C Grapeshot @Clint Cearley +DDS-20 U Young Pyromancer @Cynthia Sheppard +DDS-26 U Nucklavee @Trevor Hairsine +DDS-37 C Firebolt @Chris Rallis +DDS-48 C Rampant Growth @Steven Belledin +DDS-49 U Roar of the Wurm @Kev Walker +DDS-56 U Guttural Response @Ben Wootten +DDS-58 R Coat of Arms @Scott M. Fischer +DDT-1 M Master of Waves @Svetlin Velinov +DDT-3 C Claustrophobia @Ryan Pancoast +DDT-8 C Inkfathom Divers @Steven Belledin +DDT-10 U Merfolk Looter @Austin Hsu +DDT-14 R Mind Spring @Mark Zug +DDT-15 R Misdirection @Mathias Kollros +DDT-17 C Scroll Thief @Alex Horley-Orlandelli +DDT-20 C Tidal Warrior @Daren Bader +DDT-23 U Triton Tactics @Jack Wang +DDT-24 R Wake Thrasher @Jesper Ejsing +DDT-35 C Brute Strength @Wayne Reynolds +DDT-39 U Gempalm Incinerator @Mark Behm +DDT-41 R Goblin Chieftain @Sam Wood +DDT-52 R Krenko, Mob Boss @Karl Kopinski +DDT-53 C Krenko's Command @Karl Kopinski +DDT-55 C Tarfire @Omar Rayyan +DDT-57 R Goblin Charbelcher @Jesper Ejsing +DDU-5 R Elvish Archdruid @Raymond Swanland +DDU-9 C Ezuri's Archers @Shelly Wan +DDU-10 C Fierce Empath @Johann Bodin +DDU-12 C Ivy Lane Denizen @Winona Nelson +DDU-14 C Krosan Tusker @Kev Walker +DDU-16 C Lead the Stampede @Efrem Palacios +DDU-18 C Llanowar Empath @Warren Mahy +DDU-21 U Nissa's Judgment @Tyler Jacobson +DDU-38 C Faerie Mechanist @Matt Cavotta +DDU-40 U Treasure Mage @Ryan Pancoast +DDU-41 C Trinket Mage @Scott Chou +DDU-45 C Galvanic Blast @Marc Simonetti +DDU-50 U Maverick Thopterist @Zack Stella +DDU-51 U Reclusive Artificer @Cynthia Sheppard +DDU-60 C Pyrite Spellbomb @Jim Nelson +DDU-62 R Solemn Simulacrum @Dan Murayama Scott +DGM-16 C Opal Lake Gatekeepers @Seb McKinnon +DGM-75 U Gruul War Chant @Dave Kendall +DGM-82 M Master of Cruelties @Chase Stone +DGM-94 M Ral Zarek @Eric Deschamps +DGM-123 R Beck // Call @Adam Paquette +DGM-128 R Flesh // Blood @Lucas Graciano +DGM-129 U Give // Take @Steve Prescott +DGM-135 U Wear // Tear @Ryan Pancoast +DGM-152 M Maze's End @Cliff Childs +DIS-7 R Celestial Ancient @Mark Tedin +DIS-8 U Condemn @Daren Bader +DIS-15 R Proclamation of Rebirth @William Simpson +DIS-29 U Plaxmanta @Alan Pollack +DIS-33 U Spell Snare @Hideaki Takamura +DIS-67 C Ogre Gatecrasher @Daren Bader +DIS-86 U Indrik Stomphowler @Carl Critchlow +DIS-89 U Patagia Viper @Christopher Moeller +DIS-99 C Utopia Sprawl @Ron Spears +DIS-121 U Pain Magnification @Aleksi Briclot +DIS-131 U Sky Hussar @Kev Walker +DIS-153 R Odds // Ends @Michael Sutfin +DIS-162 U Magewright's Stone @Carl Critchlow +DIS-164 R Rakdos Riteknife @Jim Nelson +DIS-169 R Walking Archive @Heather Hudson +DIS-171 R Blood Crypt @Rob Alexander +DIS-173 U Ghost Quarter @Heather Hudson +DKA-4 C Burden of Guilt @John Stanko +DKA-33 R Counterlash @Austin Hsu +DKA-34 R Curse of Echoes @Slawomir Maniak +DKA-51 C Stormbound Geist @Dan Murayama Scott +DKA-63 R Geralf's Messenger @Kev Walker +DKA-101 U Pyreheart Wolf @Lars Grant-West +DKA-111 C Dawntreader Elk @John Avon +DKA-119 C Hunger of the Howlpack @Nils Hamm +DKA-127 U Strangleroot Geist @Jason Chan +DKA-132 C Wild Hunger @Karl Kopinski +DKA-134 C Young Wolf @Ryan Pancoast +DKA-135 U Diregraf Captain @Slawomir Maniak +DKA-136 U Drogskol Captain @Peter Mohrbacher +DKA-143 U Stromkirk Captain @Jana Schirmer & Johannes Voss +DKA-147 M Elbrus, the Binding Blade @Eric Deschamps +DKA-151 M Helvault @Jaime Jones +DMC-8 R The Reaver Cleaver @Yigit Koroglu +DMC-27 M Greensleeves, Maro-Sorcerer @Tuan Duong Chu +DMC-102 M Jazal Goldmane @Aaron Miller +DMC-103 R Odric, Lunarch Marshal @Chase Stone +DMC-107 R Urza's Ruinous Blast @Slawomir Maniak +DMC-109 C Echoing Truth @Greg Staples +DMC-142 M Atla Palani, Nest Tender @Ekaterina Burmak +DMC-220 R Murmuring Bosk @John Avon +DMC-222 U Nomad Outpost @Kamila Szutenberg +DMR-24 C Savannah Lions @Winona Nelson +DMR-25 U Serra Angel @Donato Giancola +DMR-64 U Ovinomancer @Kev Walker +DMR-116 U Dragon Whelp @Jokubas Uogintas +DMR-153 U Call of the Herd @Carl Critchlow +DMR-170 U Nature's Lore @Julie Dillon +DMR-271 U Serra Angel @Donato Giancola +DMU-17 C Destroy Evil @Anna Christenson +DMU-27 U Phyrexian Missionary @Mila Pesic +DMU-29 U Resolute Reinforcements @Billy Christian +DMU-43 U Battlewing Mystic @Borja Pindado +DMU-62 U Protect the Negotiators @Dominik Mayer +DMU-72 C Tolarian Terror @Vincent Christiaens +DMU-80 C Battle-Rage Blessing @Jarel Threat +DMU-105 C Shadow Prophecy @Rovina Cai +DMU-114 C Urborg Repossession @Cristi Balanescu +DMU-136 C Keldon Strike Team @Josu Hernaiz +DMU-138 C Meria's Outrider @Lius Lasahido +DMU-144 C Smash to Dust @Marc Simonetti +DMU-149 U Twinferno @Justyna Dura +DMU-182 U Tail Swipe @Ângelo Bortolini +DMU-183 U Tear Asunder @Dave Kendall +DMU-198 U Elas il-Kor, Sadistic Pilgrim @G-host Lee +DMU-236 U Relic of Legends @Titus Lunter +DMU-246 C Crystal Grotto @Piotr Dura +DMU-257 C Sunlit Marsh @Marc Simonetti +DOM-2 C Adamant Will @Alex Konstad +DOM-3 C Aven Sentry @Dan Murayama Scott +DOM-4 U Baird, Steward of Argive @Christine Choi +DOM-10 C Charge @Zezhou Chen +DOM-12 U Danitha Capashen, Paragon @Chris Rallis +DOM-14 U Dauntless Bodyguard @Manuel Castañón +DOM-16 R Evra, Halcyon Witness @Johannes Voss +DOM-17 C Excavation Elephant @Viktor Titov +DOM-18 R Fall of the Thran @Jason Felix +DOM-20 C Healing Grace @Magali Villeneuve +DOM-21 M History of Benalia @Noah Bradley +DOM-22 C Invoke the Divine @Magali Villeneuve +DOM-27 C Mesa Unicorn @Winona Nelson +DOM-28 U On Serra's Wings @Johannes Voss +DOM-34 C Serra Disciple @Victor Adame Minguez +DOM-35 R Shalai, Voice of Plenty @Victor Adame Minguez +DOM-41 C Academy Journeymage @Magali Villeneuve +DOM-42 R The Antiquities War @Mark Tedin +DOM-44 C Artificer's Assistant @Chris Seaman +DOM-46 C Blink of an Eye @Igor Kieryluk +DOM-47 C Cloudreader Sphinx @Kev Walker +DOM-48 C Cold-Water Snapper @Jason Kang +DOM-50 C Deep Freeze @Svetlin Velinov +DOM-56 U Merfolk Trickster @Jesper Ejsing +DOM-57 R The Mirari Conjecture @James Arnold +DOM-60 C Opt @Tyler Jacobson +DOM-64 U Sage of Lat-Nam @Matt Stewart +DOM-67 C Syncopate @Tommy Arnold +DOM-68 R Tempest Djinn @Zezhou Chen +DOM-69 U Tetsuko Umezawa, Fugitive @Randy Vargas +DOM-70 U Time of Ice @Franz Vohwinkel +DOM-75 U Wizard's Retort @Grzegorz Rutkowski +DOM-77 C Blessing of Belzenlok @Joe Slucher +DOM-80 C Caligo Skin-Witch @Daarken +DOM-81 U Cast Down @Bastien L. Deharme +DOM-85 C Demonic Vigor @Zoltan Boros +DOM-89 C Drudge Sentinel @Sara Winters +DOM-90 U The Eldest Reborn @Ravenna Tran +DOM-92 C Feral Abomination @Darek Zabrocki +DOM-94 C Fungal Infection @Filip Burburan +DOM-100 M Phyrexian Scriptures @Joseph Meehan +DOM-101 C Rat Colony @Suzanne Helmigh +DOM-106 C Thallid Omnivore @Mathias Kollros +DOM-112 C Windgrace Acolyte @Bayard Wu +DOM-113 U Yargle, Glutton of Urborg @Jehan Choo +DOM-115 C Bloodstone Goblin @Magali Villeneuve +DOM-117 C Fervent Strike @Winona Nelson +DOM-123 U The Flame of Keld @Lake Hurwitz +DOM-125 C Ghitu Chronicler @Anthony Palumbo +DOM-127 C Ghitu Lavarunner @Jesper Ejsing +DOM-129 R Goblin Chainwhirler @Svetlin Velinov +DOM-130 U Goblin Warchief @Karl Kopinski +DOM-133 R Jaya's Immolating Inferno @Noah Bradley +DOM-134 C Keldon Overseer @Jason A. Engle +DOM-139 C Rampaging Cyclops @Tomasz Jedruszek +DOM-140 C Run Amok @Svetlin Velinov +DOM-141 C Seismic Shift @James Paick +DOM-144 C Skirk Prospector @Slawomir Maniak +DOM-147 R Two-Headed Giant @Simon Dominic +DOM-153 C Adventurous Impulse @Titus Lunter +DOM-155 C Arbor Armament @Bayard Wu +DOM-156 C Baloth Gorger @Zezhou Chen +DOM-157 C Broken Bond @Ryan Yee +DOM-161 U Gaea's Blessing @David Palumbo +DOM-162 C Gaea's Protector @Grzegorz Rutkowski +DOM-163 C Gift of Growth @YW Tang +DOM-167 C Krosan Druid @Bastien L. Deharme +DOM-173 R The Mending of Dominaria @Adam Paquette +DOM-176 C Pierce the Sky @Slawomir Maniak +DOM-178 C Saproling Migration @Christine Choi +DOM-179 U Song of Freyalise @Min Yum +DOM-180 U Spore Swarm @Mathias Kollros +DOM-189 C Yavimaya Sapherd @Christine Choi +DOM-190 U Adeliz, the Cinder Wind @Zezhou Chen +DOM-199 M Muldrotha, the Gravetide @Jason Rainville +DOM-202 U Raff Capashen, Ship's Mage @John Stanko +DOM-205 U Slimefoot, the Stowaway @Alex Konstad +DOM-206 U Tatyova, Benthic Druid @Mathias Kollros +DOM-207 M Teferi, Hero of Dominaria @Chris Rallis +DOM-214 R Forebear's Blade @Scott Murphy +DOM-217 R Helm of the Host @Igor Kieryluk +DOM-219 U Icy Manipulator @Titus Lunter +DOM-223 R Mishra's Self-Replicator @Joseph Meehan +DOM-227 C Powerstone Shard @Lindsey Look +DOM-229 C Short Sword @John Severin Brassell +DOM-230 C Skittering Surveyor @Dan Murayama Scott +DOM-231 U Sorcerer's Wand @Matt Stewart +DOM-237 M Weatherlight @Jaime Jones +DOM-239 R Clifftop Retreat @Christine Choi +DOM-243 U Memorial to Genius @James Paick +DOM-247 R Sulfur Falls @Cliff Childs +DOM-249 U Zhalfirin Void @Chase Stone +DPA-40 U Bloodmark Mentor @Dave Allsop +DST-16 U Stir the Pride @Matt Cavotta +DST-29 R Pulse of the Grid @Wayne England +DST-31 R Reshape @Jon Foster +DST-37 R Aether Snap @Kev Walker +DST-40 R Death Cloud @Stephen Tappin +DST-41 C Echoing Decay @Greg Staples +DST-63 U Goblin Archaeologist @Jim Nelson +DST-77 U Karstoderm @Tony Szczudlo +DST-84 U Stand Together @Luca Zontini +DST-91 U Aether Vial @Greg Hildebrandt +DST-99 R Arcbound Overseer @Carl Critchlow +DST-102 U Arcbound Slith @Vance Kovacs +DST-112 C Darksteel Ingot @Martina Pilcerova +DST-120 R Eater of Days @Mark Tedin +DST-123 U Geth's Grimoire @Heather Hudson +DST-159 R Well of Lost Dreams @Jeff Miracola +DST-165 U Mirrodin's Core @Greg Staples +DTK-1 U Scion of Ugin @Cliff Childs +DTK-4 C Artful Maneuver @Lars Grant-West +DTK-8 C Center Soul @Igor Kieryluk +DTK-9 C Champion of Arashin @Joseph Meehan +DTK-11 C Dragon's Eye Sentry @Anastasia Ovchinnikova +DTK-16 C Enduring Victory @Mike Sass +DTK-18 C Glaring Aegis @Anthony Palumbo +DTK-34 C Sandstorm Charger @Dave Kendall +DTK-37 U Shieldhide Dragon @Chris Rallis +DTK-41 R Sunscorch Regent @Matt Stewart +DTK-46 U Belltoll Dragon @Zack Stella +DTK-49 C Contradict @Steve Prescott +DTK-51 C Dirgur Nemesis @Mathias Kollros +DTK-55 C Glint @Igor Kieryluk +DTK-56 U Gudul Lurker @Christopher Burdett +DTK-57 C Gurmag Drowner @Lake Hurwitz +DTK-63 C Monastery Loremaster @Ryan Alexander Lee +DTK-66 C Ojutai Interceptor @Johann Bodin +DTK-67 C Ojutai's Breath @Kev Walker +DTK-70 R Profaner of the Dead @Vincent Proce +DTK-76 U Silumgar Sorcerer @Jeff Simpson +DTK-84 U Youthful Scholar @Cynthia Sheppard +DTK-91 C Coat with Venom @Johann Bodin +DTK-97 C Defeat @Dave Kendall +DTK-104 C Gravepurge @Nils Hamm +DTK-109 C Marsh Hulk @Raf Sarmento +DTK-112 R Pitiless Horde @Viktor Titov +DTK-115 C Reckless Imp @Torstein Nordstrand +DTK-118 C Shambling Goblin @Yeong-Hao Han +DTK-120 R Sidisi, Undead Vizier @Min Yum +DTK-122 C Silumgar Butcher @Dave Kendall +DTK-128 C Atarka Efreet @Izzy +DTK-130 R Berserkers' Onslaught @Zoltan Boros +DTK-139 C Hardened Berserker @Viktor Titov +DTK-140 C Impact Tremors @Lake Hurwitz +DTK-145 C Kolaghan Stormsinger @Scott Murphy +DTK-150 U Rending Volley @Lucas Graciano +DTK-151 U Roast @Zoltan Boros +DTK-153 C Sarkhan's Rage @Chris Rahn +DTK-155 C Screamreach Brawler @Slawomir Maniak +DTK-160 C Summit Prowler @Filip Burburan +DTK-165 C Vandalize @Ryan Barger +DTK-166 C Volcanic Rush @Ryan Barger +DTK-170 C Aerie Bowmasters @Matt Stewart +DTK-172 U Ainok Survivalist @Craig J Spearing +DTK-179 C Conifer Strider @YW Tang +DTK-183 C Dragon-Scarred Bear @Lars Grant-West +DTK-185 C Epic Confrontation @Wayne Reynolds +DTK-188 C Glade Watcher @Jesper Ejsing +DTK-189 C Guardian Shield-Bearer @Lindsey Look +DTK-195 C Pinion Feast @Ryan Barger +DTK-205 C Shape the Sands @Ryan Yee +DTK-215 U Cunning Breezedancer @Todd Lockwood +DTK-216 M Dragonlord Atarka @Karl Kopinski +DTK-217 M Dragonlord Dromoka @Eric Deschamps +DTK-219 M Dragonlord Ojutai @Chase Stone +DTK-221 R Dromoka's Command @James Ryman +DTK-224 R Kolaghan's Command @Daarken +DTK-246 U Tapestry of the Ages @Yeong-Hao Han +DVD-1 M Akroma, Angel of Wrath @Chippy +E01-2 U Aerial Responder @Raoul Vitale +E01-5 C Excoriate @Johann Bodin +E01-10 M Gideon Jura @Chris Rahn +E01-13 C Grasp of the Hieromancer @Igor Kieryluk +E01-21 M Sun Titan @Todd Lockwood +E01-25 C Ior Ruin Expedition @Chris Rahn +E01-30 C Windrider Eel @Austin Hsu +E01-37 U Reckless Spite @Karl Kopinski +E01-40 C Battle-Rattle Shaman @Warren Mahy +E01-41 C Blood Ogre @Christopher Moeller +E01-48 U Flametongue Kavu @Slawomir Maniak +E01-49 C Gorehorn Minotaurs @Wayne Reynolds +E01-51 U Guttersnipe @Steve Prescott +E01-54 U Lightning Bolt @Christopher Moeller +E01-58 U Stormblood Berserker @Min Yum +E01-59 R Sudden Demise @Dan Murayama Scott +E01-74 C Sylvan Bounty @Chris Rahn +E01-76 U Turntimber Basilisk @Goran Josic +E01-79 U Woodborn Behemoth @Matt Stewart +E01-84 U Extract from Darkness @Dallas Williams +E01-86 U Slave of Bolas @Steve Argyle +E01-89 R Sword of the Animist @Daniel Ljunggren +E02-1 R Beacon of Immortality @Rob Alexander +E02-3 U Path to Exile @Todd Lockwood +E02-8 R Blatant Thievery @Victor Adame Minguez +E02-9 U Concentrate @rk post +E02-23 U Vampire Nighthawk @Jason Chan +E02-31 C Borderland Ranger @Zoltan Boros +E02-38 U Jungle Barrier @Christine Choi +E02-41 U Zealous Persecution @Sara Winters +E02-46 U Jungle Shrine @Rob Alexander +ELD-2 U All That Glitters @Iain McCaig +ELD-3 U Archon of Absolution @Igor Kieryluk +ELD-6 C Bartered Cow @Deruchenko Alexander +ELD-8 R Charming Prince @Randy Vargas +ELD-11 C Faerie Guidemother @Mila Pesic +ELD-12 C Flutterfox @Lucas Graciano +ELD-13 C Fortifying Provisions @Scott Murphy +ELD-14 R Giant Killer @Jesper Ejsing +ELD-18 R Hushbringer @Bastien L. Deharme +ELD-20 R Linden, the Steadfast Queen @Ryan Pancoast +ELD-21 C Lonesome Unicorn @Winona Nelson +ELD-28 U Shepherd of the Flock @Drew Baker +ELD-29 C Shining Armor @Eric Deschamps +ELD-31 C Silverflame Squire @Lie Setiawan +ELD-32 U Syr Alin, the Lion's Claw @Paul Scott Canavan +ELD-34 C True Love's Kiss @Donato Giancola +ELD-40 C Charmed Sleep @Titus Lunter +ELD-48 R Gadwick, the Wizened @Colin Boyer +ELD-54 R Midnight Clock @Alexander Forssberg +ELD-67 U Syr Elenora, the Discerning @Mila Pesic +ELD-68 C Tome Raider @Randy Vargas +ELD-73 C Wishful Merfolk @Livia Prima +ELD-74 C Witching Well @John Avon +ELD-76 C Bake into a Pie @Zoltan Boros +ELD-77 C Barrow Witches @Alex Brock +ELD-81 U Cauldron Familiar @Milivoj Ćeran +ELD-85 U Epic Downfall @Eric Deschamps +ELD-90 U Foulmire Knight @Alex Brock +ELD-97 R Murderous Rider @Josh Hass +ELD-99 U Order of Midnight @Victor Adame Minguez +ELD-102 C Reaper of Night @Jeff Simpson +ELD-104 U Revenge of Ravens @Dmitry Burmak +ELD-107 U Syr Konrad, the Grim @Anna Steinbauer +ELD-114 C Blow Your House Down @Ravenna Tran +ELD-115 R Bonecrusher Giant @Victor Adame Minguez +ELD-120 M Embercleave @Joe Slucher +ELD-122 U Embereth Shieldbreaker @Randy Vargas +ELD-130 U Mad Ratter @Johann Bodin +ELD-131 C Merchant of the Vale @David Gaillet +ELD-137 C Rimrock Knight @Chris Rallis +ELD-146 C Thrill of Possibility @Steve Argyle +ELD-151 U Edgewall Innkeeper @Matt Stewart +ELD-154 C Fierce Witchstalker @Nicholas Gregory +ELD-163 U Keeper of Fables @Alex Konstad +ELD-167 U Oakhame Adversary @Nicholas Gregory +ELD-169 R Once Upon a Time @Matt Stewart +ELD-170 C Outmuscle @Viktor Titov +ELD-171 M Questing Beast @Igor Kieryluk +ELD-172 R Return of the Wildspeaker @Chris Rallis +ELD-173 C Return to Nature @Mark Poole +ELD-175 C Rosethorn Halberd @Kari Christensen +ELD-190 R Faeburrow Elder @Raoul Vitale +ELD-192 U Grumgully, the Generous @Milivoj Ćeran +ELD-196 U Maraleaf Pixie @Matt Cavotta +ELD-198 M Outlaws' Merriment @Suzanne Helmigh +ELD-199 M The Royal Scions @Paul Scott Canavan +ELD-208 U Deathless Knight @Igor Kieryluk +ELD-218 U Enchanted Carriage @Zoltan Boros +ELD-222 U Heraldic Banner @Ravenna Tran +ELD-226 U Lucky Clover @John Stanko +ELD-231 C Signpost Scarecrow @Jung Park +ELD-232 U Sorcerer's Broom @Jung Park +ELD-235 R Stonecoil Serpent @Mark Poole +ELD-237 U Witch's Oven @Alexander Forssberg +ELD-240 R Castle Garenbrig @Adam Paquette +ELD-281 M Brazen Borrower @Iris Compiet +ELD-291 R Bonecrusher Giant @John Severin Brassell +ELD-295 U Beanstalk Giant @Nick Southam +ELD-296 C Curious Pair @Josu Hernaiz +ELD-303 M Kenrith, the Returned King @Kieran Yanner +ELD-309 M Oko, the Trickster @Chris Rallis +ELD-323 R Thorn Mammoth @Svetlin Velinov +ELD-324 M Alela, Artful Provocateur @Grzegorz Rutkowski +ELD-326 M Chulane, Teller of Tales @Victor Adame Minguez +ELD-329 M Korvold, Fae-Cursed King @Wisnu Tan +ELD-331 C Arcane Signet @Dan Murayama Scott +ELD-332 R Tome of Legends @Mila Pesic +EMA-2 M Balance @Kev Walker +EMA-3 C Ballynock Cohort @Jesper Ejsing +EMA-6 C Coalition Honor Guard @Eric Peterson +EMA-14 C Humble @Chris Rallis +EMA-18 C Kor Hookmaster @Wayne Reynolds +EMA-25 C Rally the Peasants @Jaime Jones +EMA-26 C Seal of Cleansing @Noah Bradley +EMA-34 U Wall of Omens @James Paick +EMA-45 C Deep Analysis @Jesper Ejsing +EMA-47 C Dream Twist @Dan Murayama Scott +EMA-51 C Gaseous Form @Roger Raupp +EMA-60 C Memory Lapse @Greg Staples +EMA-66 U Phyrexian Ingester @Chris Rahn +EMA-67 U Prodigal Sorcerer @Eric Deschamps +EMA-70 R Serendib Efreet @Matt Stewart +EMA-73 U Sprite Noble @Randy Gallegos +EMA-75 C Tidal Wave @Brian Snõddy +EMA-76 C Warden of Evos Isle @Nils Hamm +EMA-78 U Animate Dead @Bastien L. Deharme +EMA-79 U Annihilate @Kev Walker +EMA-80 C Blightsoil Druid @Nils Hamm +EMA-83 U Cabal Therapy @Raymond Swanland +EMA-85 C Deadbridge Shaman @Nils Hamm +EMA-86 C Duress @Steven Belledin +EMA-88 C Eyeblight's Ending @Ron Spears +EMA-90 U Havoc Demon @Jack Wang +EMA-92 U Hymn to Tourach @Greg Staples +EMA-94 C Innocent Blood @Carl Critchlow +EMA-100 C Night's Whisper @John Severin Brassell +EMA-104 C Prowling Pangolin @Tomasz Jedruszek +EMA-105 U Sengir Autocrat @Aaron Miller +EMA-107 C Skulking Ghost @Robert Bliss +EMA-111 C Urborg Uprising @Adam Rex +EMA-112 M Vampiric Tutor @Raymond Swanland +EMA-115 C Wake of Vultures @Jeff Miracola +EMA-117 C Avarax @Greg Staples +EMA-118 U Battle Squadron @Mark Tedin +EMA-131 U Flame Jab @rk post +EMA-134 U Honden of Infinite Rage @John Avon +EMA-137 C Kird Ape @Terese Nielsen +EMA-139 C Mogg War Marshal @Jesper Ejsing +EMA-140 C Orcish Oriflamme @Ben Thompson +EMA-141 U Price of Progress @Yohann Schepacz +EMA-146 C Seismic Stomp @Chase Stone +EMA-152 C Undying Rage @Scott M. Fischer +EMA-153 C Wildfire Emissary @Richard Kane Ferguson +EMA-156 C Abundant Growth @Vincent Proce +EMA-157 U Ancestral Mask @Magali Villeneuve +EMA-162 C Commune with the Gods @Aleksi Briclot +EMA-163 C Elephant Guide @Tomasz Jedruszek +EMA-167 C Fog @Jaime Jones +EMA-179 C Nimble Mongoose @Kev Walker +EMA-183 C Roots @Scott Murphy +EMA-184 C Seal of Strength @Noah Bradley +EMA-190 U Timberwatch Elf @Yohann Schepacz +EMA-195 U Armadillo Cloak @Wayne Reynolds +EMA-198 R Brago, King Eternal @Karla Ortiz +EMA-201 U Flame-Kin Zealot @Arnie Swekel +EMA-203 R Goblin Trenches @Filip Burburan +EMA-218 U Ashnod's Altar @Greg Staples +EMA-221 U Emmessi Tome @Craig J Spearing +EMA-225 M Mana Crypt @Matt Stewart +EMA-226 U Millikin @Alex Horley-Orlandelli +EMA-232 R Sensei's Divining Top @Rob Alexander +EMN-5 R Elder Deep-Fiend @Jason Felix +EMN-9 U Lashweed Lurker @Igor Kieryluk +EMN-12 C Wretched Gryff @Darek Zabrocki +EMN-14 C Borrowed Grace @Volkan Baǵa +EMN-21 C Desperate Sentry @Mathias Kollros +EMN-24 U Faith Unbroken @Kev Walker +EMN-25 C Faithbearer Paladin @Aaron Miller +EMN-36 U Peace of Mind @Christopher Moeller +EMN-40 R Selfless Spirit @Seb McKinnon +EMN-47 R Thalia's Lancers @David Palumbo +EMN-48 C Thraben Standard Bearer @Volkan Baǵa +EMN-52 C Contingency Plan @Ryan Yee +EMN-53 C Convolute @Viktor Titov +EMN-55 C Displace @Clint Cearley +EMN-58 C Enlightened Maniac @Jaime Jones +EMN-60 C Fogwalker @Seb McKinnon +EMN-67 C Laboratory Brute @Yeong-Hao Han +EMN-78 C Turn Aside @Jaime Jones +EMN-79 U Unsubstantiate @Victor Adame Minguez +EMN-81 C Boon of Emrakul @Svetlin Velinov +EMN-84 C Certain Death @Kev Walker +EMN-85 R Collective Brutality @Johann Bodin +EMN-93 M Liliana, the Last Hope @Anna Steinbauer +EMN-108 C Thraben Foulbloods @Deruchenko Alexander +EMN-111 R Voldaren Pariah @James Ryman +EMN-113 C Weirded Vampire @David Gaillet +EMN-116 C Alchemist's Greeting @Jakub Kasper +EMN-121 C Borrowed Hostility @Volkan Baǵa +EMN-122 C Brazen Wolves @Nils Hamm +EMN-126 C Distemper of the Blood @Ben Maier +EMN-139 C Prophetic Ravings @Lucas Graciano +EMN-147 C Thermo-Alchemist @Raymond Swanland +EMN-150 C Backwoods Survivalists @Chris Rallis +EMN-154 C Crossroads Consecrator @David Gaillet +EMN-155 R Eldritch Evolution @Jason Rainville +EMN-161 U Hamlet Captain @Wayne Reynolds +EMN-162 M Ishkanah, Grafwidow @Christine Choi +EMN-164 U Noose Constrictor @Igor Kieryluk +EMN-178 C Wolfkin Bond @Lindsey Look +EMN-182 U Campaign of Vengeance @Igor Kieryluk +EMN-183 M Gisa and Geralf @Karla Ortiz +EMN-186 U Mercurial Geists @Lake Hurwitz +EMN-205 U Nephalia Academy @Adam Paquette +EVE-3 C Cenn's Enlistment @Matt Cavotta +EVE-6 U Flickerwisp @Jeremy Enecio +EVE-13 C Recumbent Bliss @Todd Lockwood +EVE-15 U Springjack Shepherd @Thomas Denmark +EVE-39 R Needle Specter @Christopher Moeller +EVE-41 C Raven's Crime @Warren Mahy +EVE-45 U Soul Snuffers @Izzy +EVE-54 U Hatchet Bully @Paul Bonner +EVE-62 R Stigma Lasher @Aleksi Briclot +EVE-66 R Bloom Tender @Chippy +EVE-68 R Helix Pinnacle @Dan Murayama Scott +EVE-75 U Savage Conception @William O'Connor +EVE-80 C Wickerbough Elder @Jesper Ejsing +EVE-81 U Batwing Brume @Richard Kane Ferguson +EVE-83 U Bloodied Ghost @Mike Dringenberg +EVE-96 C Unmake @Steven Belledin +EVE-103 C Inside Out @Zoltan Boros & Gabor Szikszai +EVE-106 C Noggle Bandit @Thomas Denmark +EVE-108 U Noggle Hedge-Mage @Larry MacDougall +EVE-132 R Balefire Liege @Ralph Horsley +EVE-137 U Duergar Hedge-Mage @Dave Allsop +EVE-143 U Moonhold @Mike Dringenberg +EVE-147 U Spitemare @Matt Cavotta +EVE-152 U Gilder Bairn @Nils Hamm +EVE-156 R Murkfiend Liege @Carl Critchlow +EVE-160 C Slippery Bogle @Dave Allsop +EVE-172 R Scarecrone @Jesper Ejsing +EVG-1 R Ambush Commander @Lucio Parrillo +EVG-4 U Elvish Harbinger @Larry MacDougall +EXO-11 R Oath of Lieges @Mark Zug +EXO-14 U Pegasus Stampede @Mark Zug +EXO-17 U Reconnaissance @Val Mayerik +EXO-32 R Equilibrium @Jeff Miracola +EXO-34 C Fade Away @Jeff Miracola +EXO-35 U Forbid @Scott Kirschner +EXO-37 U Killer Whale @Stephen Daniele +EXO-38 U Mana Breach @Rebecca Guay +EXO-42 R Oath of Scholars @Michael Sutfin +EXO-50 U Treasure Trove @Michael Sutfin +EXO-56 C Cursed Flesh @Ron Spencer +EXO-65 U Keeper of the Dead @Brom +EXO-78 R Volrath's Dungeon @Stephen Daniele +EXO-88 U Mogg Assassin @Dermot Power +EXO-92 C Onslaught @Paolo Parente +EXO-93 R Pandemonium @Pete Venters +EXO-95 U Price of Progress @Richard Kane Ferguson +EXO-99 U Sabertooth Wyvern @Keith Parkinson +EXO-104 U Spellshock @Thomas M. Baxa +EXO-105 C Avenging Druid @Daren Bader +EXO-108 U Crashing Boars @Ron Spencer +EXO-109 U Elven Palisade @Mark Zug +EXO-123 U Skyshroud Elite @Paolo Parente +EXO-128 R Spike Weaver @Mike Raabe +EXO-130 C Wood Elves @Rebecca Guay +EXO-132 R Erratic Portal @John Matson +EXO-142 R Workhorse @DiTerlizzi +FRF-3 C Abzan Runemark @James Ryman +FRF-13 C Great-Horn Krushok @YW Tang +FRF-20 M Monastery Mentor @Magali Villeneuve +FRF-21 C Pressure Point @Chase Stone +FRF-26 C Soul Summons @Johann Bodin +FRF-27 M Soulfire Grand Master @Johannes Voss +FRF-34 U Fascination @Svetlin Velinov +FRF-38 C Jeskai Sage @Craig J Spearing +FRF-47 C Refocus @Kev Walker +FRF-52 R Shu Yun, the Silent Tempest @David Gaillet +FRF-59 C Write into Being @Yeong-Hao Han +FRF-60 C Alesha's Vanguard @Torstein Nordstrand +FRF-61 C Ancestral Vengeance @Yohann Schepacz +FRF-68 C Douse in Gloom @Ryan Yee +FRF-76 U Merciless Executioner @David Palumbo +FRF-77 U Noxious Dragon @Svetlin Velinov +FRF-78 U Orc Sureshot @Kev Walker +FRF-86 C Sultai Runemark @Volkan Baǵa +FRF-90 R Alesha, Who Smiles at Death @Anastasia Ovchinnikova +FRF-96 C Defiant Ogre @Craig J Spearing +FRF-98 C Fierce Invocation @Tyler Jacobson +FRF-103 C Gore Swine @Jack Wang +FRF-104 U Humble Defector @Slawomir Maniak +FRF-106 C Lightning Shrieker @Slawomir Maniak +FRF-111 U Pyrotechnics @Matt Stewart +FRF-116 C Temur Battle Rage @Jaime Jones +FRF-119 U Abzan Beastmaster @Winona Nelson +FRF-127 U Destructor Dragon @Peter Mohrbacher +FRF-128 C Feral Krushok @Kev Walker +FRF-129 C Formless Nurturing @Cliff Childs +FRF-130 C Frontier Mastodon @Nils Hamm +FRF-134 C Map the Wastes @Volkan Baǵa +FRF-138 R Shamanic Revelation @Cynthia Sheppard +FRF-141 U Temur Sabertooth @Mike Sass +FRF-152 C Ethereal Ambush @Lius Lasahido +FRF-153 C Grim Contest @Phill Simmer +FRF-157 R Silumgar, the Drifting Death @Steven Belledin +FRF-163 R Scroll of the Masters @Lake Hurwitz +FUT-12 R Magus of the Moat @John Avon +FUT-17 U Spirit en-Dal @Daren Bader +FUT-25 C Lumithread Field @Scott Altmann +FUT-31 R Seht's Tiger @Thomas Gianni +FUT-35 U Delay @Ron Spears +FUT-41 U Mystic Speculation @Trevor Hairsine +FUT-59 R Spellweaver Volute @Bud Cook +FUT-63 C Augur of Skulls @Chippy +FUT-81 R Bridge from Below @Greg Hildebrandt & Tim Hildebrandt +FUT-87 R Korlash, Heir to Blackblade @Daarken +FUT-91 R Tombstalker @Aleksi Briclot +FUT-99 C Gathan Raiders @Paolo Parente +FUT-101 R Magus of the Moon @Franz Vohwinkel +FUT-114 C Fomori Nomad @Raymond Swanland +FUT-122 U Storm Entity @Lucio Parrillo +FUT-126 R Force of Savagery @Dan Murayama Scott +FUT-127 R Heartwood Storyteller @Anthony S. Waters +FUT-132 R Magus of the Vineyard @Jim Murray +FUT-138 C Sprout Swarm @Chippy +FUT-141 C Wrap in Vigor @John Donahue +FUT-146 R Muraganda Petroglyphs @Scott Altmann +FUT-147 U Nacatl War-Pride @James Kei +FUT-153 R Tarmogoyf @Justin Murray +FUT-155 C Virulent Sliver @Franz Vohwinkel +FUT-156 R Glittering Wish @John Donahue +FUT-157 R Jhoira of the Ghitu @Kev Walker +FUT-159 R Akroma's Memorial @Dan Murayama Scott +FUT-160 R Cloud Key @Trevor Hairsine +FUT-161 R Coalition Relic @Donato Giancola +FUT-167 R Darksteel Garrison @David Martin +FUT-173 U Tolaria West @Khang Le +FUT-174 U Dryad Arbor @Eric Fortune +GK1-8 U Call of the Nightwing @Adam Paquette +GK1-10 R Consuming Aberration @Karl Kopinski +GK1-29 C Electrickery @Greg Staples +GK1-34 U Shattering Spree @Pat Lee +GK1-38 U Gelectrode @Dan Murayama Scott +GK1-47 C Izzet Boilerworks @John Avon +GK1-51 U Darkblast @Randy Gallegos +GK1-53 C Stinkweed Imp @Nils Hamm +GK1-56 C Elves of Deep Shadow @Justin Sweet +GK1-57 R Abrupt Decay @Svetlin Velinov +GK1-62 U Golgari Charm @Zoltan Boros +GK1-64 C Grisly Salvage @Dave Kendall +GK1-68 U Putrefy @Clint Cearley +GK1-78 U Boros Elite @Willian Murai +GK1-79 C Daring Skyjek @Jason Chan +GK1-80 C Bomber Corps @Chase Stone +GK1-85 R Boros Reckoner @Howard Lyon +GK1-90 U Lightning Helix @Kev Walker +GK1-91 C Martial Glory @Raymond Swanland +GK1-102 M Trostani, Selesnya's Voice @Sidharth Chaturvedi +GK1-106 C Scatter the Seeds @Rob Alexander +GK1-115 U Pollenbright Wings @Terese Nielsen +GK1-119 U Selesnya Guildmage @Mark Zug +GK2-2 U Azorius Herald @Justin Sweet +GK2-29 U Belfry Spirit @Daren Bader +GK2-36 U Ultimate Price @Karl Kopinski +GK2-39 R Debtors' Knell @Kev Walker +GK2-53 U Crypt Champion @Pete Venters +GK2-67 U Rakdos Cackler @Ryan Barger +GK2-85 U Wasteland Viper @Lucas Graciano +GK2-88 U Burning-Tree Emissary @Izzy +GK2-118 R Fathom Mage @Ryan Pancoast +GK2-119 R Momir Vig, Simic Visionary @Victor Adame Minguez +GK2-125 U Trygon Predator @Jack Wang +GN2-1 M Highcliff Felidar @Kimonas Theodossiou +GN2-5 M Earthshaker Giant @Milivoj Ćeran +GN2-23 U Rise from the Tides @Dave Kendall +GN2-41 R Lathliss, Dragon Queen @Alex Konstad +GN3-44 C Bushmeat Poacher @Randy Vargas +GN3-62 C Supernatural Stamina @Christopher Moeller +GNT-4 M Goblin Goliath @Slawomir Maniak +GNT-22 U Hydrolash @Clint Cearley +GNT-36 U Zulaport Cutthroat @Jason Rainville +GNT-37 C Bombard @Alex Konstad +GNT-39 C Dragon Fodder @Jaime Jones +GNT-52 U Filigree Familiar @Izzy +GNT-55 U Pilgrim's Eye @Dan Murayama Scott +GPT-3 C Benediction of Moons @Matt Cavotta +GPT-6 R Ghostway @Jim Murray +GPT-18 R Spelltithe Enforcer @Greg Staples +GPT-19 R Storm Herd @Jim Nelson +GPT-20 U To Arms! @Aleksi Briclot +GPT-26 C Gigadrowse @Alex Horley-Orlandelli +GPT-76 R Siege of Towers @Anthony S. Waters +GPT-78 C Tin Street Hooligan @Luca Zontini +GPT-110 R Dune-Brood Nephilim @Jim Murray +GPT-138 R Witch-Maw Nephilim @Greg Staples +GPT-140 R Yore-Tiller Nephilim @Jeremy Jarvis +GPT-142 R Djinn Illuminatus @Carl Critchlow +GPT-162 U Orzhova, the Church of Deals @Martina Pilcerova +GRN-1 C Blade Instructor @Zoltan Boros +GRN-3 C Candlelight Vigil @Alexander Forssberg +GRN-5 C Collar the Culprit @Victor Adame Minguez +GRN-8 R Dawn of Hope @Sung Choi +GRN-14 C Healer's Hawk @Milivoj Ćeran +GRN-17 C Intrusive Packbeast @Jason Felix +GRN-31 C Capture Sphere @Mark Behm +GRN-32 U Chemister's Insight @Josh Hass +GRN-33 U Citywatch Sphinx @Magali Villeneuve +GRN-34 C Dazzling Lights @Robbie Trevino +GRN-42 C Leapfrog @Aaron Miller +GRN-43 C Maximize Altitude @Mike Bierek +GRN-45 U Murmuring Mystic @Mark Winters +GRN-57 C Vedalken Mesmerist @Zezhou Chen +GRN-60 C Wishcoin Crab @James Paick +GRN-62 C Bartizan Bats @Nils Hamm +GRN-67 C Dead Weight @Lake Hurwitz +GRN-76 C Mephitic Vapors @Darek Zabrocki +GRN-80 C Never Happened @Aaron Miller +GRN-82 U Plaguecrafter @Anna Steinbauer +GRN-85 C Severed Strands @Zack Stella +GRN-92 C Barging Sergeant @Filip Burburan +GRN-95 C Cosmotronic Wave @Titus Lunter +GRN-96 C Direct Current @Dan Murayama Scott +GRN-97 U Electrostatic Field @Dan Murayama Scott +GRN-103 U Goblin Cratermaker @Svetlin Velinov +GRN-104 C Goblin Locksmith @Mark Behm +GRN-105 C Gravitic Punch @Randy Vargas +GRN-108 U Lava Coil @Wesley Burt +GRN-111 C Maximize Velocity @Svetlin Velinov +GRN-118 C Sure Strike @Steve Argyle +GRN-119 C Torch Courier @Mark Zug +GRN-120 C Wojek Bodyguard @Tyler Walpole +GRN-121 U Affectionate Indrik @Steve Prescott +GRN-123 R Beast Whisperer @Matt Stewart +GRN-125 U Circuitous Route @Milivoj Ćeran +GRN-126 C Crushing Canopy @Simon Dominic +GRN-135 C Kraul Foragers @Aaron Miller +GRN-136 U Kraul Harpooner @Kev Walker +GRN-138 M Nullhide Ferox @Filip Burburan +GRN-139 C Pack's Favor @Lius Lasahido +GRN-143 C Prey Upon @G-host Lee +GRN-144 C Siege Wurm @Filip Burburan +GRN-156 U Boros Challenger @Gabor Szikszai +GRN-168 R Emmara, Soul of the Accord @Mark Winters +GRN-176 C Hammer Dropper @Lake Hurwitz +GRN-178 C Hypothesizzle @Chris Seaman +GRN-181 U Join Shields @Winona Nelson +GRN-184 M Lazav, the Multifarious @Yongjae Choi +GRN-192 R Niv-Mizzet, Parun @Svetlin Velinov +GRN-194 U Ochran Assassin @Anna Steinbauer +GRN-197 C Rosemane Centaur @Nils Hamm +GRN-206 U Thought Erasure @Anna Steinbauer +GRN-214 U Wee Dragonauts @Greg Staples +GRN-224 R Expansion // Explosion @Deruchenko Alexander +GRN-233 R Chromatic Lantern @Jung Park +GRN-243 C Boros Guildgate @Titus Lunter +GRN-245 C Dimir Guildgate @Cliff Childs +GRN-247 C Gateway Plaza @Jedd Chevrier +GRN-248 C Golgari Guildgate @Eytan Zana +GRN-251 C Izzet Guildgate @Kirsten Zirngibl +GRN-255 C Selesnya Guildgate @Dimitar Marinski +GS1-3 C Purple-Crystal Crab @Tan Yan Yao +GS1-5 C Welkin Tern @Yutaka Li +GS1-8 C Nine-Tail White Fox @林玄泰 +GS1-10 U Moon-Eating Dog @Tingting Yeh +GS1-12 R Ancestor Dragon @Shinchuen Chen +GS1-13 C Cloak of Mists @Tingting Yeh +GS1-16 C Dragon's Presence @Tan Yan Yao +GS1-17 U Brilliant Plan @Yutaka Li +GS1-23 C Leopard-Spotted Jiao @Shinchuen Chen +GS1-28 C Ferocious Zheng @Yutaka Li +GS1-34 C Aggressive Instinct @Wolk Sheep +GS1-37 C Cleansing Screech @Tingting Yeh +GTC-26 C Syndic of Tithes @Steve Prescott +GTC-33 R Diluvian Primordial @Stephan Martiniere +GTC-81 U Thrull Parasite @Clint Cearley +GTC-82 U Undercity Informer @Raymond Swanland +GTC-91 R Five-Alarm Fire @Karl Kopinski +GTC-102 C Mugging @Greg Staples +GTC-142 R Assemble the Legion @Eric Deschamps +GTC-144 M Aurelia's Fury @Tyler Jacobson +GTC-146 R Biovisionary @Ryan Barger +GTC-147 M Borborygmos Enraged @Aleksi Briclot +GTC-149 U Call of the Nightwing @Adam Paquette +GTC-173 C Kingpin's Pet @Mark Zug +GTC-203 R Unexpected Results @Mike Bierek +GTC-213 R Biomass Mutation @Dan Murayama Scott +GTC-231 R Illusionist's Bracers @Svetlin Velinov +GTC-248 R Thespian's Stage @John Avon +GVL-48 R Bad Moon @Gary Leach +H09-26 U Heartstone @John Matson +HOP-32 U Incremental Blight @Chuck Lukacs +HOP-81 R Verdant Force @DiTerlizzi +HOP-112 R Door to Nothingness @Puddnhead +HOP-121 U Nuisance Engine @Stephen Tappin +HOP-128 C Suntouched Myr @Greg Hildebrandt +HOU-2 R Adorned Pouncer @Slawomir Maniak +HOU-6 M Crested Sunmare @Lucas Graciano +HOU-9 C Disposal Mummy @Gabor Szikszai +HOU-11 C Djeru's Renunciation @Kieran Yanner +HOU-14 C God-Pharaoh's Faithful @Bastien L. Deharme +HOU-24 C Steadfast Sentinel @Karl Kopinski +HOU-47 C Strategic Planning @Matt Stewart +HOU-48 C Striped Riverwinder @Craig J Spearing +HOU-49 U Supreme Will @Alayna Danner +HOU-67 C Lethal Sting @Randy Vargas +HOU-70 C Marauding Boneslasher @Victor Adame Minguez +HOU-75 C Ruin Rat @Shreya Shetty +HOU-76 C Scrounger of Souls @Zezhou Chen +HOU-77 R Torment of Hailfire @Grzegorz Rutkowski +HOU-79 C Torment of Venom @Johann Bodin +HOU-83 U Abrade @Florian de Gesincourt +HOU-84 C Blur of Blades @Anna Steinbauer +HOU-92 C Firebrand Archer @John Stanko +HOU-93 C Frontline Devastator @Tommy Arnold +HOU-95 C Granitic Titan @Yohann Schepacz +HOU-99 U Inferno Jet @Jakub Kasper +HOU-100 C Khenra Scrapper @Jesper Ejsing +HOU-111 C Beneath the Sands @Magali Villeneuve +HOU-112 C Bitterbow Sharpshooters @Bram Sels +HOU-115 C Feral Prowler @Ben Wootten +HOU-141 U Obelisk Spider @YW Tang +HOU-143 U River Hoopoe @Ryan Pancoast +HOU-149 U Consign // Oblivion @Sidharth Chaturvedi +HOU-150 U Claim // Fame @Jason Rainville +HOU-155 R Grind // Dust @Josh Hass +HOU-161 R God-Pharaoh's Gift @Titus Lunter +HOU-166 U Sunset Pyramid @Jonas De Ro +HOU-177 U Hashep Oasis @Jonas De Ro +HOU-181 U Ramunap Ruins @Florian de Gesincourt +HOU-184 C Survivors' Encampment @Jonas De Ro +HOU-195 L Swamp @Mark Zug +HOU-198 L Forest @Titus Lunter +HOU-199 L Forest @Mark Poole +HOU-207 C Zealot of the God-Pharaoh @Gabor Szikszai +IKO-17 C Imposing Vantasaur @Jonathan Kuo +IKO-32 U Splendor Mare @Lucas Graciano +IKO-47 C Dreamtail Heron @Caio Monteiro +IKO-57 U Mystic Subdual @Filip Burburan +IKO-59 U Neutralize @Yongjae Choi +IKO-61 U Ominous Seas @Vincent Proce +IKO-73 U Bastion of Remembrance @Volkan Baǵa +IKO-75 C Blood Curdle @Antonio José Manzanedo +IKO-90 U Grimdancer @Randy Vargas +IKO-91 U Heartless Act @Ryan Pancoast +IKO-100 C Suffocating Fumes @Anastasia Ovchinnikova +IKO-102 C Unexpected Fangs @Jesper Ejsing +IKO-104 U Void Beckoner @Daarken +IKO-117 U Flame Spill @Zoltan Boros +IKO-118 U Footfall Crater @Ravenna Tran +IKO-125 M Lukka, Coppercoat Outcast @Chris Rallis +IKO-136 C Shredded Sails @Titus Lunter +IKO-141 R Yidaro, Wandering Monster @Jesper Ejsing +IKO-151 U Exuberant Wolfbear @Jesper Ejsing +IKO-170 C Ram Through @Zoltan Boros +IKO-171 C Sudden Spinnerets @Nicholas Gregory +IKO-174 U Titanoth Rex @Svetlin Velinov +IKO-176 C Wilt @Volkan Baǵa +IKO-184 R Eerie Ultimatum @Jason A. Engle +IKO-187 M General Kudro of Drannith @Ryan Pancoast +IKO-192 M Kinnan, Bonder Prodigy @Jason Rainville +IKO-245 R Bonders' Enclave @Cliff Childs +IKO-250 R Ketria Triome @Sam Burley +IKO-285 U Pouncing Shoreshark @Daniel Warren Johnson +IKO-304 U Parcelbeast @Justine Mara Andersen +IMA-6 C Angel of Mercy @Volkan Baǵa +IMA-9 R Auriok Champion @Eric Deschamps +IMA-12 C Benevolent Ancestor @Nick Percival +IMA-17 C Dragon Bell Monk @Lius Lasahido +IMA-18 M Elesh Norn, Grand Cenobite @Igor Kieryluk +IMA-19 C Emerge Unscathed @Steve Argyle +IMA-21 U Great Teacher's Decree @Zoltan Boros +IMA-23 C Guided Strike @Dave Dorman +IMA-25 C Iona's Judgment @Mike Bierek +IMA-27 C Pentarch Ward @Dany Orizio +IMA-32 C Stalwart Aven @Scott Murphy +IMA-34 C Survival Cache @Scott Chou +IMA-38 U Wing Shards @Daren Bader +IMA-39 R Yosei, the Morning Star @Chris Rahn +IMA-41 C Amass the Components @Matt Stewart +IMA-43 C Bewilder @Ralph Horsley +IMA-46 U Condescend @Kieran Yanner +IMA-48 R Cryptic Command @Jason Rainville +IMA-50 C Diminish @Eric Deschamps +IMA-52 U Distortion Strike @Goran Josic +IMA-53 C Doorkeeper @Kev Walker +IMA-60 C Jace's Phantasm @Johann Bodin +IMA-64 U Mahamoti Djinn @Greg Staples +IMA-67 C Mnemonic Wall @Trevor Claxton +IMA-71 C Riverwheel Aerialists @Jack Wang +IMA-75 R Teferi, Mage of Zhalfir @Volkan Baǵa +IMA-76 C Thought Scour @David Rapoza +IMA-79 C Bala Ged Scorpion @Daarken +IMA-80 C Balustrade Spy @Jaime Jones +IMA-84 C Butcher's Glee @Jesper Ejsing +IMA-85 C Child of Night @Ash Wood +IMA-86 C Dead Reveler @David Palumbo +IMA-89 C Eternal Thirst @Clint Cearley +IMA-90 C Festering Newt @Eric Deschamps +IMA-94 U Indulgent Tormentor @Wesley Burt +IMA-101 M Ob Nixilis, the Fallen @Jason Felix +IMA-103 C Rakdos Drake @Karl Kopinski +IMA-106 R Rune-Scarred Demon @Michael Komarck +IMA-113 C Virulent Swipe @Raymond Swanland +IMA-115 C Wrench Mind @Pete Venters +IMA-116 R Anger of the Gods @Noah Bradley +IMA-124 C Dragon Egg @Jack Wang +IMA-128 U Fireball @Dave Dorman +IMA-129 C Furnace Whelp @Shreya Shetty +IMA-130 C Fury Charm @John Avon +IMA-131 U Guttersnipe @Mathias Kollros +IMA-132 C Hammerhand @Tomasz Jedruszek +IMA-134 U Hoarding Dragon @Matt Cavotta +IMA-135 C Keldon Halberdier @Paolo Parente +IMA-137 C Kiln Fiend @Adi Granov +IMA-140 U Monastery Swiftspear @Steve Argyle +IMA-147 U Staggershock @Raymond Swanland +IMA-152 M Urabrask the Hidden @Brad Rigney +IMA-153 C Vent Sentinel @Chris Rahn +IMA-155 U Assault Formation @Kieran Yanner +IMA-158 C Crowned Ceratok @Steve Prescott +IMA-160 C Durkwood Baloth @Dan Frazier +IMA-165 C Greater Basilisk @James Ryman +IMA-166 U Heroes' Bane @Raymond Swanland +IMA-172 R Jugan, the Rising Star @Filip Burburan +IMA-175 U Lure @D. Alexander Gregory +IMA-177 C Nature's Claim @Raoul Vitale +IMA-180 U Overgrown Battlement @Franz Vohwinkel +IMA-182 C Prey's Vengeance @Jesper Ejsing +IMA-185 C Search for Tomorrow @Randy Gallegos +IMA-191 C Wildsize @Jim Murray +IMA-192 U Azorius Charm @Zoltan Boros +IMA-193 U Bladewing the Risen @Seb McKinnon +IMA-197 U Corpsejack Menace @Chris Rahn +IMA-206 U Rosheen Meanderer @Aleksi Briclot +IMA-210 R Supreme Verdict @Sam Burley +IMA-219 C Mind Stone @Adam Rex +IMA-221 U Mishra's Bauble @Chippy +IMA-222 C Moonglove Extract @Terese Nielsen +IMA-230 U Thran Dynamo @Ron Spears +IMA-231 U Trepanation Blade @Daniel Ljunggren +IMA-241 U Izzet Boilerworks @John Avon +INV-13 R Death or Glory @Jeff Easley +INV-24 U Pledge of Loyalty @Franz Vohwinkel +INV-34 R Rout @Ron Spencer +INV-49 R Collective Restraint @Alan Rabinowitz +INV-53 C Dream Thrush @D. J. Cleland-Hura +INV-54 R Empress Galina @Matt Cavotta +INV-60 U Manipulate Fate @John Matson +INV-66 C Probe @Eric Peterson +INV-84 U Vodalian Hypnotist @Rebecca Guay +INV-114 C Phyrexian Battleflies @Dan Frazier +INV-116 R Phyrexian Infiltrator @Darrell Riche +INV-119 U Plague Spitter @Chippy +INV-135 R Yawgmoth's Agenda @Arnie Swekel +INV-138 U Breath of Darigaaz @Greg Hildebrandt & Tim Hildebrandt +INV-144 R Ghitu Fire @Glen Angus +INV-154 R Mages' Contest @Bradley Williams +INV-156 R Obliterate @Kev Walker +INV-167 U Shivan Harvest @Daren Bader +INV-184 U Canopy Surge @Matt Cavotta +INV-186 R Elvish Champion @D. Alexander Gregory +INV-213 U Tangle @John Avon +INV-225 C Whip Silk @Dave Dorman +INV-228 U Angelic Shield @Adam Rex +INV-233 U Aura Shards @Ron Spencer +INV-234 U Backlash @Chippy +INV-244 R Dromar, the Banisher @Dave Dorman +INV-253 R Kangee, Aerie Keeper @Mark Romanoski +INV-281 R Tsabo Tavoc @Michael Sutfin +INV-290 C Yavimaya Barbarian @Don Hazeltine +INV-299 U Chromatic Sphere @Luca Zontini +INV-304 R Juntu Stakes @Mark Brill +INV-308 R Planar Portal @Mark Tedin +INV-309 U Power Armor @Doug Chaffee +INV-313 R Tek @Chippy +INV-330 U Urborg Volcano @Tony Szczudlo +ISD-19 U Intangible Virtue @Clint Cearley +ISD-60 U Invisible Stalker @Bud Cook +ISD-61 R Laboratory Maniac @Jason Felix +ISD-71 R Rooftop Storm @John Stanko +ISD-78 R Snapcaster Mage @Volkan Baǵa +ISD-97 U Diregraf Ghoul @Dave Kendall +ISD-122 U Unburial Rites @Ryan Pancoast +ISD-129 M Balefire Dragon @Eric Deschamps +ISD-181 M Garruk Relentless @Eric Deschamps +ISD-183 C Gnaw to the Bone @Scott Chou +ISD-186 R Gutter Grime @Erica Yang +ISD-195 C Moonmist @Ryan Yee +ISD-206 C Travel Preparations @Vincent Proce +ISD-226 M Grimoire of the Dead @Steven Belledin +ISD-236 R Witchbane Orb @John Avon +ISD-237 C Wooden Stake @David Palumbo +J22-51 U Planar Atlas @Alexander Forssberg +J22-156 C Blessed Defiance @Kim Sokol +J22-269 C Amoeboid Changeling @Nils Hamm +J22-387 C Chittering Rats @Yeong-Hao Han +J22-526 C Electric Revelation @Liiga Smilshkalne +J22-540 C Go for Blood @Chris Rallis +J22-803 C Universal Automaton @Ben Maier +JMP-4 U Release the Dogs @Jason Kang +JMP-6 U Stone Haven Pilgrim @Cristi Balanescu +JMP-7 U Supply Runners @Chris Seaman +JMP-10 M Bruvac the Grandiloquent @Ekaterina Burmak +JMP-13 R Ormos, Archive Keeper @G-host Lee +JMP-15 R Kels, Fight Fixer @Magali Villeneuve +JMP-18 R Witch of the Moors @Caio Monteiro +JMP-24 R Muxus, Goblin Grandee @Dmitry Burmak +JMP-26 U Spiteful Prankster @Antonio José Manzanedo +JMP-41 L Plains @Donato Giancola +JMP-43 L Plains @Lius Lasahido +JMP-45 L Plains @Johannes Voss +JMP-46 L Island @Mauricio Calle +JMP-47 L Island @Sung Choi +JMP-50 L Island @Piotr Dura +JMP-52 L Island @Titus Lunter +JMP-59 L Swamp @Adam Paquette +JMP-62 L Mountain @Jonas De Ro +JMP-65 L Mountain @Ralph Horsley +JMP-73 L Forest @Alayna Danner +JMP-74 L Forest @Alayna Danner +JMP-76 L Forest @Adam Paquette +JMP-78 C Terramorphic Expanse @Andreas Rocha +JMP-231 R Exquisite Blood @Cynthia Sheppard +JMP-304 U Cinder Elemental @Svetlin Velinov +JOU-5 U Banishing Light @Willian Murai +JOU-10 U Eidolon of Rhetoric @Ryan Yee +JOU-14 C Lagonna-Band Trailblazer @James Zapata +JOU-35 U Dakra Mystic @Wesley Burt +JOU-65 R Dictate of Erebos @Michael C. Hayes +JOU-66 R Doomwake Giant @Kev Walker +JOU-94 R Eidolon of the Great Revel @Cyril Van Der Haegen +JOU-117 U Bassara Tower Archer @Slawomir Maniak +JOU-122 R Eidolon of Blossoms @Min Yum +JOU-146 M Athreos, God of Passage @Ryan Barger +JOU-152 M Kruphix, God of Horizons @Daarken +JOU-153 U Nyx Weaver @Jack Wang +JUD-3 U Battle Screech @Randy Gallegos +JUD-5 C Benevolent Bodyguard @Roger Raupp +JUD-8 U Chastise @Carl Critchlow +JUD-16 U Phantom Flock @David Martin +JUD-18 C Prismatic Strands @Eric Peterson +JUD-25 U Soulcatchers' Aerie @Rob Alexander +JUD-40 U Flash of Insight @Ben Thompson +JUD-46 C Mental Note @Bradley Williams +JUD-53 U Web of Inertia @Don Hazeltine +JUD-66 U Filth @Thomas M. Baxa +JUD-72 U Stitch Together @Arnie Swekel +JUD-76 C Treacherous Werewolf @Mark Tedin +JUD-77 U Anger @John Avon +JUD-78 C Arcane Teachings @Mark Brill +JUD-84 R Dwarven Bloodboiler @Arnie Swekel +JUD-88 U Firecat Blitz @David Martin +JUD-89 C Flaring Pain @Glen Angus +JUD-94 C Lava Dart @Darrell Riche +JUD-97 U Planar Chaos @Ron Spencer +JUD-101 U Swelter @Ben Thompson +JUD-103 R Worldgorger Dragon @Wayne England +JUD-119 U Grizzly Fate @Dave Dorman +JUD-120 C Harvester Druid @David Martin +JUD-127 U Phantom Centaur @Carl Critchlow +JUD-129 C Phantom Tiger @Brian Snõddy +JUD-131 U Serene Sunset @David Martin +KHC-19 U Banishing Light @Willian Murai +KHC-35 U Wall of Omens @James Paick +KHC-39 C Ghostly Flicker @Raymond Swanland +KHC-43 C Sea Gate Oracle @Daniel Ljunggren +KHC-90 U Poison-Tip Archer @Dmitry Burmak +KHC-91 U Putrefy @Clint Cearley +KHM-6 U Clarion Spirit @Anastasia Ovchinnikova +KHM-24 R Righteous Valkyrie @Chris Rahn +KHM-27 R Search for Glory @Kieran Yanner +KHM-47 C Berg Strider @Filip Burburan +KHM-50 R Cosima, God of the Voyage @Micah Epstein +KHM-52 R Cyclone Summoner @Andrey Kuzinskiy +KHM-68 C Mistwalker @Steve Prescott +KHM-84 C Demonic Gifts @Kekai Kotaki +KHM-111 C Skull Raid @Igor Kieryluk +KHM-114 M Valki, God of Lies @Yongjae Choi +KHM-121 C Axgard Cavalry @Evyn Fong +KHM-128 U Crush the Weak @Lucas Graciano +KHM-133 U Dwarven Hammer @Raoul Vitale +KHM-139 M Goldspan Dragon @Andrew Mar +KHM-142 R Magda, Brazen Outlaw @Slawomir Maniak +KHM-164 C Broken Wings @Lars Grant-West +KHM-166 U Elven Bow @Dallas Williams +KHM-170 U Fynn, the Fangbearer @Lie Setiawan +KHM-174 C Guardian Gladewalker @Mila Pesic +KHM-178 C Jaspera Sentinel @Raoul Vitale +KHM-181 R Kolvori, God of Kinship @Grzegorz Rutkowski +KHM-184 C Masked Vandal @Jason A. Engle +KHM-186 U Path to the World Tree @Daniel Ljunggren +KHM-188 R Realmwalker @Zack Stella +KHM-192 C Sarulf's Packmate @Ilse Gort +KHM-196 C Struggle for Skemfar @Bram Sels +KHM-198 M Tyvar Kell @Chris Rallis +KHM-205 R The Bears of Littjara @Randy Gallegos +KHM-211 U Forging the Tyrite Sword @Kieran Yanner +KHM-222 U Maja, Bretagard Protector @Lie Setiawan +KHM-223 U Moritte of the Frost @Eric Deschamps +KHM-224 U Narfi, Betrayer King @Daarken +KHM-228 R Sarulf, Realm Eater @Chris Rahn +KHM-229 R Showdown of the Skalds @Steven Belledin +KHM-230 U Svella, Ice Shaper @Andrew Mar +KHM-233 U Vega, the Watcher @Paul Scott Canavan +KHM-235 U Bloodline Pretender @Slawomir Maniak +KHM-237 R Cosmos Elixir @Volkan Baǵa +KHM-239 C Goldvein Pick @Dan Murayama Scott +KHM-240 R Maskwood Nexus @Jason A. Engle +KHM-251 R Barkchannel Pathway @Daniel Ljunggren +KHM-252 R Blightstep Pathway @Ravenna Tran +KHM-254 R Darkbore Pathway @Johannes Voss +KHM-260 R Hengegate Pathway @Yeong-Hao Han +KHM-266 C Rimewood Falls @Piotr Dura +KHM-267 C Shimmerdrift Vale @Titus Lunter +KHM-274 C Woodland Chasm @Titus Lunter +KHM-275 R The World Tree @Anastasia Ovchinnikova +KHM-305 M Orvar, the All-Form @DZO +KHM-380 U Starnheim Aspirant @Kieran Yanner +KHM-381 U Warchanter Skald @Daniel Zrom +KHM-382 U Youthful Valkyrie @Anna Steinbauer +KLD-1 C Acrobatic Maneuver @Winona Nelson +KLD-2 U Aerial Responder @Raoul Vitale +KLD-5 R Authority of the Consuls @Lake Hurwitz +KLD-7 C Built to Last @Svetlin Velinov +KLD-12 C Eddytrail Hawk @James Paick +KLD-13 U Fairgrounds Warden @Izzy +KLD-14 C Fragmentize @Jason Felix +KLD-17 C Glint-Sleeve Artisan @Ryan Pancoast +KLD-22 C Ninth Bridge Patrol @Ryan Alexander Lee +KLD-25 U Refurbish @Johann Bodin +KLD-35 U Wispweaver Angel @James Ryman +KLD-38 C Aether Tradewinds @Lius Lasahido +KLD-42 C Curio Vendor @Igor Kieryluk +KLD-47 C Failed Inspection @Matt Stewart +KLD-51 C Hightide Hermit @Jason Kang +KLD-69 C Weldfast Wingsmith @Dan Murayama Scott +KLD-70 C Wind Drake @Todd Lockwood +KLD-72 C Ambitious Aetherborn @Josu Hernaiz +KLD-76 C Die Young @Ryan Yee +KLD-77 C Dukhara Scavenger @Sidharth Chaturvedi +KLD-80 U Essence Extraction @Min Yum +KLD-83 U Fretwork Colony @Christopher Burdett +KLD-84 R Gonti, Lord of Luxury @Daarken +KLD-86 C Lawless Broker @Darek Zabrocki +KLD-98 C Prakhata Club Security @Igor Kieryluk +KLD-99 C Rush of Vitality @Lindsey Look +KLD-100 C Subtle Strike @David Palumbo +KLD-103 C Tidy Conclusion @Bastien L. Deharme +KLD-105 U Weaponcraft Enthusiast @Mike Bierek +KLD-108 C Built to Smash @Svetlin Velinov +KLD-109 C Cathartic Reunion @Howard Lyon +KLD-112 M Combustible Gearhulk @Daarken +KLD-116 C Giant Spectacle @Johann Bodin +KLD-126 C Reckless Fireweaver @Deruchenko Alexander +KLD-127 C Renegade Tactics @Yeong-Hao Han +KLD-128 C Ruinous Gremlin @Steve Prescott +KLD-129 C Salivating Gremlins @Christopher Burdett +KLD-139 C Wayward Giant @Filip Burburan +KLD-144 U Armorcraft Judge @David Palumbo +KLD-146 U Blossoming Defense @Anastasia Ovchinnikova +KLD-148 C Commencement of Festivities @Zack Stella +KLD-150 U Creeping Mold @Cliff Childs +KLD-160 C Larger Than Life @Jaime Jones +KLD-162 U Nature's Way @Zack Stella +KLD-166 C Peema Outrider @Craig J Spearing +KLD-167 C Riparian Tiger @Igor Kieryluk +KLD-170 C Take Down @Izzy +KLD-172 M Verdurous Gearhulk @Jaime Jones +KLD-177 U Contraband Kingpin @Anna Steinbauer +KLD-181 U Engineered Might @Lake Hurwitz +KLD-186 M Saheeli Rai @Willian Murai +KLD-187 U Unlicensed Disintegration @Izzy +KLD-188 U Veteran Motorist @Christopher Moeller +KLD-192 R Aetherflux Reservoir @Cliff Childs +KLD-198 U Bomat Bazaar Barge @Christine Choi +KLD-207 C Dukhara Peafowl @Craig J Spearing +KLD-210 R Electrostatic Pummeler @Slawomir Maniak +KLD-211 U Fabrication Module @Aaron Miller +KLD-215 U Foundry Inspector @Jason A. Engle +KLD-221 C Metalspinner's Puzzleknot @Vincent Proce +KLD-226 R Panharmonicon @Volkan Baǵa +KLD-227 U Perpetual Timepiece @Cliff Childs +KLD-228 C Prakhata Pillar-Bug @Jason Felix +KLD-235 R Smuggler's Copter @Florian de Gesincourt +KLD-242 U Aether Hub @Sam Burley +KLD-247 R Inventors' Fair @Jonas De Ro +KLD-272 C Terrain Elemental @Magali Villeneuve +KTK-1 U Abzan Battle Priest @Chris Rahn +KTK-2 U Abzan Falconer @Steven Belledin +KTK-3 C Ainok Bond-Kin @Chris Rahn +KTK-10 C Feat of Resistance @David Gaillet +KTK-11 C Firehoof Cavalry @YW Tang +KTK-17 C Mardu Hordechief @Torstein Nordstrand +KTK-22 U Seeker of the Way @Craig J Spearing +KTK-23 C Siegecraft @Viktor Titov +KTK-29 C War Behemoth @Zoltan Boros +KTK-33 C Cancel @Slawomir Maniak +KTK-34 M Clever Impersonator @Slawomir Maniak +KTK-38 U Dragon's Eye Savants @Jason Rainville +KTK-39 C Embodiment of Spring @Wayne Reynolds +KTK-53 U Scion of Glaciers @Titus Lunter +KTK-54 U Set Adrift @Karl Kopinski +KTK-55 C Singing Bell Strike @Chase Stone +KTK-59 C Treasure Cruise @Cynthia Sheppard +KTK-65 C Bitter Revelation @Viktor Titov +KTK-70 C Disowned Ancestor @Zack Stella +KTK-77 C Krumar Bond-Kin @Kev Walker +KTK-81 U Murderous Cut @Yohann Schepacz +KTK-84 C Rakshasa's Secret @Magali Villeneuve +KTK-86 C Rite of the Serpent @Seb McKinnon +KTK-89 C Shambling Attendants @Daarken +KTK-94 C Unyielding Krumar @Viktor Titov +KTK-96 C Ainok Tracker @Evan Shipard +KTK-98 C Arrow Storm @Steve Prescott +KTK-100 C Barrage of Boulders @Zoltan Boros +KTK-101 C Bloodfire Expert @Raymond Swanland +KTK-103 C Bring Low @Slawomir Maniak +KTK-105 C Canyon Lurkers @Cynthia Sheppard +KTK-109 U Goblinslide @Kev Walker +KTK-114 C Leaping Master @Anastasia Ovchinnikova +KTK-117 C Mardu Warshrieker @Yefim Kligerman +KTK-122 C Swift Kick @Mathias Kollros +KTK-125 C Valley Dasher @Matt Stewart +KTK-127 C Alpine Grizzly @John Severin Brassell +KTK-130 U Become Immense @Jaime Jones +KTK-131 C Dragonscale Boon @Mark Winters +KTK-132 C Feed the Clan @Winona Nelson +KTK-137 C Hooting Mandrills @Mike Bierek +KTK-139 C Kin-Tree Warden @Volkan Baǵa +KTK-140 C Longshot Squad @Wesley Burt +KTK-141 R Meandering Towershell @YW Tang +KTK-146 C Sagu Archer @Steven Belledin +KTK-147 C Savage Punch @Wesley Burt +KTK-158 C Woolly Loxodon @Karla Ortiz +KTK-162 C Abzan Guide @Steve Prescott +KTK-165 U Armament Corps @Steven Belledin +KTK-167 U Bear's Companion @Winona Nelson +KTK-177 U Highspire Mantis @Igor Kieryluk +KTK-183 U Kin-Tree Invocation @Ryan Alexander Lee +KTK-184 R Mantis Rider @Johann Bodin +KTK-187 U Mardu Roughrider @Kev Walker +KTK-197 R Savage Knuckleblade @Chris Rahn +KTK-202 M Sorin, Solemn Visitor @Cynthia Sheppard +KTK-204 U Sultai Charm @Mathias Kollros +KTK-205 U Sultai Soothsayer @Cynthia Sheppard +KTK-210 R Utter End @Mark Winters +KTK-212 U Warden of the Eye @Howard Lyon +KTK-219 R Dragon Throne of Tarkir @Daarken +KTK-232 C Dismal Backwater @Sam Burley +KTK-234 U Frontier Bivouac @Titus Lunter +KTK-235 C Jungle Hollow @Eytan Zana +KTK-236 U Mystic Monastery @Florian de Gesincourt +KTK-238 U Opulent Palace @Adam Paquette +KTK-241 U Sandsteppe Citadel @Sam Burley +LCC-154 C Distant Melody @Sam Guay +LCC-181 R Black Market Connections @Lixin Yin +LCC-233 U Beast Within @Jesper Ejsing +LCC-235 C Cultivate @Justyna Dura +LCC-242 C Farseek @Hristo D. Chukov +LCI-393 L Plains @Carlos Palma Cruchaga +LCI-394 L Plains @Adam Paquette +LCI-395 L Island @Néstor Ossandón Leal +LCI-396 L Island @Adam Paquette +LCI-397 L Swamp @Logan Feliciano +LCI-398 L Swamp @Adam Paquette +LCI-399 L Mountain @Muhammad Firdaus +LCI-400 L Mountain @Adam Paquette +LCI-401 L Forest @Carlos Palma Cruchaga +LCI-402 L Forest @Adam Paquette +LGN-12 C Deftblade Elite @Alan Pollack +LGN-25 U Ward Sliver @Pete Venters +LGN-36 R Dreamborn Muse @Kev Walker +LGN-37 C Echo Tracer @Scott M. Fischer +LGN-42 R Keeper of the Nine Gales @Jim Nelson +LGN-50 R Riptide Director @Scott M. Fischer +LGN-52 U Shifting Sliver @Darrell Riche +LGN-59 U Aphetto Exterminator @Scott M. Fischer +LGN-62 U Corpse Harvester @Mark Tedin +LGN-63 C Crypt Sliver @Edward P. Beard, Jr. +LGN-66 R Drinker of Sorrow @Carl Critchlow +LGN-70 C Gempalm Polluter @Dany Orizio +LGN-77 U Noxious Ghoul @Luca Zontini +LGN-80 C Skinthinner @Dany Orizio +LGN-83 U Spectral Sliver @Pete Venters +LGN-84 R Toxin Sliver @Lars Grant-West +LGN-86 U Withered Wretch @Tim Hildebrandt +LGN-88 U Blade Sliver @David Martin +LGN-95 U Goblin Assassin @Dave Dorman +LGN-131 C Krosan Vorine @Carl Critchlow +LGN-132 C Nantuko Vigilante @Alex Horley-Orlandelli +LGN-144 U Wirewood Channeler @Alan Pollack +LRW-3 R Austere Command @Wayne England +LRW-4 C Avian Changeling @Heather Hudson +LRW-7 U Burrenton Forge-Tender @Chuck Lukacs +LRW-9 U Changeling Hero @Jeff Miracola +LRW-10 U Cloudgoat Ranger @Adam Rex +LRW-11 U Crib Swap @Brandon Dorman +LRW-31 R Mirror Entity @Zoltan Boros & Gabor Szikszai +LRW-33 C Oaken Brawler @Jim Murray +LRW-34 C Oblivion Ring @Wayne England +LRW-39 C Shields of Velis Vel @Ralph Horsley +LRW-46 U Veteran of the Depths @Daren Bader +LRW-49 U Wizened Cenn @Kev Walker +LRW-51 C Amoeboid Changeling @Nils Hamm +LRW-56 R Cryptic Command @Wayne England +LRW-61 U Faerie Harbinger @Larry MacDougall +LRW-64 U Familiar's Ruse @Eric Fortune +LRW-66 R Forced Fruition @William O'Connor +LRW-73 U Merrow Harbinger @Steve Prescott +LRW-85 R Shapesharer @Alan Pollack +LRW-87 C Silvergill Douser @Daren Bader +LRW-89 C Spellstutter Sprite @Rebecca Guay +LRW-94 U Turtleshell Changeling @Ron Spencer +LRW-102 U Boggart Harbinger @Steve Prescott +LRW-105 R Cairn Wanderer @Nils Hamm +LRW-115 C Footbottom Feast @Jim Nelson +LRW-119 U Hunter of Eyeblights @Jesper Ejsing +LRW-125 U Marsh Flitter @Wayne Reynolds +LRW-140 C Skeletal Changeling @Alan Pollack +LRW-160 U Changeling Berserker @Warren Mahy +LRW-164 C Fire-Belly Changeling @Randy Gallegos +LRW-167 U Flamekin Harbinger @Steve Prescott +LRW-170 C Giant's Ire @Alex Horley-Orlandelli +LRW-171 U Glarewielder @Nils Hamm +LRW-183 C Lash Out @Scott Hampton +LRW-186 C Needle Drop @Greg Staples +LRW-197 C Battlewand Oak @Steve Prescott +LRW-200 U Changeling Titan @Jesper Ejsing +LRW-203 R Dauntless Dourbark @Jeremy Jarvis +LRW-221 U Incremental Growth @Chuck Lukacs +LRW-235 U Seedguide Ash @John Avon +LRW-242 C Woodland Changeling @Franz Vohwinkel +LRW-247 R Doran, the Siege Tower @Mark Zug +LRW-256 R Dolmen Gate @Richard Sardinha +LRW-260 C Runed Stalactite @Jim Pavelec +LRW-263 R Thousand-Year Elixir @Richard Sardinha +LRW-266 R Ancient Amphitheater @Rob Alexander +LRW-268 R Gilt-Leaf Palace @Christopher Moeller +LRW-272 R Shelldock Isle @Mark Tedin +LRW-277 U Vivid Grove @Howard Lyon +LRW-280 R Wanderwine Hub @Warren Mahy +M10-37 U Undead Slayer @Eric Fortune +M10-41 U White Knight @Christopher Moeller +M10-52 U Fabricate @Warren Mahy +M10-59 C Jump @Eric Deschamps +M10-67 R Polymorph @Robert Bliss +M10-85 U Black Knight @Christopher Moeller +M10-86 U Bog Wraith @Daarken +M10-100 R Hypnotic Specter @Greg Staples +M10-112 C Sign in Blood @Howard Lyon +M10-118 M Vampire Nocturnus @Raymond Swanland +M10-128 C Burning Inquiry @Zoltan Boros & Gabor Szikszai +M10-174 U Cudgel Troll @Jesper Ejsing +M10-190 R Lurking Predators @Mike Bierek +M10-211 U Gorgon Flail @Lars Grant-West +M10-212 R Howling Mine @Ralph Horsley +M10-227 R Rootbound Crag @Matt Stewart +M10-228 R Sunpetal Grove @Jason Chan +M11-20 R Knight Exemplar @Jason Chan +M11-28 R Serra Ascendant @Anthony Palumbo +M11-38 U War Priest of Thune @Izzy +M11-55 M Frost Titan @Mike Bierek +M11-64 R Mass Polymorph @Christopher Moeller +M11-87 R Captivating Vampire @Eric Deschamps +M11-92 M Demon of Death's Gate @Vance Kovacs +M11-103 U Liliana's Caress @Steve Argyle +M11-104 C Liliana's Specter @Vance Kovacs +M11-120 C Viscera Seer @John Stanko +M11-127 M Chandra Nalaar @Aleksi Briclot +M11-153 C Pyretic Ritual @James Paick +M11-177 U Garruk's Packleader @Nils Hamm +M11-181 C Hornet Sting @Matt Stewart +M11-191 C Primal Cocoon @Daniel Ljunggren +M11-206 U Elixir of Immortality @Zoltan Boros & Gabor Szikszai +M11-216 R Sword of Vengeance @Dan Murayama Scott +M11-218 R Triskelion @Christopher Moeller +M11-221 U Whispersilk Cloak @Daren Bader +M12-3 M Angelic Destiny @Jana Schirmer & Johannes Voss +M12-35 U Spirit Mantle @Izzy +M12-37 C Stonehorn Dignitary @Dave Kendall +M12-40 U Timely Reinforcements @Tomasz Jedruszek +M12-59 R Jace's Archivist @James Ryman +M12-82 M Bloodlord of Vaasgoth @Greg Staples +M12-109 M Sorin Markov @Michael Komarck +M12-111 R Sorin's Vengeance @Jana Schirmer & Johannes Voss +M12-140 U Goblin Grenade @Kev Walker +M12-171 R Dungrove Elder @Matt Stewart +M12-181 U Jade Mage @Izzy +M12-197 U Stingerfling Spider @Dave Allsop +M12-199 C Trollhide @Steven Belledin +M12-203 U Crown of Empires @John Avon +M12-204 U Crumbling Colossus @Michael C. Hayes +M12-210 U Kite Shield @Jim Pavelec +M12-218 R Sundial of the Infinite @Vincent Proce +M12-219 U Swiftfoot Boots @Svetlin Velinov +M13-7 C Battleflight Eagle @Kev Walker +M13-19 U Healer of the Pride @Christopher Moeller +M13-23 R Odric, Master Tactician @Michael Komarck +M13-44 R Battle of Wits @Jason Chan +M13-73 U Talrand's Invocation @Svetlin Velinov +M13-105 U Public Execution @Anthony Palumbo +M13-112 U Vampire Nighthawk @Jason Chan +M13-127 U Crimson Muckwader @Steven Belledin +M13-147 C Searing Spear @Chris Rahn +M13-162 R Boundless Realms @Cliff Childs +M13-189 C Sentinel Spider @Vincent Proce +M13-202 U Clock of Omens @Ryan Yee +M13-221 R Cathedral of War @Kekai Kotaki +M14-3 U Angelic Accord @Michael C. Hayes +M14-7 U Banisher Priest @Willian Murai +M14-18 R Fiendslayer Paladin @Wesley Burt +M14-21 C Hive Stirrings @Maciej Kuciara +M14-30 C Sentinel Sliver @Maciej Kuciara +M14-43 C Archaeomancer @Zoltan Boros +M14-88 R Bogbrew Witch @Eric Deschamps +M14-147 U Molten Birth @Jaime Jones +M14-150 C Regathan Firecat @Eric Velhagen +M14-163 U Young Pyromancer @Cynthia Sheppard +M14-170 U Enlarge @Michael Komarck +M14-181 M Kalonian Hydra @Chris Rahn +M14-184 U Manaweft Sliver @Trevor Claxton +M14-190 M Primeval Bounty @Christine Choi +M14-196 C Sporemound @Svetlin Velinov +M14-202 R Witchstalker @Christopher Moeller +M14-212 R Haunted Plate Mail @Izzy +M14-213 U Millstone @Yeong-Hao Han +M14-216 M Ring of Three Wishes @Mark Winters +M15-5 U Boonweaver Giant @Adam Paquette +M15-6 U Congregate @Mark Zug +M15-7 U Constricting Sliver @Karl Kopinski +M15-10 C Divine Favor @Allen Williams +M15-11 C Ephemeral Shields @Yohann Schepacz +M15-17 C Marked by Honor @David Palumbo +M15-19 C Meditation Puzzle @Mark Winters +M15-22 C Oreskos Swiftclaw @James Ryman +M15-35 C Soulmender @James Ryman +M15-40 C Triplicate Spirits @Izzy +M15-45 C Amphin Pathmage @Mark Winters +M15-46 R Chasm Skulker @Jack Wang +M15-48 C Chronostutter @Seb McKinnon +M15-54 U Ensoul Artifact @Jasper Sandner +M15-57 C Glacial Crasher @Mark Winters +M15-61 C Invisibility @Pete Venters +M15-69 U Military Intelligence @Craig J Spearing +M15-70 C Mind Sculpt @Michael C. Hayes +M15-85 C Accursed Spirit @Kev Walker +M15-86 C Black Cat @David Palumbo +M15-91 C Covenant of Blood @Seb McKinnon +M15-92 C Crippling Blight @Lucas Graciano +M15-94 U Endless Obedience @Karl Kopinski +M15-109 U Nightfire Giant @Dave Kendall +M15-111 U Paragon of Open Graves @Min Yum +M15-112 C Rotfeaster Maggot @Yeong-Hao Han +M15-113 C Shadowcloak Vampire @Cynthia Sheppard +M15-116 U Stab Wound @Scott Chou +M15-118 C Typhoid Rats @Kev Walker +M15-126 U Act on Impulse @Brad Rigney +M15-130 C Blastfire Bolt @Phill Simmer +M15-138 C Crowd's Favor @Slawomir Maniak +M15-140 C Forge Devil @Austin Hsu +M15-141 C Foundry Street Denizen @Raoul Vitale +M15-143 C Generator Servant @Mathias Kollros +M15-144 R Goblin Kaboomist @Kev Walker +M15-146 C Goblin Roughrider @Jesper Ejsing +M15-150 C Inferno Fist @James Ryman +M15-152 C Krenko's Enforcer @Karl Kopinski +M15-157 C Miner's Bane @Adam Paquette +M15-163 M Soul of Shandalar @Raymond Swanland +M15-164 U Stoke the Flames @Ryan Barger +M15-167 C Wall of Fire @Dan Dos Santos +M15-168 U Ancient Silverback @Scott M. Fischer +M15-170 C Carnivorous Moss-Beast @Filip Burburan +M15-175 U Gather Courage @Brian Despain +M15-176 R Genesis Hydra @Peter Mohrbacher +M15-177 R Hornet Nest @Adam Paquette +M15-180 C Hunter's Ambush @David Palumbo +M15-193 C Ranger's Guile @Steve Prescott +M15-195 U Restock @Daren Bader +M15-197 C Runeclaw Bear @Jesper Ejsing +M15-201 M Soul of Zendikar @Vincent Proce +M15-205 U Venom Sliver @Dave Kendall +M15-209 R Yisan, the Wanderer Bard @Chase Stone +M15-211 M Sliver Hivelord @Aleksi Briclot +M15-215 M The Chain Veil @Volkan Baǵa +M15-219 U Hot Soup @David Palumbo +M15-223 C Ornithopter @Franz Vohwinkel +M15-231 M Soul of New Phyrexia @Daarken +M19-4 R Ajani's Last Stand @Slawomir Maniak +M19-6 U Ajani's Welcome @Eric Deschamps +M19-15 C Inspired Charge @Wayne Reynolds +M19-18 C Knight of the Tusk @Jesper Ejsing +M19-28 C Mighty Leap @Sidharth Chaturvedi +M19-30 U Novice Knight @Yongjae Choi +M19-32 C Pegasus Courser @Mathias Kollros +M19-38 C Star-Crowned Stag @Jonathan Kuo +M19-40 C Take Vengeance @Randy Vargas +M19-44 C Anticipate @Tyler Jacobson +M19-51 C Divination @Willian Murai +M19-54 C Essence Scatter @Josh Hass +M19-56 C Frilled Sea Serpent @Steven Belledin +M19-61 U Mirror Image @Randy Vargas +M19-68 U Psychic Corrosion @Bastien L. Deharme +M19-74 U Sleep @Chris Rahn +M19-75 C Snapping Drake @Todd Lockwood +M19-79 M Tezzeret, Artifice Master @Josh Hass +M19-82 C Uncomfortable Chill @Izzy +M19-95 C Epicure of Blood @Anna Steinbauer +M19-96 U Fell Specter @Dimitar Marinski +M19-100 C Hired Blade @Mark Behm +M19-116 U Reassembling Skeleton @Austin Hsu +M19-118 C Skeleton Archer @Randy Vargas +M19-121 U Stitcher's Supplier @Chris Seaman +M19-126 C Walking Corpse @Igor Kieryluk +M19-128 R Alpine Moon @Alayna Danner +M19-133 C Crash Through @Izzy +M19-141 C Fire Elemental @Slawomir Maniak +M19-142 C Goblin Instigator @Filip Burburan +M19-143 C Goblin Motivator @Johann Bodin +M19-153 C Onakke Ogre @Mathias Kollros +M19-156 C Shock @Jason Rainville +M19-158 C Smelt @Zoltan Boros +M19-159 C Sparktongue Dragon @Daarken +M19-162 U Tectonic Rift @John Avon +M19-167 U Volcanic Dragon @Chris Rahn +M19-169 U Blanchwood Armor @Paolo Parente +M19-170 C Bristling Boar @Svetlin Velinov +M19-171 C Centaur Courser @Vance Kovacs +M19-174 C Daggerback Basilisk @Jesper Ejsing +M19-177 C Druid of the Cowl @Magali Villeneuve +M19-185 R Gigantosaurus @Jonathan Kuo +M19-185j R Gigantosaurus @Jonathan Kuo +M19-186 R Goreclaw, Terror of Qal Sisma @Svetlin Velinov +M19-187 C Greenwood Sentinel @Johann Bodin +M19-190 C Naturalize @Daniel Ljunggren +M19-202 C Talons of Wildwood @Uriah Voth +M19-204 C Thornhide Wolves @Scott Murphy +M19-205 C Titanic Growth @Ryan Pancoast +M19-207 U Vine Mare @Alex Konstad +M19-208 M Vivien Reid @Anna Steinbauer +M19-212 M Arcades, the Strategist @Even Amundsen +M19-215 U Draconic Disciple @Yongjae Choi +M19-223 U Satyr Enchanter @Sidharth Chaturvedi +M19-225 M Vaevictis Asmadi, the Dire @Steven Belledin +M19-231 U Diamond Mare @Alayna Danner +M19-235 U Fountain of Renewal @Adam Paquette +M19-241 U Meteor Golem @Lake Hurwitz +M19-242 U Millstone @Yeong-Hao Han +M19-245 C Skyscanner @Adam Paquette +M19-246 U Suspicious Bookcase @Anastasia Ovchinnikova +M19-247 R Transmogrifying Wand @Aaron Miller +M19-254 U Reliquary Tower @Jesper Ejsing +M19-285 C Silverbeak Griffin @Viktor Titov +M19-299 U Sarkhan's Whelp @Craig J Spearing +M19-306 M Nexus of Fate @Mike Bierek +M19-309 C Befuddle @Svetlin Velinov +M19-312 C Grasping Scoundrel @Steve Prescott +M19-314 C Llanowar Elves @Chris Rahn +M20-2 M Ajani, Strength of the Pride @Chris Rallis +M20-4 U Angel of Vitality @Johannes Voss +M20-8 R Bishop of Wings @Matt Stewart +M20-9 R Brought Back @Mitchell Malloy +M20-14 C Disenchant @Victor Adame Minguez +M20-32 C Pacifism @Jesper Ejsing +M20-36 R Sephara, Sky's Blade @Livia Prima +M20-54 C Cloudkin Seer @Anastasia Ovchinnikova +M20-66 C Metropolis Sprite @Scott Chou +M20-74 U Scholar of the Ages @Micah Epstein +M20-76 U Spectral Sailor @Cristi Balanescu +M20-84 C Audacious Thief @Dmitry Burmak +M20-86 C Bladebrand @Winona Nelson +M20-87 U Blightbeetle @Jason Kang +M20-91 U Bloodthirsty Aerialist @Igor Kieryluk +M20-92 C Bone Splinters @Cole Eastburn +M20-94 M Cavalier of Night @Viktor Titov +M20-109 C Murder @Allen Williams +M20-111 R Rotting Regisaur @Randy Vargas +M20-120 U Vampire of the Dire Moon @Anna Podedworna +M20-125 M Cavalier of Flame @Wesley Burt +M20-128 U Chandra, Novice Pyromancer @Anna Steinbauer +M20-135 U Dragon Mage @Matthew D. Wilson +M20-150 R Marauding Raptor @Bayard Wu +M20-159 C Scorch Spitter @Johan Grenier +M20-164 U Unchained Berserker @Bram Sels +M20-167 M Cavalier of Thorns @Jehan Choo +M20-186 U Overcome @Craig J Spearing +M20-191 U Season of Growth @Randy Vargas +M20-193 R Shared Summons @Aaron Miller +M20-198 U Veil of Summer @Lake Hurwitz +M20-201 C Vorstclaw @Lucas Graciano +M20-208 U Empyrean Eagle @Jason A. Engle +M20-214 U Moldervine Reclamation @Antonio José Manzanedo +M20-217 U Risen Reef @Johan Grenier +M20-218 U Skyknight Vanguard @Bayard Wu +M20-285 U Twinblade Paladin @Jana Schirmer +M20-291 C Savage Gorger @Antonio José Manzanedo +M20-293 U Thirsting Bloodlord @Joseph Meehan +M20-320 C Bogstomper @Jason Felix +M20-333 C Nimble Birdsticker @Anna Podedworna +M20-336 U Volcanic Dragon @Chris Rahn +M20-344 C Woodland Mystic @Uriah Voth +M21-2 C Alpine Watchdog @Forrest Imel +M21-8 C Basri's Acolyte @Leesha Hannigan +M21-10 U Basri's Solidarity @Paul Scott Canavan +M21-22 U Griffin Aerie @Milivoj Ćeran +M21-27 M Mangara, the Diplomat @Howard Lyon +M21-29 R Pack Leader @Rudy Siswanto +M21-30 C Rambunctious Mutt @Campbell White +M21-32 R Runed Halo @Steve Prescott +M21-38 R Speaker of the Heavens @Randy Vargas +M21-42 C Valorous Steed @Donato Giancola +M21-43 U Vryn Wingmare @Seb McKinnon +M21-71 U Shipwreck Dowser @Caroline Gariba +M21-72 C Spined Megalodon @Daniel Ljunggren +M21-74 R Sublime Epiphany @Lindsey Look +M21-79 U Tide Skimmer @Joseph Meehan +M21-80 U Tolarian Kraken @Svetlin Velinov +M21-84 U Waker of Waves @Svetlin Velinov +M21-89 U Bad Deal @Zoltan Boros +M21-100 C Gloom Sower @Chris Cold +M21-109 U Liliana's Devotee @Colin Boyer +M21-117 R Peer into the Abyss @Izzy +M21-119 C Rise Again @Sean Sevestre +M21-137 C Chandra's Magmutt @Kimonas Theodossiou +M21-139 R Conspicuous Snoop @Zoltan Boros +M21-148 C Goblin Wizardry @Izzy +M21-149 U Havoc Jester @Jason A. Engle +M21-162 R Subira, Tulzidi Caravanner @Leesha Hannigan +M21-176 C Colossal Dreadmaw @Jesper Ejsing +M21-180 R Feline Sovereign @Dan Murayama Scott +M21-186 U Garruk's Uprising @Wisnu Tan +M21-189 C Hunter's Edge @Johann Bodin +M21-190 U Invigorating Surge @Randy Vargas +M21-191 R Jolrael, Mwonvuli Recluse @Izzy +M21-193 C Llanowar Visionary @Cristi Balanescu +M21-198 U Quirion Dryad @Todd Lockwood +M21-216 U Conclave Mentor @Raoul Vitale +M21-223 U Obsessive Stitcher @Joe Slucher +M21-232 R Mazemind Tome @Randy Gallegos +M21-242 R Animal Sanctuary @Alayna Danner +M21-246 R Fabled Passage @Howard Lyon +M21-252 R Temple of Epiphany @Adam Paquette +M21-298 U Liliana's Devotee @Colin Boyer +M21-303 C Chandra's Magmutt @Kimonas Theodossiou +M21-328 M Liliana, Death Mage @Kieran Yanner +M21-335 C Storm Caller @Manuel Castañón +M21-339 C Wildwood Patrol @Dan Murayama Scott +M3C-168 U Crib Swap @Michele Giorgi +M3C-316 R Adarkar Wastes @Piotr Dura +M3C-324 R Brushland @Thomas Stoop +M3C-351 R Karplusan Forest @Sam Burley +M3C-362 R Overflowing Basin @Sarah Finnigan +M3C-363 C Path of Ancestry @Alayna Danner +MAT-12 U Blot Out @Chris Cold +MAT-14 U Markov Baron @Ina Wong +MAT-17 U Kolaghan Warmonger @Andrew Mar +MAT-67 U Kolaghan Warmonger @Domenico Cava +MBS-1 U Accorder Paladin @Kekai Kotaki +MBS-9 U Kemba's Legion @Anthony Francisco +MBS-10 U Leonin Relic-Warder @Greg Staples +MBS-16 C Priests of Norn @Igor Kieryluk +MBS-19 R White Sun's Zenith @Mike Bierek +MBS-22 U Corrupted Conscience @Jason Chan +MBS-42 U Flesh-Eater Imp @Johann Bodin +MBS-49 C Phyresis @Izzy +MBS-50 R Phyrexian Crusader @Eric Deschamps +MBS-52 R Phyrexian Vatmother @Stephan Martiniere +MBS-64 U Goblin Wardriver @Chippy +MBS-77 C Blightwidow @Daniel Ljunggren +MBS-79 C Fangren Marauder @James Ryman +MBS-80 C Glissa's Courier @Dave Kendall +MBS-83 U Melira's Keepers @Eric Deschamps +MBS-92 M Thrun, the Last Troll @Jason Chan +MBS-111 R Knowledge Pool @Mike Bierek +MBS-131 U Signal Pest @Mark Zug +MBS-142 C Training Drone @Matt Cavotta +MBS-143 U Viridian Claw @Marc Simonetti +MD1-8 C Raise the Alarm @John Matson +ME2-3 U Angel of Light @Todd Lockwood +ME3-100 U Forked Lightning @Ted Naifeh +ME4-49 C False Summoning @DiTerlizzi +ME4-66 U Talas Researcher @Kaja Foglio +ME4-102 U Wicked Pact @Adam Rex +ME4-141 C Alluring Scent @Melissa A. Benson +MH1-1 M Morophon, the Boundless @Victor Adame Minguez +MH1-5 U Dismantling Blow @Tomasz Jedruszek +MH1-7 C Ephemerate @Bastien L. Deharme +MH1-11 U Generous Gift @Kev Walker +MH1-13 R Giver of Runes @Seb McKinnon +MH1-14 C Impostor of the Sixth Pride @Chris Seaman +MH1-15 C Irregular Cohort @Steve Argyle +MH1-16 U King of the Pride @Jonathan Kuo +MH1-17 C Knight of Old Benalia @Dan Murayama Scott +MH1-21 M Ranger-Captain of Eos @Ryan Pancoast +MH1-25 C Segovian Angel @Simon Dominic +MH1-27 C Settle Beyond Reality @Anthony Palumbo +MH1-29 R Sisay, Weatherlight Captain @Anna Steinbauer +MH1-30 C Soul-Strike Technique @Joe Slucher +MH1-31 U Splicer's Skill @Jason Felix +MH1-36 C Wall of One Thousand Cuts @Greg Staples +MH1-37 R Winds of Abandon @Noah Bradley +MH1-47 U Everdream @Nils Hamm +MH1-48 U Exclude @Jehan Choo +MH1-50 U Fact or Fiction @Matt Cavotta +MH1-51 C Faerie Seer @Colin Boyer +MH1-57 R Mirrodin Besieged @Bram Sels +MH1-60 U Oneirophage @Martina Pilcerova +MH1-63 C Pondering Mage @Tommy Arnold +MH1-71 C Stream of Thought @Seb McKinnon +MH1-73 U Tribute Mage @Scott Murphy +MH1-76 U Watcher for Tomorrow @Tommy Arnold +MH1-77 C Windcaller Aven @Uriah Voth +MH1-81 U Carrion Feeder @Svetlin Velinov +MH1-89 R Endling @Livia Prima +MH1-91 C First-Sphere Gargantua @Randy Vargas +MH1-94 U Graveshifter @Jakub Kasper +MH1-96 C Mind Rake @Jason Rainville +MH1-100 R Plague Engineer @Nicholas Gregory +MH1-101 C Putrid Goblin @Winona Nelson +MH1-108 U Sling-Gang Lieutenant @Craig J Spearing +MH1-109 U Smiting Helix @Evan Shipard +MH1-112 U Undead Augur @Sara Winters +MH1-115 C Warteye Witch @Steve Prescott +MH1-125 C Geomancer's Gambit @Adam Paquette +MH1-128 R Goblin Engineer @Jehan Choo +MH1-129 U Goblin Matron @Jesper Ejsing +MH1-130 U Goblin Oriflamme @David Palumbo +MH1-142 C Quakefoot Cyclops @Mike Bierek +MH1-146 C Shenanigans @Lindsey Look +MH1-154 C Volatile Claws @Paul Scott Canavan +MH1-158 R Collector Ouphe @Filip Burburan +MH1-162 C Elvish Fury @Randy Vargas +MH1-164 R Force of Vigor @Randy Vargas +MH1-179 U Scale Up @Suzanne Helmigh +MH1-187 C Trumpeting Herd @Lars Grant-West +MH1-188 C Twin-Silk Spider @Ben Maier +MH1-189 M Unbound Flourishing @Tomasz Jedruszek +MH1-193 C Winding Way @Adam Paquette +MH1-195 R Cloudshredder Sliver @Filip Burburan +MH1-203 R Ice-Fang Coatl @Filip Burburan +MH1-208 R Lightning Skelemental @Nicholas Gregory +MH1-216 R Unsettled Mariner @John Stanko +MH1-217 M Wrenn and Six @Chase Stone +MH1-220 C Arcum's Astrolabe @Igor Kieryluk +MH1-221 U Birthing Boughs @Mike Bierek +MH1-222 U Farmstead Gleaner @Josh Hass +MH1-235 C Universal Automaton @Ben Maier +MH2-3 C Arcbound Mouser @Campbell White +MH2-5 U Barbed Spike @James Paick +MH2-12 R Esper Sentinel @Eric Deschamps +MH2-22 R Nykthos Paragon @Martina Pilcerova +MH2-34 U Thraben Watcher @Bastien L. Deharme +MH2-35 R Timeless Dragon @Anastasia Ovchinnikova +MH2-36 C Unbounded Potential @Iain McCaig +MH2-39 R Dress Down @Iain McCaig +MH2-42 C Floodhound @Lius Lasahido +MH2-46 C Hard Evidence @Yeong-Hao Han +MH2-52 M Murktide Regent @Lucas Graciano +MH2-64 U Specimen Collector @Ravenna Tran +MH2-74 U Archfiend of Sorrows @David Rapoza +MH2-76 C Bone Shards @Tommy Arnold +MH2-81 R Dauthi Voidwalker @Sidharth Chaturvedi +MH2-102 M Tourach, Dread Cantor @Greg Staples +MH2-105 U Underworld Hermit @Jason A. Engle +MH2-110 U Young Necromancer @Paul Scott Canavan +MH2-121 U Dragon's Rage Channeler @Martina Fačková +MH2-122 C Faithless Salvaging @Bud Cook +MH2-144 C Tavern Scoundrel @Cynthia Sheppard +MH2-158 U Fae Offering @Lucas Graciano +MH2-166 R Ignoble Hierarch @Mark Zug +MH2-167 C Jade Avenger @Chris Seaman +MH2-171 R Sanctum Weaver @Kimonas Theodossiou +MH2-172 U Scurry Oak @Mark Zug +MH2-180 U Tireless Provisioner @Josu Hernaiz +MH2-186 R Asmoranomardicadaistinaculdacar @Ryan Pancoast +MH2-191 U Combine Chrysalis @Hector Ortiz +MH2-197 M Garth One-Eye @Micah Epstein +MH2-202 M Grist, the Hunger Tide @Yongjae Choi +MH2-204 R Lonis, Cryptozoologist @Andrew Mar +MH2-214 R Sythis, Harvest's Hand @Ryan Yee +MH2-218 R Yusri, Fortune's Flame @Steven Belledin +MH2-219 R Academy Manufactor @Campbell White +MH2-227 M Kaldra Compleat @Vincent Proce +MH2-232 C Ornithopter of Paradise @Raoul Vitale +MH2-234 M Scion of Draco @Greg Staples +MH2-253 C Rustvale Bridge @Craig J Spearing +MH2-258 C Thornglint Bridge @Randy Gallegos +MH2-259 R Urza's Saga @Titus Lunter +MH2-280 U Gorilla Shaman @Filip Burburan +MH2-287 M Titania, Protector of Argoth @Magali Villeneuve +MH2-289 R Chainer, Nightmare Adept @Steve Prescott +MH2-302 U Mishra's Factory @Scott Chou +MH2-329 C Late to Dinner @Kev Walker +MH2-402 M Tourach, Dread Cantor @Greg Staples +MH2-412 R Gaea's Will @Lucas Graciano +MIC-13 R Drown in Dreams @Olena Richards +MIC-131 R Zombie Apocalypse @Volkan Baǵa +MIC-157 C Arcane Signet @Dan Murayama Scott +MIC-170 C Command Tower @Evan Shipard +MID-32 C Search Party Captain @Mike Bierek +MID-56 C Geistwave @Olena Richards +MID-78 C Startle @Craig J Spearing +MID-88 C Blood Pact @Sam White +MID-96 C Diregraf Horde @Alex Negrea +MID-97 U Dreadhound @Joe Slucher +MID-112 M The Meathook Massacre @Chris Seaman +MID-113 U Morbid Opportunist @Tyler Walpole +MID-128 C Ardent Elementalist @Miguel Mercado +MID-147 U Lunar Frenzy @Alix Branwyn +MID-155 U Purifying Dragon @Zezhou Chen +MID-168 R Augur of Autumn @Billy Christian +MID-176 U Clear Shot @Craig J Spearing +MID-180 C Dawnhart Rejuvenator @Darren Tan +MID-196 U Rise of the Ants @Nicholas Gregory +MID-204 R Tovolar's Huntmaster @Cristi Balanescu +MID-211 M Arlinn, the Pack's Hope @Anna Steinbauer +MID-217 R Dennick, Pious Apprentice @Chris Rallis +MID-233 R Ludevic, Necrogenius @Ryan Pancoast +MID-265 R Overgrown Farmland @Jonas De Ro +MID-301 C Dawnhart Rejuvenator @Cabrol +MIR-1 U Afterlife @Pete Venters +MIR-14 U Enlightened Tutor @Dan Frazier +MIR-37 R Sacred Mesa @Margaret Organ-Kean +MIR-43 C Teremko Griffin @Martin McKenna +MIR-56 C Boomerang @Richard Kane Ferguson +MIR-57 U Cerulean Wyvern @Gerry Grace +MIR-61 U Dissipate @Richard Kane Ferguson +MIR-67 U Floodgate @Jeff Miracola +MIR-77 U Mind Bend @Mike Dringenberg +MIR-83 C Power Sink @Charles Gillespie +MIR-89 C Sapphire Charm @Steve Luke +MIR-90 C Sea Scryer @Martin McKenna +MIR-94 U Suq'Ata Firewalker @David O'Connor +MIR-110 C Cadaverous Knight @Dermot Power +MIR-117 C Dirtwater Wraith @Steve Luke +MIR-147 U Stupor @Mike Kimble +MIR-150 C Urborg Panther @Cliff Nielsen +MIR-151 C Wall of Corpses @Gary Leach +MIR-161 U Burning Palm Efreet @Dermot Power +MIR-165 U Cinder Cloud @Jock +MIR-169 U Dwarven Miner @Jock +MIR-175 U Flame Elemental @Richard Kane Ferguson +MIR-184 C Incinerate @Brian Snõddy +MIR-185 C Kaervek's Torch @John Coulthart +MIR-202 U Volcanic Geyser @David O'Connor +MIR-213 R Early Harvest @Janine Johnston +MIR-234 C Quirion Elves @Randy Gallegos +MIR-235 C Rampant Growth @Pat Lewis +MIR-238 C Sabertooth Cobra @Andrew Robinson +MIR-290 U Zebra Unicorn @Margaret Organ-Kean +MIR-292 R Amber Prison @Donato Giancola +MIR-296 U Charcoal Diamond @Drew Tucker +MIR-301 U Ersatz Gnomes @Ron Spencer +MIR-310 U Marble Diamond @Jeff Miracola +MIR-316 U Phyrexian Vault @Hannibal King +MIR-325 U Crystal Vein @Pat Lewis +MIR-328 U Mountain Valley @Kari Johnson +MKC-8 M Sophia, Dogged Detective @Campbell White +MKC-56 R Austere Command @Anna Steinbauer +MKC-223 C Arcane Signet @Dan Murayama Scott +MKC-274 R Mossfire Valley @John Avon +MKC-288 U Seaside Citadel @Volkan Baǵa +MKC-297 R Sungrass Prairie @Ron Spencer +MKM-277 L Plains @Muhammad Firdaus +MKM-278 L Plains @Carlos Palma Cruchaga +MKM-279 L Island @Jorge Jacinto +MKM-280 L Island @Titus Lunter +MKM-281 L Swamp @Carlos Palma Cruchaga +MKM-282 L Swamp @Carlos Palma Cruchaga +MKM-285 L Forest @Jorge Jacinto +MKM-286 L Forest @Carlos Palma Cruchaga +MM2-1 R All Is Dust @Jason Felix +MM2-8 C Apostle's Blessing @Brad Rigney +MM2-9 C Arrest @Daarken +MM2-13 C Court Homunculus @Matt Cavotta +MM2-17 C Fortify @Christopher Moeller +MM2-25 R Mirran Crusader @Eric Deschamps +MM2-27 C Moonlit Strider @John Avon +MM2-32 C Skyhunter Skirmisher @Greg Staples +MM2-34 C Sunlance @Volkan Baǵa +MM2-37 C Terashi's Grasp @Mark Tedin +MM2-39 C Aethersnipe @Zoltan Boros & Gabor Szikszai +MM2-42 C Cloud Elemental @Michael Sutfin +MM2-45 U Flashfreeze @Brian Despain +MM2-48 R Hurkyl's Recall @Ralph Horsley +MM2-57 C Somber Hoverguard @Adam Rex +MM2-58 C Steady Progress @Efrem Palacios +MM2-64 C Thoughtcast @Greg Hildebrandt +MM2-66 C Vapor Snag @Raymond Swanland +MM2-68 C Vigean Graftmage @Alan Pollack +MM2-76 C Death Denied @James Paick +MM2-79 U Dismember @Terese Nielsen +MM2-80 C Dread Drone @Raymond Swanland +MM2-83 C Ghostly Changeling @Chuck Lukacs +MM2-84 C Grim Affliction @Erica Yang +MM2-85 C Instill Infection @Chris Rahn +MM2-87 C Nameless Inversion @Jeff Miracola +MM2-89 C Plagued Rusalka @Alex Horley-Orlandelli +MM2-94 C Scuttling Death @Thomas M. Baxa +MM2-105 C Blades of Velis Vel @Ron Spencer +MM2-109 C Burst Lightning @Vance Kovacs +MM2-112 C Dragonsoul Knight @Justin Sweet +MM2-114 C Goblin Fireslinger @Pete Venters +MM2-117 C Gut Shot @Greg Staples +MM2-121 M Kiki-Jiki, Mirror Breaker @Steven Belledin +MM2-124 C Smash to Smithereens @Pete Venters +MM2-141 U Bestial Menace @Andrew Robinson +MM2-142 C Commune with Nature @Lars Grant-West +MM2-143 U Cytoplast Root-Kin @Thomas M. Baxa +MM2-144 C Gnarlid Pack @Johann Bodin +MM2-146 C Kavu Primarch @Kev Walker +MM2-147 C Kozilek's Predator @Steve Argyle +MM2-151 R Noble Hierarch @Mark Zug +MM2-154 U Pelakka Wurm @Daniel Ljunggren +MM2-166 C Thrive @Daren Bader +MM2-175 U Ethercaste Knight @Steven Belledin +MM2-184 U Plaxcaster Frogling @Greg Staples +MM2-188 U Vengeful Rebirth @Vance Kovacs +MM2-198 U Shrewd Hatchling @Carl Frank +MM2-199 R Swans of Bryn Argoll @Eric Fortune +MM2-201 C Alloy Myr @Matt Cavotta +MM2-202 C Blinding Souleater @Igor Kieryluk +MM2-205 C Copper Carapace @Franz Vohwinkel +MM2-215 C Frogmite @Terese Nielsen +MM2-222 U Mortarpod @Eric Deschamps +MM2-225 R Precursor Golem @Chippy +MM2-238 C Darksteel Citadel @John Avon +MM3-4 M Entreat the Angels @Todd Lockwood +MM3-5 C Eyes in the Skies @James Ryman +MM3-7 C Gideon's Lawkeeper @Steve Prescott +MM3-12 U Lingering Souls @John Stanko +MM3-16 C Momentary Blink @Evan Shipard +MM3-18 C Pitfall Trap @Franz Vohwinkel +MM3-19 R Ranger of Eos @Ryan Pancoast +MM3-21 C Rootborn Defenses @Mark Zug +MM3-23 C Sensor Splicer @Izzy +MM3-24 C Soul Warden @Randy Gallegos +MM3-28 C Wake the Reflections @Cynthia Sheppard +MM3-29 C Youthful Knight @Rebecca Guay +MM3-30 C Augur of Bolas @Slawomir Maniak +MM3-38 C Forbidden Alchemy @David Rapoza +MM3-41 C Grasp of Phantoms @Izzy +MM3-44 C Mystical Teachings @Ron Spears +MM3-52 C Spire Monitor @Daniel Ljunggren +MM3-53 C Tandem Lookout @Kev Walker +MM3-54 M Temporal Mastery @Franz Vohwinkel +MM3-56 U Wall of Frost @Mike Bierek +MM3-62 C Cower in Fear @Nils Hamm +MM3-74 C Grixis Slavedriver @Dave Kendall +MM3-75 U Inquisition of Kozilek @Volkan Baǵa +MM3-77 R Mind Shatter @Michael Sutfin +MM3-81 C Pit Keeper @Anthony S. Waters +MM3-82 C Recover @Bastien L. Deharme +MM3-88 U Ancient Grudge @Ryan Yee +MM3-94 C Dynacharge @Matt Stewart +MM3-95 U Goblin Assault @Jaime Jones +MM3-97 C Hanweir Lancer @Steve Prescott +MM3-99 C Madcap Skills @Anthony Palumbo +MM3-102 C Mogg Flunkies @Brom +MM3-103 U Molten Rain @Sung Choi +MM3-106 U Pyrewild Shaman @Lucas Graciano +MM3-109 C Rubblebelt Maaka @Eric Velhagen +MM3-111 C Scourge Devil @Dave Kendall +MM3-118 C Arachnus Web @Karl Kopinski +MM3-119 C Avacyn's Pilgrim @Jana Schirmer & Johannes Voss +MM3-123 C Death-Hood Cobra @Jason Felix +MM3-127 U Gaea's Anthem @Greg Staples +MM3-131 C Penumbra Spider @Jeff Easley +MM3-133 C Revive @Matthew D. Wilson +MM3-138 C Strength in Numbers @Ron Spencer +MM3-142 U Thornscape Battlemage @Matt Cavotta +MM3-150 C Agony Warp @Dave Allsop +MM3-157 C Coiling Oracle @Mark Zug +MM3-164 R Fiery Justice @Mathias Kollros +MM3-165 U Ghor-Clan Rampager @Charles Urbach +MM3-180 U Rhox War Monk @Dan Dos Santos +MM3-181 U Sedraxis Specter @Cole Eastburn +MM3-185 U Soul Manipulation @Carl Critchlow +MM3-189 U Sprouting Thrinax @Jarreau Wimberly +MM3-196 U Tower Gargoyle @Matt Cavotta +MM3-198 U Urban Evolution @Eytan Zana +MM3-202 U Wayfaring Temple @Peter Mohrbacher +MM3-203 U Woolly Thoctar @Wayne Reynolds +MM3-208 C Giantbaiting @Trevor Hairsine +MM3-209 C Gift of Orzhova @Johannes Voss +MM3-216 R Basilisk Collar @Howard Lyon +MM3-223 U Izzet Signet @Raoul Vitale +MMA-58 C Perilous Research @Donato Giancola +MMA-90 U Mad Auntie @Wayne Reynolds +MMA-117 R Greater Gargadon @Rob Alexander +MMA-146 C Greater Mossdog @Chippy +MMA-154 U Masked Admirers @Eric Fortune +MMA-159 U Riftsweeper @Brian Despain +MMA-176 R Grand Arbiter Augustin IV @Zoltan Boros & Gabor Szikszai +MMA-181 U Mind Funeral @rk post +MMA-196 C Aether Spellbomb @Jim Nelson +MMA-211 U Paradise Mantle @Greg Hildebrandt +MMQ-16 C Crossbow Infantry @Greg Hildebrandt & Tim Hildebrandt +MMQ-17 C Devout Witness @Don Hazeltine +MMQ-19 R Fountain Watch @Jeff Miracola +MMQ-27 U Last Breath @DiTerlizzi +MMQ-31 C Nightwind Glider @Randy Gallegos +MMQ-32 U Noble Purpose @Kev Walker +MMQ-38 C Ramosian Rally @Christopher Moeller +MMQ-55 U Trap Runner @Ron Spencer +MMQ-68 U Coastal Piracy @Matthew D. Wilson +MMQ-74 U Diplomatic Escort @Rebecca Guay +MMQ-78 U Energy Flux @Qiao Dafu +MMQ-92 R Rishadan Brigand @Scott Hampton +MMQ-93 C Rishadan Cutpurse @Christopher Moeller +MMQ-94 U Rishadan Footpad @Adam Rex +MMQ-104 U Soothsaying @Pat Lewis +MMQ-107 C Stinging Barrier @Pat Lewis +MMQ-108 U Thwart @Christopher Moeller +MMQ-112 R Trade Routes @Matt Cavotta +MMQ-119 U Cackling Witch @Brian Despain +MMQ-132 U Deepwood Legate @Pete Venters +MMQ-152 U Primeval Shambler @Chippy +MMQ-159 C Sever Soul @Jeff Easley +MMQ-168 R Unmask @rk post +MMQ-170 C Vendetta @Dan Frazier +MMQ-172 U Arms Dealer @Luca Zontini +MMQ-179 C Cave Sense @Mark Romanoski +MMQ-182 C Ceremonial Guard @Daren Bader +MMQ-193 U Hammer Mage @Rebecca Guay +MMQ-198 U Kyren Negotiations @Scott Hampton +MMQ-205 U Mercadia's Downfall @Pete Venters +MMQ-208 R Puppet's Verdict @Edward P. Beard, Jr. +MMQ-218 R Thieves' Auction @Kevin Murphy +MMQ-219 C Thunderclap @Tom Wänerstrand +MMQ-229 C Ancestral Mask @Massimilano Frezzato +MMQ-232 U Briar Patch @Rebecca Guay +MMQ-246 R Food Chain @Val Mayerik +MMQ-253 U Hunted Wumpus @Brian Snõddy +MMQ-254 C Invigorate @Dan Frazier +MMQ-255 C Land Grant @D. Alexander Gregory +MMQ-267 U Saber Ants @Greg Staples +MMQ-269 C Silverglade Elemental @Chippy +MMQ-270 U Silverglade Pathfinder @rk post +MMQ-271 U Snake Pit @Carl Critchlow +MMQ-273 C Spidersilk Armor @Scott Hampton +MMQ-283 R Vernal Equinox @Rebecca Guay +MMQ-290 U Crenellated Wall @Arnie Swekel +MMQ-291 R Crooked Scales @Ron Spears +MMQ-314 U Toymaker @Frank Kelly Freas +MMQ-320 R High Market @Carl Critchlow +MMQ-322 C Peat Bog @Val Mayerik +MOC-240 U Tetsuko Umezawa, Fugitive @Randy Vargas +MOC-249 U Foulmire Knight @Alex Brock +MOC-251 U Graveshifter @Jakub Kasper +MOC-306 C Kodama's Reach @John Avon +MOC-372 U Replicating Ring @Olena Richards +MOC-390 U Arcane Sanctum @Anthony Francisco +MOM-13 U Elspeth's Smite @Livia Prima +MOM-39 C Sunder the Gateway @Titus Lunter +MOM-41 U Surge of Salvation @Dominik Mayer +MOM-54 C Disturbing Conversion @Anna Mitura-Laskowska +MOM-66 C Meeting of Minds @Milivoj Ćeran +MOM-84 U Wicked Slumber @Anato Finnstark +MOM-108 C Gloomfang Mauler @Denis Zhbankov +MOM-128 C Unseal the Necropolis @Isis +MOM-138 U Fearless Skald @Slawomir Maniak +MOM-170 C Volcanic Spite @Kevin Sidharta +MOM-173 C Wrenn's Resolve @Viko Menezes +MOM-176 C Atraxa's Fall @Xavier Ribeiro +MOM-195 C Iridescent Blademaster @Livia Prima +MOM-206 U Storm the Seedcore @Jason Rainville +MOM-207 U Streetwise Negotiator @Brent Hollowell +MOM-210 C Timberland Ancient @Pavel Kolomeyets +MOM-263 R Realmbreaker, the Invasion Tree @Kekai Kotaki +MOM-327 U Referee Squad @Steven Belledin +MOM-329 C Injector Crocodile @Mark Zug +MOM-333 C Cragsmasher Yeti @Brent Hollowell +MOR-15 R Kinsbaile Cavalier @Wayne Reynolds +MOR-25 C Stonybrook Schoolmaster @Quinton Hoover & Val Mayerik +MOR-26 U Swell of Courage @Jim Nelson +MOR-39 C Latchkey Faerie @Warren Mahy +MOR-42 C Mothdust Changeling @Shelly Wan +MOR-44 U Nevermaker @Chuck Lukacs +MOR-51 C Stonybrook Banneret @Ralph Horsley +MOR-67 C Moonglove Changeling @Wayne England +MOR-86 U Boldwyr Intimidator @Christopher Moeller +MOR-93 R Lightning Crafter @Dan Murayama Scott +MOR-98 U Release the Ants @Ron Spencer +MOR-105 U Spitebellows @Larry MacDougall +MOR-109 R Taurean Mauler @Dominick Domingo +MOR-115 U Bramblewood Paragon @Jim Murray +MOR-118 C Deglamer @Zoltan Boros & Gabor Szikszai +MOR-123 C Game-Trail Changeling @Martina Pilcerova +MOR-124 R Gilt-Leaf Archdruid @Steve Prescott +MOR-128 R Leaf-Crowned Elder @Wayne Reynolds +MOR-133 U Recross the Paths @Greg Hildebrandt +MOR-137 R Unstoppable Ash @Brian Snõddy +MRD-20 R Second Sunrise @Greg Staples +MRD-31 R Broodstar @Glen Angus +MRD-36 R Fatespinner @rk post +MRD-42 R March of the Machines @Ben Thompson +MRD-49 R Shared Fate @Matt Cavotta +MRD-57 U Barter in Blood @Paolo Parente +MRD-58 U Betrayal of Flesh @Wayne England +MRD-59 C Chimney Imp @Christopher Moeller +MRD-82 U Wall of Blood @Tony Szczudlo +MRD-88 U Detonate @Dave Dorman +MRD-90 R Fiery Gambit @Scott M. Fischer +MRD-95 U Grab the Reins @Michael Sutfin +MRD-99 R Mass Hysteria @Adam Rex +MRD-125 R Molder Slug @Heather Hudson +MRD-128 C Predator's Strike @Tony Szczudlo +MRD-139 U Viridian Shaman @Scott M. Fischer +MRD-146 C Bonesplitter @Darrell Riche +MRD-155 R Clockwork Dragon @Arnie Swekel +MRD-159 U Crystal Shard @Doug Chaffee +MRD-185 C Hematite Golem @Paolo Parente +MRD-188 U Isochron Scepter @Mark Harrison +MRD-190 R Krark's Thumb @Ron Spencer +MRD-195 R Leveler @Carl Critchlow +MRD-206 R Mindslaver @Glen Angus +MRD-225 U Pearl Shard @Doug Chaffee +MRD-229 U Power Conduit @Todd Lockwood +MRD-241 C Silver Myr @Kev Walker +MRD-266 R Tower of Eons @John Avon +MRD-267 R Tower of Fortunes @Matt Cavotta +MRD-278 C Ancient Den @Rob Alexander +MRD-282 C Great Furnace @Rob Alexander +MRD-284 U Stalking Stones @David Day +MRD-285 C Tree of Tales @John Avon +MUL-12 U Tetsuko Umezawa, Fugitive @Serena Malyon +NCC-4 M Kitt Kanto, Mayhem Diva @Fariba Khamseh +NCC-9 M Phabine, Boss's Confidant @Ryan Pancoast +NCC-210 M Sun Titan @Todd Lockwood +NCC-217 U Daring Saboteur @Victor Adame Minguez +NCC-247 R Disciple of Bolas @Slawomir Maniak +NCC-285 C Cultivate @Anthony Palumbo +NCC-290 C Farseek @Martina Pilcerova +NCC-291 R Forgotten Ancient @Mark Tedin +NCC-318 R Treeshaker Chimera @Vincent Proce +NCC-319 C Wall of Roots @Matt Stewart +NCC-404 R Fortified Village @Cliff Childs +NCC-405 R Game Trail @Adam Paquette +NCC-419 C Path of Ancestry @Alayna Danner +NEC-21 R Komainu Battle Armor @Néstor Ossandón Leal +NEC-95 U Reality Shift @Howard Lyon +NEC-111 R Taurean Mauler @Dominick Domingo +NEM-1 U Angelic Favor @Paolo Parente +NEM-8 C Fanatical Devotion @Massimilano Frezzato +NEM-17 R Parallax Wave @Greg Staples +NEM-41 R Seahunter @Heather Hudson +NEM-42 C Seal of Removal @Christopher Moeller +NEM-48 U Submerge @Mark Romanoski +NEM-55 U Dark Triumph @Adam Rex +NEM-57 R Divining Witch @Donato Giancola +NEM-58 U Massacre @Pete Venters +NEM-65 U Phyrexian Prowler @Mark Zug +NEM-76 U Ancient Hydra @Scott M. Fischer +NEM-96 R Moggcatcher @Pete Venters +NEM-97 U Rupture @Gao Yan +NEM-98 C Seal of Fire @Christopher Moeller +NEM-116 R Skyshroud Behemoth @Eric Peterson +NEM-117 C Skyshroud Claim @Mark Romanoski +NEM-126 U Belbe's Armor @D. Alexander Gregory +NEM-127 R Belbe's Portal @Mark Tedin +NEM-129 R Eye of Yawgmoth @DiTerlizzi +NEM-143 U Terrain Generator @Alan Pollack +NEO-3 U Banishing Slash @Josu Hernaiz +NEO-17 C Imperial Oath @Nicholas Elias +NEO-26 R Lion Sash @Yongjae Choi +NEO-38 C Spirited Companion @Ilse Gort +NEO-44 U Acquisition Octopus @Francisco Miyara +NEO-67 C Moon-Circuit Hacker @Tia Masic +NEO-81 C Suit Up @Miguel Mercado +NEO-93 U Dockside Chef @Steven Belledin +NEO-100 C Inkrise Infiltrator @Campbell White +NEO-114 M Nashi, Moon Sage's Scion @Valera Lutfullina +NEO-116 U Nezumi Prowler @Joseph Weston +NEO-120 C Reckoner's Bargain @Justine Cruz +NEO-128 C Virus Beetle @Dan Murayama Scott +NEO-129 C You Are Already Dead @Zoltan Boros +NEO-135 U Bronzeplate Boar @Campbell White +NEO-138 C Experimental Synthesizer @Yeong-Hao Han +NEO-157 U Rabbit Battery @Justyna Dura +NEO-175 U Blossom Prancer @Ryan Yee +NEO-189 C Greater Tanuki @Ilse Gort +NEO-198 U Kappa Tech-Wrecker @Jehan Choo +NEO-202 C Master's Rebuke @Francisco Miyara +NEO-226 M Kaito Shizuki @Yongjae Choi +NEO-242 U Circuit Mender @Hector Ortiz +NEO-243 U Containment Construct @Julian Kok Joon Wen +NEO-254 U Patchwork Automaton @Donato Giancola +NEO-283 L Plains @Piotr Dura +NEO-292 L Forest @Adam Paquette +NEO-341 C Inkrise Infiltrator @Umiu Geso +NPH-1 M Karn Liberated @Jason Chan +NPH-6 R Chancellor of the Annex @Min Yum +NPH-7 U Dispatch @Erica Yang +NPH-8 U Due Respect @James Ryman +NPH-16 U Master Splicer @Chippy +NPH-17 R Norn's Annex @James Paick +NPH-19 C Porcelain Legionnaire @Eric Deschamps +NPH-20 R Puresteel Paladin @Jason Chan +NPH-23 U Shattered Angel @Kev Walker +NPH-25 C Suture Priest @Igor Kieryluk +NPH-29 C Blighted Agent @Anthony Francisco +NPH-33 U Deceiver Exarch @Izzy +NPH-35 C Gitaxian Probe @Chippy +NPH-37 M Jin-Gitaxias, Core Augur @Eric Deschamps +NPH-42 R Phyrexian Metamorph @Jana Schirmer & Johannes Voss +NPH-45 C Spined Thopter @Pete Venters +NPH-47 U Tezzeret's Gambit @Karl Kopinski +NPH-49 U Viral Drake @Lars Grant-West +NPH-50 U Wing Splicer @Kev Walker +NPH-61 C Geth's Verdict @Whit Brachna +NPH-72 U Reaper of Sheoldred @Stephan Martiniere +NPH-73 M Sheoldred, Whispering One @Jana Schirmer & Johannes Voss +NPH-79 C Artillerize @Johann Bodin +NPH-93 C Ruthless Invasion @Svetlin Velinov +NPH-95 R Slag Fiend @Mike Bierek +NPH-103 U Beast Within @Dave Allsop +NPH-116 C Mutagenic Growth @Dave Kendall +NPH-118 U Noxious Revival @Matt Stewart +NPH-123 U Triumph of the Hordes @Izzy +NPH-127 M Vorinclex, Voice of Hunger @Karl Kopinski +NPH-130 M Batterskull @Mark Zug +NPH-139 C Immolating Souleater @Austin Hsu +NPH-164 R Unwinding Clock @Mike Bierek +ODY-11 U Beloved Chaplain @Darrell Riche +ODY-21 R Earnest Fellowship @Heather Hudson +ODY-24 R Graceful Antelope @Heather Hudson +ODY-44 C Sacred Rites @Bradley Williams +ODY-46 C Shelter @Christopher Moeller +ODY-56 C Tireless Tribe @Carl Critchlow +ODY-58 R Aboshan, Cephalid Emperor @Christopher Moeller +ODY-63 C Aven Fisher @Christopher Moeller +ODY-70 C Careful Study @Scott M. Fischer +ODY-71 U Cephalid Broker @Dave Dorman +ODY-89 R Patron Wizard @Donato Giancola +ODY-90 R Pedantic Learning @Heather Hudson +ODY-108 R Time Stretch @Paolo Parente +ODY-129 U Diabolic Tutor @Rick Farrell +ODY-149 R Mindslicer @Kev Walker +ODY-159 U Sadistic Hypnotist @Paolo Parente +ODY-170 U Zombie Infestation @Thomas M. Baxa +ODY-173 C Anarchist @Greg Hildebrandt & Tim Hildebrandt +ODY-182 R Chance Encounter @Mark Brill +ODY-185 C Dwarven Grunt @Mike Ploog +ODY-186 U Dwarven Recruiter @Ciruelo +ODY-197 R Impulsive Maneuvers @Dave Dorman +ODY-214 U Price of Glory @Darrell Riche +ODY-215 C Reckless Charge @Scott M. Fischer +ODY-217 C Rites of Initiation @Bradley Williams +ODY-221 U Shower of Coals @Matt Cavotta +ODY-230 U Beast Attack @Ciruelo +ODY-233 C Chatter of the Squirrel @Jim Nelson +ODY-236 U Deep Reconnaissance @Jeff Remmer +ODY-237 C Diligent Farmhand @Gary Ruddell +ODY-239 U Druid's Call @Greg Hildebrandt & Tim Hildebrandt +ODY-240 C Elephant Ambush @Anthony S. Waters +ODY-252 C Muscle Burst @Gary Ruddell +ODY-254 U Nantuko Elder @Daren Bader +ODY-259 R Nut Collector @Christopher Moeller +ODY-273 R Squirrel Mob @Carl Critchlow +ODY-274 U Squirrel Nest @Anthony S. Waters +ODY-282 C Werebear @Carl Critchlow +ODY-313 U Barbarian Ring @John Avon +ODY-315 U Cabal Pit @John Avon +ODY-323 R Petrified Field @Glen Angus +OGW-9 R Thought-Knot Seer @Svetlin Velinov +OGW-13 R Eldrazi Displacer @Daarken +OGW-14 C Affa Protector @Izzy +OGW-22 C Isolation Zone @Chris Rallis +OGW-24 C Kor Sky Climber @Victor Adame Minguez +OGW-26 U Make a Stand @Magali Villeneuve +OGW-31 C Ondu War Cleric @Ben Maier +OGW-33 C Searing Light @Marco Nelor +OGW-47 C Slip Through Space @Raymond Swanland +OGW-52 C Containment Membrane @Daarken +OGW-56 U Grip of the Roil @Volkan Baǵa +OGW-58 C Jwar Isle Avenger @Ryan Pancoast +OGW-75 C Oblivion Strike @Daniel Ljunggren +OGW-86 M Kalitas, Traitor of Ghet @Todd Lockwood +OGW-89 R Remorseless Punishment @Ryan Barger +OGW-90 C Tar Snare @Karl Kopinski +OGW-91 C Untamed Hunger @Willian Murai +OGW-92 C Vampire Envoy @Johannes Voss +OGW-93 C Zulaport Chainmage @Chris Rallis +OGW-100 C Reality Hemorrhage @Chris Rallis +OGW-102 C Boulder Salvo @Vincent Proce +OGW-105 C Cinder Hellion @Jason Kang +OGW-109 R Fall of the Titans @Chris Rallis +OGW-116 U Reckless Bushwhacker @Kieran Yanner +OGW-120 C Zada's Commando @Zack Stella +OGW-130 C Elemental Uprising @Svetlin Velinov +OGW-138 M Nissa, Voice of Zendikar @Raymond Swanland +OGW-140 R Oath of Nissa @Wesley Burt +OGW-141 C Pulse of Murasa @Matt Stewart +OGW-145 C Tajuru Pathwarden @Victor Adame Minguez +OGW-147 R Zendikar Resurgent @Chris Rallis +OGW-151 R Ayli, Eternal Pilgrim @Cynthia Sheppard +OGW-156 R Mina and Denn, Wildborn @Izzy +OGW-157 U Reflector Mage @Willian Murai +OGW-160 U Weapons Trainer @Greg Opalinski +OGW-161 C Bone Saw @Kev Walker +OGW-174 M Mirrorpool @Cliff Childs +OGW-182 R Wandering Fumarole @Florian de Gesincourt +OGW-183 L Wastes @Jason Felix +ONC-5 R Clever Concealment @Alexey Kruglov +ONC-21 R Skyhunter Strike Force @Slawomir Maniak +ONC-87 U Prava of the Steel Legion @Matt Stewart +ONE-1 U Against All Odds @Rudy Siswanto +ONE-11 R The Eternal Wanderer @Alix Branwyn +ONE-26 U Ossification @Nino Vecia +ONE-28 C Planar Disruption @Campbell White +ONE-36 C Vanish into Eternity @Magali Villeneuve +ONE-49 C Experimental Augury @Donato Giancola +ONE-66 C Quicksilver Fisher @Filip Burburan +ONE-108 U Sheoldred's Edict @Helge C. Balzer +ONE-114 R Vraan, Executioner Thane @Helge C. Balzer +ONE-121 C Barbed Batterfist @Randy Gallegos +ONE-123 C Blazing Crescendo @Tiffany Turrill +ONE-129 U Exuberant Fuseling @Billy Christian +ONE-132 U Furnace Punisher @Lauren K. Cannon +ONE-190 U Tyvar's Stand @Kieran Yanner +ONE-243 C Surgical Skullbomb @Gaboleps +ONE-257 R Razorverge Thicket @Randy Gallegos +ONE-287 C Quicksilver Fisher @Sidharth Chaturvedi +ONS-3 R Ancestor's Prophet @Kev Walker +ONS-45 U Nova Cleric @Alan Pollack +ONS-59 R Weathered Wayfarer @Greg Hildebrandt & Tim Hildebrandt +ONS-60 U Whipcorder @Ron Spencer +ONS-63 U Annex @John Avon +ONS-64 U Aphetto Alchemist @Ron Spears +ONS-76 U Complicate @Scott M. Fischer +ONS-89 R Ixidor, Reality Sculptor @Kev Walker +ONS-96 U Mistform Shrieker @Glen Angus +ONS-103 R Quicksilver Dragon @Ron Spencer +ONS-104 R Read the Runes @Alan Pollack +ONS-132 U Chain of Smog @Greg Staples +ONS-137 U Death Pulse @Tony Szczudlo +ONS-152 R Gravespawn Sovereign @Adam Rex +ONS-168 C Shepherd of Rot @Greg Staples +ONS-191 C Brightstone Ritual @Wayne England +ONS-199 U Dwarven Blastminer @Gary Ruddell +ONS-210 C Goblin Taskmaster @Trevor Hairsine +ONS-223 R Risky Move @Jerry Tiritilli +ONS-229 R Skirk Fire Marshal @Greg Hildebrandt & Tim Hildebrandt +ONS-234 C Solar Blast @Greg Staples +ONS-235 C Sparksmith @Jim Nelson +ONS-244 R Words of War @Justin Sweet +ONS-250 U Broodhatch Nantuko @Keith Garletts +ONS-251 U Centaur Glade @Alex Horley-Orlandelli +ONS-254 U Elven Riders @Darrell Riche +ONS-272 C Krosan Tusker @Kev Walker +ONS-282 R Silvos, Rogue Elemental @Carl Critchlow +ONS-287 U Symbiotic Beast @Franz Vohwinkel +ONS-291 R Tempting Wurm @Bob Petillo +ONS-295 U Venomspout Brackus @Ron Spencer +ONS-298 U Wall of Mulch @Anthony S. Waters +ONS-307 R Doom Cannon @Matthew Mitchell +ONS-322 R Riptide Laboratory @John Avon +ONS-327 R Unholy Grotto @John Avon +ORI-4 M Archangel of Tithes @Cynthia Sheppard +ORI-6 C Aven Battle Priest @John Severin Brassell +ORI-7 U Blessed Spirits @Anna Steinbauer +ORI-8 C Celestial Flare @Clint Cearley +ORI-11 U Consul's Lieutenant @Daarken +ORI-12 C Enlightened Ascetic @James Zapata +ORI-17 C Healing Hands @Josu Hernaiz +ORI-18 C Heavy Infantry @David Gaillet +ORI-23 M Kytheon, Hero of Akros @Willian Murai +ORI-34 C Suppression Bonds @Chris Rallis +ORI-36 C Topan Freeblade @Johannes Voss +ORI-38 R Tragic Arrogance @Winona Nelson +ORI-48 C Calculated Dismissal @Karl Kopinski +ORI-51 M Day's Undoing @Jonas De Ro +ORI-56 C Dreadwaters @Cliff Childs +ORI-60 M Jace, Vryn's Prodigy @Jaime Jones +ORI-68 C Ringwarden Owl @Titus Lunter +ORI-71 C Send to Sleep @Cynthia Sheppard +ORI-73 U Sigiled Starfish @Nils Hamm +ORI-74 U Skaab Goliath @Volkan Baǵa +ORI-76 U Sphinx's Tutelage @Slawomir Maniak +ORI-83 U Whirler Rogue @Winona Nelson +ORI-86 C Catacomb Slug @Nils Hamm +ORI-89 C Dark Dabbling @Bastien L. Deharme +ORI-97 C Fetid Imp @Nils Hamm +ORI-102 C Infernal Scarring @Mike Bierek +ORI-106 M Liliana, Heretical Healer @Karla Ortiz +ORI-109 C Nantuko Husk @Carl Critchlow +ORI-113 C Rabid Bloodsucker @Seb McKinnon +ORI-115 C Reave Soul @David Palumbo +ORI-116 C Returned Centaur @Lucas Graciano +ORI-117 U Revenant @Terese Nielsen +ORI-121 C Thornbow Archer @Kev Walker +ORI-123 C Touch of Moonglove @Scott Murphy +ORI-126 C Weight of the Underworld @Wesley Burt +ORI-130 C Akroan Sergeant @Zack Stella +ORI-132 C Bellows Lizard @Jack Wang +ORI-133 C Boggart Brute @Igor Kieryluk +ORI-135 M Chandra, Fire of Kaladesh @Eric Deschamps +ORI-137 R Chandra's Ignition @Eric Deschamps +ORI-138 C Cobblebrute @Eytan Zana +ORI-145 C Fiery Impulse @Daarken +ORI-151 R Goblin Piledriver @Matt Cavotta +ORI-153 C Lightning Javelin @Seb McKinnon +ORI-155 U Magmatic Insight @Ryan Barger +ORI-157 R Pia and Kiran Nalaar @Eric Deschamps +ORI-158 C Prickleboar @Jesper Ejsing +ORI-165 U Thopter Engineer @Steve Prescott +ORI-170 C Caustic Caterpillar @Jack Wang +ORI-174 U Elemental Bond @David Gaillet +ORI-177 R Gaea's Revenge @Kekai Kotaki +ORI-179 M The Great Aurora @Sam Burley +ORI-187 C Mantle of Webs @Mathias Kollros +ORI-188 C Might of the Masses @Johann Bodin +ORI-189 M Nissa, Vastwood Seer @Wesley Burt +ORI-195 C Reclaim @Andrew Robinson +ORI-196 C Rhox Maulers @Zoltan Boros +ORI-197 U Skysnare Spider @Filip Burburan +ORI-204 C Vastwood Gorger @Kieran Yanner +ORI-208 C Yeva's Forcemage @Eric Deschamps +ORI-209 U Zendikar's Roil @Sam Burley +ORI-212 U Bounding Krasis @Jack Wang +ORI-213 U Citadel Castellan @Anastasia Ovchinnikova +ORI-214 U Iroas's Champion @Marco Nelor +ORI-219 U Zendikar Incarnate @Lucas Graciano +ORI-220 C Alchemist's Vial @Lindsey Look +ORI-221 M Alhammarret's Archive @Richard Wright +ORI-228 C Guardians of Meletis @Magali Villeneuve +ORI-229 R Hangarback Walker @Daarken +ORI-233 U Meteorite @Scott Murphy +ORI-239 U Sigil of Valor @Dan Murayama Scott +ORI-240 R Sword of the Animist @Daniel Ljunggren +ORI-280 C Flesh to Dust @Julie Dillon +ORI-284 C Fiery Hellhound @Ted Galaday +OTC-7 M Kirri, Talented Sprout @Simon Dominic +OTC-81 R Heliod's Intervention @Daarken +OTC-83 R Mirror Entity @Zoltan Boros & Gabor Szikszai +OTC-89 C Arcane Denial @Xi Zhang +OTC-106 U Pongify @Heather Hudson +OTC-252 C Arcane Signet @Dan Murayama Scott +OTC-280 C Command Tower @Ryan Yee +OTC-282 R Darkwater Catacombs @Monte Michael Moore +OTC-293 R Exotic Orchard @Steven Belledin +OTC-303 U Jungle Shrine @Wayne Reynolds +OTC-305 R Llanowar Wastes @Lucas Graciano +OTC-307 U Opulent Palace @Adam Paquette +OTC-342 R Yavimaya Coast @Jesper Ejsing +OTJ-44 M Double Down @Javier Charro +OTJ-198 R Bruse Tarl, Roving Rancher @Forrest Imel +P02-23 C Temple Acolyte @Lubov +P02-26 C Trokin High Guard @Ron Spencer +P02-31 U Air Elemental @Doug Chaffee +P02-32 U Apprentice Sorcerer @Christopher Rush +P02-59 U Undo @Henry Van Der Linde +P02-62 R Ancient Craving @Rob Alexander +P02-69 U Dakmor Plague @Jeff Miracola +P02-74 C Hand of Death @Heather Hudson +P02-85 R Rain of Daggers @Melissa A. Benson +P02-86 C Raise Dead @Anson Maddocks +P02-89 C Swarm of Rats @Kev Walker +P02-92 R Brimstone Dragon @David A. Cherry +P02-99 U Goblin Lore @D. Alexander Gregory +P02-110 U Ogre Arsonist @Jeffrey R. Busch +P02-116 C Spitting Earth @David Horne +P02-123 C Bear Cub @Ron Spencer +P02-125 R Deathcoil Wurm @Rebecca Guay +P02-127 C Golden Bear @Una Fricker +P02-128 U Harmony of Nature @Kaja Foglio +P02-130 U Ironhoof Ox @Una Fricker +P02-136 C Norwood Archers @Rebecca Guay +P02-144 U River Bear @Una Fricker +P02-145 C Salvage @Keith Parkinson +P05-4 R Oxidize @Scott M. Fischer +P07-3 R Mortify @Brian Snõddy +P07-6 R Disenchant @Heather Hudson +P08-5 R Harmonize @Vance Kovacs +P09-8 R Negate @Ralph Horsley +P09-9 R Terminate @Thomas M. Baxa +P10-3 R Sign in Blood @Alan Pollack +P10-8 R Burst Lightning @Jung Park +P11-3 R Doom Blade @Carl Critchlow +PBFZ-50 U Stasis Snare @Slawomir Maniak +PC2-64 U Dreampod Druid @Wayne Reynolds +PC2-91 R Etherium-Horn Sorcerer @Franz Vohwinkel +PC2-107 M Vela the Night-Clad @Allen Williams +PC2-111 C Fractured Powerstone @Rob Alexander +PCA-6 U Felidar Umbra @Christopher Moeller +PCA-14 C Augury Owl @Jim Nelson +PCA-17 U Guard Gomazoa @Rob Alexander +PCA-20 C Mistblade Shinobi @Kev Walker +PCA-24 R Sakashima's Student @Brian Snõddy +PCA-35 C Okiba-Gang Shinobi @Mark Zug +PCA-39 U Arc Trail @Marc Simonetti +PCA-40 U Beetleback Chief @Wayne England +PCA-41 C Erratic Explosion @Gary Ruddell +PCA-47 U Mark of Mutiny @Mike Bierek +PCA-50 R Preyseizer Dragon @Daarken +PCA-51 U Rivals' Duel @Zoltan Boros & Gabor Szikszai +PCA-69 C Nest Invader @Trevor Claxton +PCA-71 C Ondu Giant @Igor Kieryluk +PCA-75 C Quiet Disrepair @Glen Angus +PCA-77 C Silhana Ledgewalker @James Wong +PCA-79 C Tukatongue Thallid @Vance Kovacs +PCA-82 U Baleful Strix @Nils Hamm +PCA-83 U Bituminous Blast @Raymond Swanland +PCA-84 U Bloodbraid Elf @Steve Argyle +PCA-85 C Deny Reality @Jean-Sébastien Rossbach +PCA-86 C Dimir Infiltrator @Jim Nelson +PCA-87 R Dragonlair Spider @Carl Critchlow +PCA-92 U Fires of Yavimaya @Val Mayerik +PCA-93 U Fusion Elemental @Michael Komarck +PCA-98 U Kathari Remnant @Anthony S. Waters +PCA-104 U Shardless Agent @Izzy +PCA-110 C Flayer Husk @Igor Kieryluk +PCA-114 U Thran Golem @Ron Spears +PCA-115 U Whispersilk Cloak @Daren Bader +PCA-127 U Skarrg, the Rage Pits @Martina Pilcerova +PCMP-9 U Imperious Perfect @Scott M. Fischer +PCY-1 U Abolish @Kev Walker +PCY-18 U Reveille Squad @Greg Hildebrandt & Tim Hildebrandt +PCY-32 R Denying Wind @Tony Szczudlo +PCY-45 C Rhystic Study @Terese Nielsen +PCY-48 U Spiketail Drake @Michael Sutfin +PCY-50 C Stormwatch Eagle @Aaron Boyd +PCY-79 C Steal Strength @D. Alexander Gregory +PCY-90 U Flameshot @Mark Brill +PCY-97 U Lesser Gargadon @Rob Alexander +PCY-101 U Scoria Cat @Andrew Goldhawk +PCY-127 R Squirrel Wrangler @Carl Critchlow +PCY-132 U Vintara Snapper @Joel Biske +PD2-15 U Fire Servant @Ryan Yee +PD3-22 U Diabolic Servitude @Scott M. Fischer +PDKA-127 U Strangleroot Geist @Erica Yang +PF19-1 R Lightning Bolt @Kekai Kotaki +PLC-1 C Aven Riftwatcher @Don Hazeltine +PLC-12 U Rebuff the Wicked @Stephen Tappin +PLC-19 U Stonecloaker @Tomas Giorello +PLC-22 C Whitemane Lion @Zoltan Boros & Gabor Szikszai +PLC-25 C Mana Tithe @Martina Pilcerova +PLC-30 C Sinew Sliver @Steven Belledin +PLC-34 U Auramancer's Guise @Greg Staples +PLC-36 R Braids, Conjurer Adept @Zoltan Boros & Gabor Szikszai +PLC-40 C Dreamscape Artist @Jim Murray +PLC-44 U Pongify @Heather Hudson +PLC-54 U Frozen Aether @Dan Dos Santos +PLC-56 C Merfolk Thaumaturgist @Steve Prescott +PLC-58 C Piracy Charm @John Avon +PLC-61 R Serendib Sorcerer @Dan Murayama Scott +PLC-68 C Dash Hopes @Zoltan Boros & Gabor Szikszai +PLC-91 U Shrouded Lore @Kev Walker +PLC-92 C Vampiric Link @Kev Walker +PLC-106 U Shivan Meteor @Chippy +PLC-107 C Stingscourger @Wayne Reynolds +PLC-113 C Dead // Gone @Tomas Giorello +PLC-115 U Blood Knight @Matt Cavotta +PLC-116 C Brute Force @Wayne Reynolds +PLC-119 U Pyrohemia @Stephen Tappin +PLC-122 C Simian Spirit Guide @Dave DeVries +PLC-127 C Evolution Charm @John Avon +PLC-131 R Jedit Ojanen of Efrava @Carl Critchlow +PLC-132 U Kavu Predator @Dan Murayama Scott +PLC-142 C Utopia Vow @Heather Hudson +PLC-147 R Gaea's Anthem @Greg Staples +PLC-148 R Groundbreaker @Matt Cavotta +PLC-151 U Hedge Troll @Paolo Parente +PLC-152 U Keen Sense @Jim Nelson +PLC-157 U Frenetic Sliver @Luca Zontini +PLC-159 U Necrotic Sliver @Dave Allsop +PLS-4 R Dominaria's Judgment @John Avon +PLS-9 U Lashknife Barrier @Paolo Parente +PLS-11 R Orim's Chant @Kev Walker +PLS-16 U Sunscape Battlemage @Tony Szczudlo +PLS-17 C Sunscape Familiar @Brian Despain +PLS-22 C Confound @Doug Chaffee +PLS-30 C Rushing River @Don Hazeltine +PLS-34 C Sleeping Potion @Daren Bader +PLS-35 U Stormscape Battlemage @Christopher Moeller +PLS-39 C Bog Down @Andrew Goldhawk +PLS-40 R Dark Suspicions @Matt Cavotta +PLS-44 R Lord of the Undead @Brom +PLS-61 R Goblin Game @DiTerlizzi +PLS-62 U Implode @Arnie Swekel +PLS-70 R Planeswalker's Fury @Christopher Moeller +PLS-73 U Strafe @Jim Nelson +PLS-77 U Alpha Kavu @Matt Cavotta +PLS-82 R Magnigoth Treefolk @Peter Bollinger +PLS-85 R Nemata, Grove Guardian @John Avon +PLS-87 C Primal Growth @rk post +PLS-96 R Ancient Spider @Greg Staples +PLS-97 C Cavern Harpy @Daren Bader +PLS-103 R Doomsday Specter @Donato Giancola +PLS-107 R Ertai, the Corrupted @Mark Tedin +PLS-108 U Fleetfoot Panther @Mark Brill +PLS-118 R Phyrexian Tyranny @Kev Walker +PLS-119 R Questing Phelddagrif @Matt Cavotta +PLS-131 R Draco @Sam Wood +PLS-134 U Star Compass @Donato Giancola +PLS-138 U Dromar's Cavern @Franz Vohwinkel +PLS-139 R Forsaken City @Dana Knutson +POR-1 R Alabaster Dragon @Ted Naifeh +POR-2 C Angelic Blessing @DiTerlizzi +POR-10 C Breath of Life @DiTerlizzi +POR-30 U Starlit Angel @Rebecca Guay +POR-37 U Wall of Swords @Douglas Shuler +POR-39 R Wrath of God @Mike Raabe +POR-40 R Ancestral Memories @Dan Frazier +POR-41 R Balance of Power @Adam Rex +POR-44 C Cloak of Feathers @Rebecca Guay +POR-45 R Cloud Dragon @John Avon +POR-48 U Command of Unsummoning @Phil Foglio +POR-54 R Exhaustion @DiTerlizzi +POR-55 U Flux @Ted Naifeh +POR-57s C Horned Turtle @Wang Yuqun +POR-59 U Man-o'-War @Una Fricker +POR-60 C Merfolk of the Pearl Trident @DiTerlizzi +POR-62 C Omen @Eric Peterson +POR-63 C Owl Familiar @Janine Johnston +POR-68 C Sorcerous Sight @Kaja Foglio +POR-69 C Storm Crow @Una Fricker +POR-70 C Symbol of Unsummoning @Adam Rex +POR-73 R Thing from the Deep @Paolo Parente +POR-75 C Time Ebb @Alan Rabinowitz +POR-79 U Arrogant Vampire @Zina Saunders +POR-80 U Assassin's Blade @John Matson +POR-87 R Cruel Tutor @Kev Walker +POR-93 C Feral Shadow @Colin MacNeil +POR-104 U Noxious Toad @Adrian Smith +POR-114 U Vampiric Feast @D. Alexander Gregory +POR-116 U Virtue's Ruin @Mike Dringenberg +POR-118 U Blaze @Gerry Grace +POR-120 C Burning Cloak @Scott M. Fischer +POR-126 U Fire Imp @DiTerlizzi +POR-142 R Pillaging Horde @Kev Walker +POR-143 R Pyroclasm @John Matson +POR-146 C Raging Minotaur @Scott M. Fischer +POR-151 C Stone Rain @John Matson +POR-155 U Wall of Granite @Kev Walker +POR-162 U Deep Wood @Paolo Parente +POR-163 C Elite Cat Warrior @Eric Peterson +POR-165 C Elvish Ranger @DiTerlizzi +POR-171 C Jungle Lion @Janine Johnston +POR-172 C Mobilize @Rebecca Guay +POR-173 C Monstrous Growth @Dan Frazier +POR-193 C Willow Dryad @D. Alexander Gregory +PRTR-214 U Dryad Militant @Ryan Pancoast +PZ2-38 U Ancient Excavation @James Paick +Q06-2 C Ethereal Armor @Daarken +RAV-21 R Hour of Reckoning @Randy Gallegos +RAV-25 R Loxodon Gatekeeper @Carl Critchlow +RAV-27 U Oathsworn Giant @Daren Bader +RAV-34 C Veteran Armorer @Ralph Horsley +RAV-46 C Drift of Phantasms @Michael Phillippi +RAV-48 R Eye of the Storm @Hideaki Takamura +RAV-49 C Flight of Fancy @Glen Angus +RAV-60 C Muddle the Mixture @Luca Zontini +RAV-73 C Vedalken Dismisser @Dan Murayama Scott +RAV-83 C Dimir House Guard @John Zeleznik +RAV-87 U Golgari Thug @Kev Walker +RAV-88 R Helldozer @Zoltan Boros & Gabor Szikszai +RAV-131 R Hunted Dragon @Mark Zug +RAV-135 R Mindmoil @Alex Horley-Orlandelli +RAV-150 R Warp World @Ron Spencer +RAV-163 C Farseek @Martina Pilcerova +RAV-197 U Clutch of the Undercity @Pete Venters +RAV-205 R Firemane Angel @Matt Cavotta +RAV-230 C Shambling Shell @Joel Thomas +RAV-267 R Pariah's Shield @Doug Chaffee +RAV-277 U Duskmantle, House of Shadow @Martina Pilcerova +RIX-1 U Baffling End @Mathias Kollros +RIX-7 C Exultant Skymarcher @Ryan Yee +RIX-8 U Famished Paladin @Tommy Arnold +RIX-15 C Moment of Triumph @Steven Belledin +RIX-19 C Raptor Companion @Slawomir Maniak +RIX-21 U Skymarcher Aspirant @Winona Nelson +RIX-23 C Snubhorn Sentry @Aaron Miller +RIX-30 R Zetalpa, Primal Dawn @Chris Rallis +RIX-34 C Crashing Tide @Carmen Sinek +RIX-35 U Curious Obsession @Daniel Ljunggren +RIX-37 U Expel from Orazca @Steven Belledin +RIX-44 C Negate @Magali Villeneuve +RIX-45 R Nezahal, Primal Tide @Sam Burley +RIX-47 C River Darter @Winona Nelson +RIX-49 C Sailor of Means @Ryan Pancoast +RIX-52 C Secrets of the Golden City @Jason Felix +RIX-53 U Silvergill Adept @Magali Villeneuve +RIX-67 C Dinosaur Hunter @Tianhua X +RIX-69 C Dusk Charger @Lucas Graciano +RIX-70 C Dusk Legion Zealot @Winona Nelson +RIX-74 C Grasping Scoundrel @Steve Prescott +RIX-75 C Gruesome Fate @Even Amundsen +RIX-79 C Moment of Craving @Steven Belledin +RIX-81 U Pitiless Plunderer @David Palumbo +RIX-82 U Ravenous Chupacabra @Daarken +RIX-87 R Tomb Robber @Xi Zhang +RIX-88 M Twilight Prophet @Seb McKinnon +RIX-94 R Brass's Bounty @Grzegorz Rutkowski +RIX-97 U Charging Tuskodon @Izzy +RIX-100 R Etali, Primal Storm @Raymond Swanland +RIX-104 C Frilled Deathspitter @Zoltan Boros +RIX-106 C Mutiny @Gabor Szikszai +RIX-107 U Needletooth Raptor @Winona Nelson +RIX-110 U Reckless Rage @Slawomir Maniak +RIX-114 C Shatter @Jonas De Ro +RIX-122 C Aggressive Urge @Jakub Kasper +RIX-130 R Ghalta, Primal Hunger @Chase Stone +RIX-132 C Hardy Veteran @Suzanne Helmigh +RIX-133 C Hunt the Weak @Mathias Kollros +RIX-136 R Jadelight Ranger @Jason Rainville +RIX-137 C Jungleborn Pioneer @Scott Murphy +RIX-141 C Overgrown Armasaur @Joseph Meehan +RIX-142 R Path of Discovery @Howard Lyon +RIX-143 C Plummet @Filip Burburan +RIX-148 U Thrashing Brontodon @Jakub Kasper +RIX-157 M Elenda, the Dusk Rose @Chris Rahn +RIX-158 R Hadana's Climb @Titus Lunter +RIX-160 R Journey to Eternity @Deruchenko Alexander +RIX-164 U Merfolk Mistbinder @Clint Cearley +RIX-174 M Zacama, Primal Calamity @Jaime Jones +RIX-176 M Azor's Gateway @Yeong-Hao Han +RIX-185 R Arch of Orazca @Titus Lunter +RIX-186 C Evolving Wilds @Jonas De Ro +RIX-198 C Vampire Champion @Craig J Spearing +RNA-2 U Angelic Exaltation @John Severin Brassell +RNA-3 U Archway Angel @Milivoj Ćeran +RNA-4 C Arrester's Zeal @Izzy +RNA-8 C Expose to Daylight @Daniel Ljunggren +RNA-14 C Knight of Sorrows @Zezhou Chen +RNA-16 U Ministrant of Obligation @Bastien L. Deharme +RNA-17 C Prowling Caracal @Jonathan Kuo +RNA-33 C Chillbringer @Eytan Zana +RNA-34 C Clear the Mind @David Palumbo +RNA-35 U Code of Constraint @Ekaterina Burmak +RNA-41 C Humongulus @Jesper Ejsing +RNA-47 U Pteramander @Simon Dominic +RNA-53 C Skitter Eel @Mathias Kollros +RNA-57 C Thought Collapse @Sara Winters +RNA-60 U Windstorm Drake @Daarken +RNA-66 C Carrion Imp @Kev Walker +RNA-67 C Catacomb Crocodile @Nils Hamm +RNA-77 C Ill-Gotten Inheritance @Winona Nelson +RNA-79 U Orzhov Enforcer @Matt Stewart +RNA-82 C Plague Wight @Tomasz Jedruszek +RNA-89 C Undercity's Embrace @Tyler Walpole +RNA-90 U Vindictive Vampire @Randy Gallegos +RNA-91 C Act of Treason @Scott Murphy +RNA-107 U Light Up the Stage @Dmitry Burmak +RNA-108 R Mirror March @Johannes Voss +RNA-115 C Skewer the Critics @Heonhwa Choe +RNA-123 U Biogenic Upgrade @Tomasz Jedruszek +RNA-130 R Guardian Project @Chris Rallis +RNA-148 U Trollbred Guardian @Mathias Kollros +RNA-182 U High Alert @Daarken +RNA-186 M Kaya, Orzhov Usurper @Yongjae Choi +RNA-190 C Lawmage's Binding @Mark Behm +RNA-226 U Incubation // Incongruity @Mike Bierek +RNA-240 C Simic Locket @Yeong-Hao Han +RNA-243 C Azorius Guildgate @Titus Lunter +RNA-249 C Gruul Guildgate @Alexander Forssberg +RNA-253 C Orzhov Guildgate @Cliff Childs +RNA-254 R Plaza of Harmony @Jedd Chevrier +RNA-256 C Rakdos Guildgate @Jonas De Ro +RNA-257 C Simic Guildgate @Adam Paquette +RNA-273 M The Haunt of Hightower @Lius Lasahido +ROE-4 M Emrakul, the Aeons Torn @Mark Tedin +ROE-8 U Not of This World @Izzy +ROE-9 U Pathrazer of Ulamog @Austin Hsu +ROE-31 R Kor Spiritdancer @Scott Chou +ROE-44 C Soul's Attendant @Steve Prescott +ROE-47 R Student of Warfare @Volkan Baǵa +ROE-50 C Totem-Guide Hartebeest @John Avon +ROE-66 U Enclave Cryptologist @Igor Kieryluk +ROE-72 C Halimar Wavewatch @Matt Stewart +ROE-79 C Narcolepsy @Johann Bodin +ROE-88 C Skywatcher Adept @Tomasz Jedruszek +ROE-91 R Training Grounds @James Ryman +ROE-93 C Venerated Teacher @Greg Staples +ROE-98 C Bloodthrone Vampire @Steve Argyle +ROE-112 R Guul Draz Assassin @James Ryman +ROE-119 U Nirkana Cutthroat @Erica Yang +ROE-122 U Pawn of Ulamog @Daarken +ROE-125 R Repay in Kind @Vance Kovacs +ROE-127 U Skeletal Wurm @Zoltan Boros & Gabor Szikszai +ROE-133 C Zulaport Enforcer @Matt Stewart +ROE-137 U Brimstone Mage @Volkan Baǵa +ROE-152 M Kargan Dragonlord @Jason Chan +ROE-162 U Rapacious One @Jason A. Engle +ROE-165 R Splinter Twin @Goran Josic +ROE-172 R World at War @Igor Kieryluk +ROE-190 U Joraga Treespeaker @Cyril Van Der Haegen +ROE-192 M Khalni Hydra @Todd Lockwood +ROE-214 M Sarkhan the Mad @Chippy +ROE-215 R Angelheart Vial @Chippy +RTR-1 M Angel of Serenity @Aleksi Briclot +RTR-13 C Knightly Valor @Matt Stewart +RTR-26 C Swift Justice @Karl Kopinski +RTR-28 C Trostani's Judgment @Christopher Moeller +RTR-49 R Search the City @Jack Wang +RTR-115 C Axebane Guardian @Slawomir Maniak +RTR-140 M Worldspine Wurm @Richard Wright +RTR-180 R Mercurial Chemister @Wesley Burt +RTR-207 U Vitu-Ghazi Guildmage @Jason Chan +RTR-226 R Chromatic Lantern @Jung Park +RTR-228 U Codex Shredder @Jason Felix +RTR-233 U Selesnya Keyrune @Daniel Ljunggren +RVR-111 R Hellkite Tyrant @Aleksi Briclot +RVR-228 R Sphinx's Revelation @Slawomir Maniak +SCD-77 C Feed the Swarm @Andrey Kuzinskiy +SCG-4 C Aven Liberator @Brian Snõddy +SCG-5 C Daru Spiritualist @Dave Dorman +SCG-23 U Silver Knight @Eric Peterson +SCG-29 U Brain Freeze @Tim Hildebrandt +SCG-38 U Long-Term Plans @Ben Thompson +SCG-42 R Mischievous Quanar @Lars Grant-West +SCG-45 U Pemmin's Aura @Greg Staples +SCG-49 C Rush of Knowledge @Eric Peterson +SCG-51 C Shoreline Ranger @Michael Sutfin +SCG-55 U Bladewing's Thrall @Kev Walker +SCG-72 C Reaping the Graves @Ron Spencer +SCG-76 C Twisted Abomination @Daren Bader +SCG-79 U Unspeakable Symbol @Arnie Swekel +SCG-81 C Zombie Cutthroat @Thomas M. Baxa +SCG-85 R Decree of Annihilation @John Avon +SCG-107 C Torrent of Fire @Thomas M. Baxa +SCG-120 R Forgotten Ancient @Mark Tedin +SCG-121 U Hunting Pack @Jim Nelson +SCG-125 U One with Nature @Daren Bader +SCG-132 C Wirewood Guardian @Mark Tedin +SCG-137 U Edgewalker @Ben Thompson +SHM-2 U Armored Ascension @Matt Cavotta +SHM-6 C Goldenglow Moth @Howard Lyon +SHM-14 U Mistmeadow Skulk @Omar Rayyan +SHM-18 U Prison Term @Zoltan Boros & Gabor Szikszai +SHM-23 U Spectral Procession @Jeremy Enecio +SHM-31 C Cerulean Wisps @Jim Nelson +SHM-35 U Deepchannel Mentor @Jesper Ejsing +SHM-37 U Faerie Swarm @Zoltan Boros & Gabor Szikszai +SHM-47 R Puca's Mischief @Scott Altmann +SHM-55 C Aphotic Wisps @Jim Nelson +SHM-57 U Beseech the Queen @Jason Chan +SHM-76 C Rite of Consumption @Ron Spencer +SHM-85 C Boggart Arsonists @Jesper Ejsing +SHM-87 R Cragganwick Cremator @Jeremy Enecio +SHM-88 C Crimson Wisps @Jim Nelson +SHM-98 R Knollspine Dragon @Steve Prescott +SHM-104 R Rage Reflection @Terese Nielsen & Ron Spencer +SHM-110 C Devoted Druid @Darrell Riche +SHM-116 C Gleeful Sabotage @Todd Lockwood +SHM-125 C Presence of Gond @Brandon Kitkouski +SHM-131 U Tower Above @Thomas Denmark +SHM-140 R Enchanted Evening @Rebecca Guay +SHM-144 U Mistmeadow Witch @Greg Staples +SHM-146 U Puresight Merrow @Carl Critchlow +SHM-150 C Steel of the Godhead @Jason Chan +SHM-162 R Ghastlord of Fugue @Mike Dringenberg +SHM-167 U Inkfathom Infiltrator @Jesper Ejsing +SHM-190 U Kulrath Knight @Daarken +SHM-192 U Murderous Redcap @Dave Allsop +SHM-203 U Boggart Ram-Gang @Dave Allsop +SHM-211 C Manamorphose @Jeff Miracola +SHM-231 U Mercy Killing @Dave Kendall +SHM-232 C Old Ghastbark @Thomas M. Baxa +SHM-233 R Oracle of Nectars @Brandon Kitkouski +SHM-237 R Rhys the Redeemed @Steve Prescott +SHM-242 C Shield of the Oversoul @Steven Belledin +SHM-243 R Wheel of Sun and Moon @Zoltan Boros & Gabor Szikszai +SHM-247 C Blight Sickle @John Avon +SHM-258 C Pili-Pala @Ron Spencer +SHM-260 R Reaper King @Jim Murray +SHM-263 C Scuttlemutt @Jeremy Jarvis +SHM-267 U Umbral Mantle @Richard Sardinha +SLX-4 R Elmar, Ulvenwald Informant @Eliz Roxs +SNC-14 R Giada, Font of Hope @Eric Deschamps +SNC-15 M Halo Fountain @Anastasia Ovchinnikova +SNC-18 C Inspiring Overseer @Irina Nordsol +SNC-26 C Raffine's Informant @John Stanko +SNC-27 U Refuse to Yield @Josh Hass +SNC-29 U Rumor Gatherer @Simon Dominic +SNC-31 C Sky Crier @Raoul Vitale +SNC-48 C Majestic Metamorphosis @Ben Hill +SNC-51 U An Offer You Can't Refuse @Dallas Williams +SNC-66 C Witness Protection @Dominik Mayer +SNC-71 C Crooked Custodian @Tony Foti +SNC-77 U Dusk Mangler @Antonio José Manzanedo +SNC-100 C Antagonize @Gabor Szikszai +SNC-102 C Big Score @Gaboleps +SNC-107 U Glittering Stockpile @Brock Grossman +SNC-124 C Sticky Fingers @Mark Behm +SNC-127 U Torch Breath @Cristi Balanescu +SNC-139 C Capenna Express @Viko Menezes +SNC-151 C Jewel Thief @Joe Slucher +SNC-154 C Prizefight @Deruchenko Alexander +SNC-250 R Jetmir's Garden @Kasia 'Kafis' Zielińska +SNC-256 C Skybridge Towers @Muhammad Firdaus +SOI-1 R Always Watching @Chase Stone +SOI-3 C Angelic Purge @Zezhou Chen +SOI-9 C Cathar's Companion @Svetlin Velinov +SOI-11 C Dauntless Cathar @Zack Stella +SOI-14 C Devilthorn Fox @Filip Burburan +SOI-19 C Expose Evil @Jama Jurabaev +SOI-24 C Inquisitor's Ox @Vincent Proce +SOI-31 R Odric, Lunarch Marshal @Chase Stone +SOI-41 C Survive the Night @Svetlin Velinov +SOI-42 U Tenacity @Zoltan Boros +SOI-43 R Thalia's Lieutenant @Johannes Voss +SOI-44 C Thraben Inspector @Matt Stewart +SOI-51 C Catalog @Johannes Voss +SOI-67 C Gone Missing @James Paick +SOI-68 U Invasive Surgery @Steven Belledin +SOI-74 C Nagging Thoughts @Seb McKinnon +SOI-76 C Niblis of Dusk @Nils Hamm +SOI-79 U Pore Over the Pages @Magali Villeneuve +SOI-86 C Silent Observer @Lake Hurwitz +SOI-93 U Trail of Evidence @Daniel Ljunggren +SOI-103 U Call the Bloodline @Lake Hurwitz +SOI-105 C Crow of Dark Tidings @Tianhua X +SOI-110 C Farbog Revenant @Min Yum +SOI-112 C Ghoulcaller's Accomplice @Dave Kendall +SOI-117 C Hound of the Farbogs @Christine Choi +SOI-121 C Macabre Waltz @Willian Murai +SOI-123 C Merciless Resolve @Chase Stone +SOI-126 C Murderous Compulsion @David Palumbo +SOI-127 U Olivia's Bloodsworn @Daarken +SOI-136 C Stallion of Ashmouth @Chris Rahn +SOI-142 C Twins of Maurer Estate @Darek Zabrocki +SOI-144 C Vessel of Malignity @Kieran Yanner +SOI-146 C Bloodmad Vampire @Johannes Voss +SOI-153 C Dual Shot @Joseph Meehan +SOI-156 C Fiery Temper @Johannes Voss +SOI-160 U Geistblast @Raymond Swanland +SOI-165 C Hulking Devil @Joseph Meehan +SOI-166 U Incorrigible Youths @Winona Nelson +SOI-168 C Insolent Neonate @Deruchenko Alexander +SOI-177 C Rush of Adrenaline @Chris Rallis +SOI-189 C Vessel of Volatility @Kieran Yanner +SOI-191 C Voldaren Duelist @Jason Rainville +SOI-196 C Byway Courier @Zoltan Boros +SOI-197 C Clip Wings @Howard Lyon +SOI-201 U Cult of the Waxing Moon @Anastasia Ovchinnikova +SOI-224 C Root Out @Daniel Ljunggren +SOI-231 C Stoic Builder @Howard Lyon +SOI-233 R Tireless Tracker @Eric Deschamps +SOI-236 U Ulvenwald Mysteries @Greg Opalinski +SOI-239 C Watcher in the Web @Vincent Proce +SOI-243 M Arlinn Kord @Winona Nelson +SOI-245 M The Gitrog Monster @Jason Kang +SOI-248 M Olivia, Mobilized for War @Eric Deschamps +SOI-262 C Shard of Broken Glass @Franz Vohwinkel +SOI-265 R Tamiyo's Journal @Chase Stone +SOK-3 R Celestial Kirin @Adam Rex +SOK-12 U Hand of Honor @Kev Walker +SOK-14 R Kataki, War's Wage @Matt Thompson +SOK-19 R Michiko Konda, Truth Seeker @Christopher Moeller +SOK-21 U Nikko-Onna @Shishizaru +SOK-27 R Rune-Tail, Kitsune Ascendant @Randy Gallegos +SOK-36 R Eternal Dominion @Shishizaru +SOK-37 U Evermind @Matt Thompson +SOK-38 C Freed from the Real @Scott M. Fischer +SOK-40 C Ideas Unbound @Mark Tedin +SOK-53 R Sakashima the Impostor @rk post +SOK-68 U Footsteps of the Goryo @Chippy +SOK-69 U Ghost-Lit Stalker @Hideaki Takamura +SOK-84 R One with Nothing @Jim Nelson +SOK-89 C Sink into Takenuma @Pat Lee +SOK-102 R Hidetsugu's Second Rite @Jeff Miracola +SOK-132 U Haru-Onna @Rebecca Guay +SOK-142 R Reki, the History of Kamigawa @Edward P. Beard, Jr. +SOK-144 C Sakura-Tribe Scout @Darrell Riche +SOK-153 R Blood Clock @Keith Garletts +SOK-157 U O-Naginata @Brian Snõddy +SOM-9 U Glimmerpoint Stag @Ryan Pancoast +SOM-22 R Sunblast Angel @Jason Chan +SOM-33 R Grand Architect @Steven Belledin +SOM-38 C Plated Seastrider @Izzy +SOM-50 U Twisted Image @Izzy +SOM-55 C Bleak Coven Vampires @Randis Albion +SOM-61 U Exsanguinate @Carl Critchlow +SOM-79 M Skithiryx, the Blight Dragon @Chippy +SOM-96 C Kuldotha Rebirth @Goran Josic +SOM-98 R Molten Psyche @Ryan Yee +SOM-110 R Asceticism @Daarken +SOM-111 U Bellowing Tanglewurm @jD +SOM-112 C Blight Mamba @Drew Baker +SOM-144 U Contagion Clasp @Anthony Palumbo +SOM-145 R Contagion Engine @Daarken +SOM-161 U Golem's Heart @Matt Cavotta +SOM-168 C Iron Myr @Alan Pollack +SOM-174 U Memnite @Svetlin Velinov +SOM-187 C Nihil Spellbomb @Franz Vohwinkel +SOM-195 R Prototype Portal @Drew Baker +SOM-212 R Tower of Calamities @Aleksi Briclot +SS1-3 R Brainstorm @Daarken +SS1-6 R Mystical Tutor @Yongjae Choi +SS2-4 R Rest in Peace @Jason Rainville +SS2-8 R Blackblade Reforged @Richard Kane Ferguson +SS3-7 R Rite of Flame @Kieran Yanner +STH-2 U Calming Licid @D. Alexander Gregory +STH-10 R Pursuit of Knowledge @DiTerlizzi +STH-23 U Warrior en-Kor @Stephen Daniele +STH-26 C Cloud Spirit @Randy Gallegos +STH-35 C Leap @Kev Walker +STH-50 U Wall of Tears @Rebecca Guay +STH-56 U Dauthi Trapper @Thomas M. Baxa +STH-58 C Dungeon Shade @Jason Alexander Behnke +STH-74 C Tortured Existence @Keith Parkinson +STH-77 U Convulsing Licid @Scott Kirschner +STH-80 U Fanning the Flames @Ron Spencer +STH-81 U Flame Wave @Donato Giancola +STH-84 U Flowstone Hellion @Daren Bader +STH-89 R Invasion Plans @Pete Venters +STH-94 U Mogg Maniac @Brian Snõddy +STH-96 C Seething Anger @Val Mayerik +STH-101 R Awakening @Dan Frazier +STH-102 R Burgeoning @Randy Gallegos +STH-108 R Hermit Druid @Heather Hudson +STH-112 U Primal Rage @Brian Snõddy +STH-117 C Spike Colony @Douglas Shuler +STH-125 U Wall of Blossoms @Heather Hudson +STH-127 U Crystalline Sliver @Allen Williams +STH-134 U Heartstone @John Matson +STH-137 R Jinxed Ring @M. W. Kaluta +STH-140 U Shifting Wall @Michael Sutfin +STH-141 R Sword of the Chosen @Adam Rex +STX-25 U Reduce to Memory @Campbell White +STX-35 U Thunderous Orator @Brian Valeza +STX-37 R Archmage Emeritus @Caio Monteiro +STX-41 U Divide by Zero @Liiga Smilshkalne +STX-43 C Frost Trickster @Uriah Voth +STX-45 U Kelpie Guide @Ilse Gort +STX-52 C Serpentine Curve @Kekai Kotaki +STX-64 R Baleful Mastery @Chris Cold +STX-67 R Confront the Past @Kieran Yanner +STX-72 U Go Blank @Wylie Beckert +STX-74 C Lash of Malice @Slawomir Maniak +STX-86 R Sedgemoor Witch @Igor Kieryluk +STX-97 C Dragon's Approach @Andrew Mar +STX-100 U Explosive Welcome @Mathias Kollros +STX-102 C First Day of Class @Paul Scott Canavan +STX-115 U Storm-Kiln Artist @Manuel Castañón +STX-123 U Bookwurm @Wayne Reynolds +STX-124 C Charge Through @Craig J Spearing +STX-132 U Fortifying Draught @Andrey Kuzinskiy +STX-153 M Mila, Crafty Companion @Kieran Yanner +STX-155 R Plargg, Dean of Chaos @Bryan Sola +STX-158 R Shaile, Dean of Radiance @Yongjae Choi +STX-161 R Valentin, Dean of the Vein @Jesper Ejsing +STX-178 U Dina, Soul Steeper @Chris Rahn +STX-188 U Fracture @Miranda Meeks +STX-220 U Quintorius, Field Historian @Bryan Sola +STX-222 U Reconstruct History @Campbell White +STX-227 U Rootha, Mercurial Artist @Chris Rahn +STX-247 U Witherbloom Apprentice @Josh Hass +STX-256 C Letter of Acceptance @Daniel Ljunggren +STX-263 C Archway Commons @Piotr Dura +TD0-A80 C Moment's Peace @Rebecca Guay +TD2-69 U Spawning Pit @Tony Szczudlo +THB-1 U Alseid of Life's Bounty @Magali Villeneuve +THB-5 U The Birth of Meletis @Tyler Jacobson +THB-9 U Daxos, Blessed by the Sun @Lius Lasahido +THB-13 R Elspeth Conquers Death @Ryan Yee +THB-18 M Heliod, Sun-Crowned @Lius Lasahido +THB-21 U Heliod's Punishment @Aleksi Briclot +THB-26 C Karametra's Blessing @Wisnu Tan +THB-30 C Omen of the Sun @Piotr Dura +THB-33 U Reverent Hoplite @Sidharth Chaturvedi +THB-58 C Omen of the Sea @Piotr Dura +THB-87 U Cling to Dust @Caio Monteiro +THB-91 U Elspeth's Nightmare @Jason Rainville +THB-103 C Lampad of Death's Vigil @Jason Felix +THB-107 C Mogis's Favor @Uriah Voth +THB-111 C Pharika's Libation @Jason Felix +THB-125 U Anax, Hardened in the Forge @Eric Deschamps +THB-136 U Furious Rise @Chase Stone +THB-168 U Destiny Spinner @Livia Prima +THB-169 R Dryad of the Ilysian Grove @Scott Murphy +THB-172 U Hydra's Growth @Bayard Wu +THB-204 C Warbriar Blessing @Michele Parisi +THB-216 U Eutropia the Twice-Favored @Sara Winters +THB-220 M Klothys, God of Destiny @Magali Villeneuve +THB-229 M Uro, Titan of Nature's Wrath @Vincent Proce +THB-231 C Altar of the Pantheon @Jonas De Ro +THB-236 R Shadowspear @Yeong-Hao Han +THB-258 U Daxos, Blessed by the Sun @Jason A. Engle +THB-260 U Callaphe, Beloved of the Sea @Jason A. Engle +THB-263 U Tymaret, Chosen from Death @Jason A. Engle +THB-264 U Anax, Hardened in the Forge @Jason A. Engle +THB-267 U Renata, Called to the Hunt @Jason A. Engle +THB-270 M Elspeth, Undaunted Hero @Steven Belledin +THB-276 C Mindwrack Harpy @Deruchenko Alexander +THB-296 R Ironscale Hydra @Brian Valeza +THS-11 U Evangel of Heliod @Nils Hamm +THS-17 M Heliod, God of the Sun @Jaime Jones +THS-20 R Hundred-Handed One @Brad Rigney +THS-39 C Aqueous Form @Slawomir Maniak +THS-51 U Horizon Scholar @Karl Kopinski +THS-68 U Thassa's Emissary @Sam Burley +THS-102 U Rescue from the Underworld @Raymond Swanland +THS-121 U Fanatic of Mogis @Matt Stewart +THS-124 R Hammer of Purphoros @Yeong-Hao Han +THS-135 M Purphoros, God of the Forge @Eric Deschamps +THS-145 C Titan's Strength @Karl Kopinski +THS-153 R Bow of Nylea @Yeong-Hao Han +THS-166 M Nylea, God of the Hunt @Chris Rahn +THS-169 C Nylea's Presence @Ralph Horsley +THS-172 M Polukranos, World Eater @Johann Bodin +THS-183 C Vulpine Goliath @Adam Paquette +THS-184 U Warriors' Lesson @Steve Prescott +THS-186 R Anax and Cymede @Willian Murai +THS-222 U Witches' Eye @Daniel Ljunggren +THS-223 R Nykthos, Shrine to Nyx @Jung Park +TMP-2 U Angelic Protector @DiTerlizzi +TMP-22 R Hanna's Custody @DiTerlizzi +TMP-26 U Knight of Dawn @Ron Spencer +TMP-27 U Light of Day @Drew Tucker +TMP-29 C Master Decoy @Phil Foglio +TMP-45 U Soltari Monk @Janet Aulisio +TMP-47 C Soltari Trooper @Kev Walker +TMP-61 R Ertai's Meddling @Steve Luke +TMP-71 U Legacy's Allure @Daren Bader +TMP-72 U Legerdemain @Daren Bader +TMP-86 C Shadow Rift @Adam Rex +TMP-98 R Tradewind Rider @John Matson +TMP-109 C Blood Pet @Brom +TMP-120 U Dauthi Embrace @Andrew Robinson +TMP-122 C Dauthi Horror @Jeff Laubenstein +TMP-125 U Dauthi Mindripper @Allen Williams +TMP-129 C Disturbed Burial @Heather Hudson +TMP-132 C Endless Scream @Joel Biske +TMP-135 R Extinction @Una Fricker +TMP-138 U Imps' Taunt @Colin MacNeil +TMP-147 U Perish @Rebecca Guay +TMP-151 U Reanimate @Robert Bliss +TMP-158 U Souldrinker @Dermot Power +TMP-160 C Aftershock @Hannibal King +TMP-164 C Blood Frenzy @Paolo Parente +TMP-173 C Fireslinger @Jeff Reitz +TMP-177 R Furnace of Rath @John Matson +TMP-189 C Mogg Conscripts @Pete Venters +TMP-191 C Mogg Raider @Brian Snõddy +TMP-197 U Renegade Warlord @Ron Spencer +TMP-200 R Scorched Earth @Nicola Leonard +TMP-204 R Shocker @Thomas M. Baxa +TMP-205 R Starke of Rath @Dan Frazier +TMP-225 R Elven Warhounds @Kev Walker +TMP-228 C Frog Tongue @Phil Foglio +TMP-234 U Horned Sliver @Allen Williams +TMP-237 R Mongrel Pack @Jeff Miracola +TMP-238 C Muscle Sliver @Richard Kane Ferguson +TMP-253 U Scragnoth @Jeff Laubenstein +TMP-278 U Bottle Gnomes @Kaja Foglio +TMP-280 R Cold Storage @Greg Simanson +TMP-289 R Fool's Tome @Julie Baroh +TMP-292 R Jet Medallion @Sue Ellen Brown +TMP-294 C Lotus Petal @April Lee +TMP-300 R Pearl Medallion @Sue Ellen Brown +TMP-303 U Phyrexian Splicer @Brom +TMP-304 U Puppet Strings @Scott Kirschner +TMP-306 R Sapphire Medallion @Sue Ellen Brown +TMP-308 R Scroll Rack @Heather Hudson +TMP-315 U Ancient Tomb @Colin MacNeil +TMP-318 U Ghost Town @Tom Wänerstrand +TMP-323 U Rootwater Depths @Roger Raupp +TOR-26 U Breakthrough @Gary Ruddell +TOR-28 U Cephalid Illusionist @Pete Venters +TOR-34 U Compulsion @Christopher Moeller +TOR-42 R Llawan, Cephalid Empress @Mark Zug +TOR-57 U Chainer's Edict @Ben Thompson +TOR-58 C Crippling Fatigue @Heather Hudson +TOR-69 C Mesmeric Fiend @Dana Knutson +TOR-81 C Shade's Form @Clyde Caldwell +TOR-106 U Pardic Collaborator @Pete Venters +TOR-110 U Pitchstone Wall @David Martin +TOR-117 U Violent Eruption @Bob Petillo +TOR-120 U Arrogant Wurm @John Avon +TOR-125 C Far Wanderings @Darrell Riche +TOR-136 R Parallel Evolution @Matt Cavotta +TOR-138 U Seton's Scout @Mark Romanoski +TOR-143 U Tainted Wood @Rob Alexander +TPR-87 R Coffin Queen @Kaja Foglio +TPR-146 R Mogg Infestation @Pete Venters +TPR-149 R Pandemonium @Pete Venters +TSB-3 R Celestial Dawn @Liz Danforth +TSB-39 R Conspiracy @Jeff Easley +TSB-44 R Funeral Charm @Greg Spalenka +TSB-52 R Undead Warchief @Greg Hildebrandt +TSB-84 R Spike Feeder @Heather Hudson +TSB-91 S Coalition Victory @Eric Peterson +TSB-94 R Lightning Angel @rk post +TSB-119 R Gemstone Mine @Brom +TSP-3 R Angel's Grace @Mark Zug +TSP-26 U Knight of the Holy Nimbus @Wayne England +TSP-32 R Pentarch Paladin @Jim Murray +TSP-35 U Pull from Eternity @Ron Spears +TSP-43 C Temporal Isolation @Stephen Tappin +TSP-66 C Looter il-Kor @Mike Dringenberg +TSP-68 R Moonlace @Mike Dringenberg +TSP-70 C Ophidian Eye @Zoltan Boros & Gabor Szikszai +TSP-71 U Paradox Haze @Greg Staples +TSP-84 U Telekinetic Sliver @Randy Elliott +TSP-86 C Think Twice @Jim Nelson +TSP-91 C Viscerid Deepwalker @Heather Hudson +TSP-106 R Endrek Sahr, Master Breeder @Mark Tedin +TSP-107 U Evil Eye of Urborg @Clint Langley +TSP-119 C Mindstab @Mark Tedin +TSP-157 U Fury Sliver @Paolo Parente +TSP-162 C Ground Rift @Thomas M. Baxa +TSP-163 R Ib Halfheart, Goblin Tactician @Wayne Reynolds +TSP-166 R Jaya Ballard, Task Mage @Matt Cavotta +TSP-168 C Lightning Axe @Dan Murayama Scott +TSP-171 R Norin the Wary @Heather Hudson +TSP-176 C Rift Bolt @Michael Sutfin +TSP-177 R Sedge Sliver @Richard Kane Ferguson +TSP-196 C Gemhide Sliver @John Matson +TSP-204 U Might of Old Krosa @Una Fricker +TSP-207 C Mwonvuli Acid-Moss @Randy Gallegos +TSP-215 U Scryb Ranger @Rebecca Guay +TSP-217 R Spectral Force @Dan Murayama Scott +TSP-239 U Ghostflame Sliver @Luca Zontini +TSP-240 U Harmonic Sliver @Luca Zontini +TSP-241 R Ith, High Arcanist @Zoltan Boros & Gabor Szikszai +TSP-243 R Mishra, Artificer Prodigy @Scott M. Fischer +TSP-251 C Chromatic Star @Alex Horley-Orlandelli +TSP-255 R Gauntlet of Power @Greg Hildebrandt +TSP-259 R Lotus Bloom @Mark Zug +TSP-274 R Gemstone Caverns @Martina Pilcerova +TSP-275 R Kher Keep @Paolo Parente +TSP-279 C Terramorphic Expanse @Dan Murayama Scott +TSP-281 R Vesuva @Zoltan Boros & Gabor Szikszai +TSR-5 U Aven Mindcensor @Rebecca Guay +TSR-19 U Griffin Guide @Jim Nelson +TSR-72 U Jodah's Avenger @Pete Venters +TSR-96 R Venser, Shaper Savant @Aleksi Briclot +TSR-125 R Mirri the Cursed @Filip Burburan +TSR-286 R Tolaria West @Khang Le +TSR-288 U Urza's Factory @Mark Tedin +TSR-302 S Silence @Wayne Reynolds +TSR-306 S Baral, Chief of Compliance @Wesley Burt +TSR-366 S Reclamation Sage @Christopher Moeller +TSR-392 C Cranial Plating @Adam Rex +UDS-22 C Tormented Angel @Greg Hildebrandt & Tim Hildebrandt +UDS-25 C Wall of Glare @Patrick Ho +UDS-26 R Aura Thief @Ron Spears +UDS-38 U Metathran Elite @Jim Nelson +UDS-43 R Rayne, Academy Chancellor @Matthew D. Wilson +UDS-49 U Thieving Magpie @Una Fricker +UDS-53 R Body Snatcher @Mark Zug +UDS-54 C Bubbling Muck @Greg Hildebrandt & Tim Hildebrandt +UDS-64 C Phyrexian Monitor @Carl Critchlow +UDS-84 C Goblin Gardener @Dan Frazier +UDS-90 U Keldon Champion @Mark Tedin +UDS-94 C Reckless Abandon @Ron Spears +UDS-99 R Wake of Destruction @Todd Lockwood +UDS-102 U Compost @Douglas Shuler +UDS-106 U Gamekeeper @Scott Hampton +UDS-108 C Heart Warden @Adam Rex +UDS-131 U Fodder Cannon @DiTerlizzi +UGIN-73 R Grim Haruspex @Seb McKinnon +UGL-84 L Plains @Christopher Rush +ULG-2 R Blessed Reversal @Pete Venters +ULG-9 U Hope and Glory @Heather Hudson +ULG-13 U Martyr's Cause @Jeff Laubenstein +ULG-14 U Mother of Runes @Scott M. Fischer +ULG-18 R Planar Collapse @Mark Zug +ULG-22 C Radiant's Judgment @Greg Staples +ULG-36 C Miscalculation @Jeff Laubenstein +ULG-37 U Opportunity @Ron Spears +ULG-43 C Snap @Mike Raabe +ULG-45 U Tinker @Mike Raabe +ULG-48 C Weatherseed Faeries @Don Hazeltine +ULG-49 U Bone Shredder @Ron Spencer +ULG-50 R Brink of Madness @Donato Giancola +ULG-72 C Unearth @Don Hazeltine +ULG-73 C About Face @Melissa A. Benson +ULG-74 U Avalanche Riders @Edward P. Beard, Jr. +ULG-77 C Ghitu Slinger @Melissa A. Benson +ULG-78 U Ghitu War Cry @Douglas Shuler +ULG-82 R Impending Disaster @Pete Venters +ULG-95 U Viashino Heretic @Douglas Shuler +ULG-100 R Defense of the Heart @Rebecca Guay +ULG-118 C Yavimaya Granger @Henry Van Der Linde +ULG-119 C Yavimaya Scion @DiTerlizzi +ULG-121 U Angel's Trumpet @Kev Walker +ULG-134 U Thran War Machine @Pete Venters +ULG-137 R Urza's Blueprints @Tom Wänerstrand +ULG-138 R Wheel of Torture @Henry Van Der Linde +ULG-143 U Treetop Village @Anthony S. Waters +UMA-3 R Eldrazi Conscription @Jaime Jones +UMA-6 M Kozilek, Butcher of Truth @Michael Komarck +UMA-16 C Faith's Fetters @Kev Walker +UMA-18 C Gods Willing @Mark Winters +UMA-21 C Hyena Umbra @Howard Lyon +UMA-23 C Lotus-Eye Mystics @Dan Murayama Scott +UMA-30 C Resurrection @Michael Komarck +UMA-31 R Reveillark @Jim Murray +UMA-35 U Sigil of the New Dawn @Volkan Baǵa +UMA-36 C Skyspear Cavalry @Wayne Reynolds +UMA-42 C Wandering Champion @Willian Murai +UMA-47 U Circular Logic @Anthony S. Waters +UMA-55 C Foil @Donato Giancola +UMA-57 C Frantic Search @Mitchell Malloy +UMA-61 U Laboratory Maniac @Jason Felix +UMA-77 M Temporal Manipulation @Franz Vohwinkel +UMA-84 U Apprentice Necromancer @Randy Vargas +UMA-93 R Demonic Tutor @Zack Stella +UMA-102 C Gurmag Angler @YW Tang +UMA-105 C Mark of the Vampire @Winona Nelson +UMA-106 M Mikaeus, the Unhallowed @Chris Rahn +UMA-107 C Moan of the Unhallowed @Nils Hamm +UMA-122 U Anger @Svetlin Velinov +UMA-130 U Firewing Phoenix @James Paick +UMA-132 R Gamble @Even Amundsen +UMA-138 U Magmaw @Karl Kopinski +UMA-144 C Reckless Wurm @Greg Staples +UMA-147 R Seize the Day @Greg Staples +UMA-149 C Sparkspitter @Dan Murayama Scott +UMA-162 U Devoted Druid @Kimonas Theodossiou +UMA-163 U Eternal Witness @Chris Rahn +UMA-167 R Golgari Grave-Troll @Jakub Kasper +UMA-177 U Penumbra Wurm @Daarken +UMA-196 U Angel of Despair @Todd Lockwood +UMA-199 R Gaddock Teeg @Greg Staples +UMA-225 C Fire // Ice @Dan Murayama Scott +UMA-232 R Phyrexian Altar @Yigit Koroglu +UMA-234 U Prismatic Lens @Scott Murphy +UMA-247 U Mistveil Plains @Ralph Horsley +UMA-250 U Rogue's Passage @Christine Choi +UMA-254 R Urborg, Tomb of Yawgmoth @Jung Park +UNF-66 U Attempted Murder @Greg Staples +UNH-139 L Mountain @John Avon +USG-4 C Angelic Page @Rebecca Guay +USG-6 R Catastrophe @Andrew Robinson +USG-39 R Rune of Protection: Lands @Scott M. Fischer +USG-73 R Energy Field @John Matson +USG-86 C Pendrell Drake @Jeff Miracola +USG-88 U Peregrine Drake @Bob Eggleton +USG-92 C Rescind @Adam Rex +USG-93 C Rewind @Dermot Power +USG-100 R Stroke of Genius @Stephen Daniele +USG-101 R Sunder @Stephen Daniele +USG-111 U Windfall @Pete Venters +USG-114 U Zephid's Embrace @Daren Bader +USG-123 R Contamination @Stephen Daniele +USG-124 C Corrupt @Vincent Evans +USG-129 C Despondency @D. Alexander Gregory +USG-135 C Expunge @Christopher Moeller +USG-143 R Oppression @Pete Venters +USG-144 U Order of Yawgmoth @Chippy +USG-147 C Pestilence @Pete Venters +USG-151 U Rain of Filth @Stephen Daniele +USG-157 U Skirge Familiar @Ron Spencer +USG-160 U Spined Fluke @Mark A. Nelson +USG-167 U Vile Requiem @Carl Critchlow +USG-169 R Witch Engine @Kev Walker +USG-172 U Acidic Soil @Scott M. Fischer +USG-174 C Arc Lightning @Andrew Goldhawk +USG-175 R Bedlam @Mike Raabe +USG-176 R Brand @Donato Giancola +USG-184 C Falter @Mike Raabe +USG-191 C Goblin Matron @DiTerlizzi +USG-192 U Goblin Offensive @Carl Critchlow +USG-205 U Outmaneuver @Greg Staples +USG-215 U Shivan Raptor @Bob Eggleton +USG-216 U Shiv's Embrace @Bob Eggleton +USG-218 R Sneak Attack @Jerry Tiritilli +USG-233 U Argothian Elder @DiTerlizzi +USG-240 U Carpet of Flowers @Rebecca Guay +USG-244 R Citanul Hierophants @Vincent Evans +USG-245 U Cradle Guard @Mark Zug +USG-249 R Endless Wurm @DiTerlizzi +USG-255 U Gaea's Embrace @Paolo Parente +USG-262 R Hidden Herd @Andrew Robinson +USG-269 C Pouncing Jaguar @Daren Bader +USG-272 U Retaliation @Tom Fleming +USG-275 C Symbiosis @Jeff Miracola +USG-281 R Vernal Bloom @Bob Eggleton +USG-294 U Endoskeleton @Mark Tedin +USG-302 R Mishra's Helix @Berry +USG-305 R Phyrexian Colossus @Mark Tedin +USG-309 R Smokestack @Scott Kirschner +USG-313 U Urza's Armor @rk post +USG-318 U Worn Powerstone @Henry G. Higginbotham +USG-322 R Phyrexian Tower @Chippy +USG-326 R Shivan Gorge @John Matson +USG-329 R Thran Quarry @Michael Sutfin +UST-93 R Steamflogger Boss @Warren Mahy +V14-3 M Cataclysm @Eric Deschamps +VIS-13 U Miraculous Recovery @Brian Horton +VIS-22 U Teferi's Honor Guard @Cecil Fernando +VIS-37 C Man-o'-War @Jon J Muth +VIS-53 U Brood of Cockroaches @Geofrey Darrow & I. Rabarot +VIS-55 C Crypt Rats @Paul Lee +VIS-64 U Necromancy @Pete Venters +VIS-79 C Fireblast @Michael Danza +VIS-92 C Rock Slide @Mike Kerr +VIS-100 U Viashino Sandstalker @Andrew Robinson +VIS-104 U Elephant Grass @Tony Roberts +VIS-108 C Giant Caterpillar @Zina Saunders +VIS-117 C Quirion Ranger @Tom Kyffin +VIS-126 U Army Ants @Geofrey Darrow & I. Rabarot +VIS-144 U Dragon Mask @Craig Hooper +VIS-145 U Helm of Awakening @Adam Rex +VIS-152 C Phyrexian Walker @Bryan Talbot +VIS-165 U Karoo @Zina Saunders +VIS-166 U Quicksand @Roger Raupp +VMA-27 C Exile @Sam Wolfe Connelly +VMA-77 C Krovikan Sorcerer @Igor Kieryluk +VMA-99 U Turnabout @Steve Prescott +VMA-134 C Predatory Nightstalker @D. Alexander Gregory +VOC-86 U Field of Souls @Richard Kane Ferguson +VOC-99 U Swords to Plowshares @Jesper Ejsing +VOC-128 U Falkenrath Noble @Slawomir Maniak +VOW-13 C Fierce Retribution @Sidharth Chaturvedi +VOW-39 C Traveling Minister @Slawomir Maniak +VOW-42 U Valorous Stance @Anato Finnstark +VOW-47 C Alchemist's Retrieval @David Auden Nash +VOW-77 C Serpentine Ambush @Jokubas Uogintas +VOW-87 U Wash Away @Brian Valeza +VOW-95 C Blood Fountain @Evyn Fong +VOW-103 R Demonic Bargain @Sam Guay +VOW-112 U Fell Stinger @Lars Grant-West +VOW-120 U Hero's Downfall @Chris Rallis +VOW-156 C Falkenrath Celebrants @Anna Steinbauer +VOW-174 C Reckless Impulse @Mathias Kollros +VOW-182 C Voldaren Epicure @Martina Fačková +VOW-197 R Dig Up @Slawomir Maniak +VOW-207 U Laid to Rest @Colin Boyer +VOW-208 C Massive Might @Iris Compiet +VOW-230 U Ancient Lumberknot @Nicholas Gregory +VOW-232 U Bloodtithe Harvester @Lucas Graciano +W16-7 C Mind Rot @Steve Luke +W17-9 C Drag Under @Tianhua X +W17-17 R Nightmare @Vance Kovacs +W17-19 U Sengir Vampire @Kev Walker +W17-21 C Falkenrath Reaver @Daarken +W17-28 C Stalking Tiger @Terese Nielsen +WAR-4 U Ajani's Pridemate @Sidharth Chaturvedi +WAR-6 U Bond of Discipline @Zezhou Chen +WAR-7 C Bulwark Giant @Victor Adame Minguez +WAR-9 C Defiant Strike @Gabor Szikszai +WAR-17 U Grateful Apparition @Izzy +WAR-28 R Ravnica at War @Adam Paquette +WAR-32 U Teyo, the Shieldmage @Magali Villeneuve +WAR-37 U The Wanderer @Wesley Burt +WAR-38 C Wanderer's Strike @Sara Winters +WAR-47 C Crush Dissent @Mike Bierek +WAR-50 R Fblthp, the Lost @Jesper Ejsing +WAR-52 U Flux Channeler @Heonhwa Choe +WAR-54 R Jace, Wielder of Mysteries @Anna Steinbauer +WAR-56 U Kasmina, Enigmatic Mentor @Magali Villeneuve +WAR-58 C Kiora's Dambreaker @Mathias Kollros +WAR-59 U Lazotep Plating @Yeong-Hao Han +WAR-62 R Narset's Reversal @Viktor Titov +WAR-68 R Spark Double @Eric Deschamps +WAR-73 C Thunder Drake @Yeong-Hao Han +WAR-76 C Aid the Fallen @Sara Winters +WAR-83 U Davriel, Rogue Shadowmage @Daarken +WAR-94 C Kaya's Ghostform @Johan Grenier +WAR-95 C Lazotep Behemoth @Zezhou Chen +WAR-106 C Spark Reaper @Zoltan Boros +WAR-112 C Vraska's Finisher @Igor Kieryluk +WAR-114 C Blindblast @Sidharth Chaturvedi +WAR-115 U Bolt Bend @Svetlin Velinov +WAR-117 C Burning Prophet @Mathias Kollros +WAR-120 C Chandra's Pyrohelix @Aleksi Briclot +WAR-132 C Honor the God-Pharaoh @David Palumbo +WAR-135 U Jaya, Venerated Firemage @Yongjae Choi +WAR-137 R Krenko, Tin Street Kingpin @Mark Behm +WAR-138 R Mizzium Tank @Wayne Reynolds +WAR-142 C Samut's Sprint @Aleksi Briclot +WAR-146 U Tibalt, Rakish Instigator @Chase Stone +WAR-147 U Tibalt's Rager @Yongjae Choi +WAR-150 U Arlinn, Voice of the Pack @Ryan Pancoast +WAR-154 C Bloom Hulk @Even Amundsen +WAR-157 U Challenger Troll @Svetlin Velinov +WAR-158 C Courage in Crisis @Micah Epstein +WAR-159 U Evolution Sage @Simon Dominic +WAR-162 C Giant Growth @Dmitry Burmak +WAR-173 C Pollenbright Druid @Matt Stewart +WAR-182 C Vivien's Grizzly @Lius Lasahido +WAR-184 R Ajani, the Greathearted @Victor Adame Minguez +WAR-188 U Cruel Celebrant @Bastien L. Deharme +WAR-189 U Deathsprout @Seb McKinnon +WAR-201 U Invade the City @Sung Choi +WAR-204 U Mayhem Devil @Dmitry Burmak +WAR-208 M Niv-Mizzet Reborn @Raymond Swanland +WAR-211 R Ral, Storm Conduit @Wesley Burt +WAR-220 R Tamiyo, Collector of Tales @Chase Stone +WAR-223 R Time Wipe @Svetlin Velinov +WAR-224 R Tolsimir, Friend to Wolves @Ryan Pancoast +WAR-227 U Angrath, Captain of Chaos @Slawomir Maniak +WAR-232 U Kiora, Behemoth Beckoner @Jaime Jones +WAR-237 U Firemind Vessel @Ravenna Tran +WAR-238 U God-Pharaoh's Statue @Igor Kieryluk +WAR-247 U Interplanar Beacon @Adam Paquette +WAR-266 C Desperate Lunge @Deruchenko Alexander +WAR-271 C Guildpact Informant @Randy Gallegos +WOC-27 M Brenard, Ginger Sculptor @Marta Nael +WOC-166 R Secluded Glen @Alayna Danner +WOE-267 L Plains @Carlos Palma Cruchaga +WOE-268 L Plains @Jonas De Ro +WOE-269 L Island @Leanna Crossan +WOE-270 L Island @Sarah Finnigan +WOE-271 L Swamp @Jonas De Ro +WOE-272 L Swamp @Julian Kok Joon Wen +WOE-273 L Mountain @Sarah Finnigan +WOE-274 L Mountain @Julian Kok Joon Wen +WOE-275 L Forest @Jonas De Ro +WOE-276 L Forest @Adam Paquette +WTH-6 U Argivian Find @Roger Raupp +WTH-8 C Benalish Infantry @Dan Frazier +WTH-13 C Empyrial Armor @D. Alexander Gregory +WTH-20 U Master of Arms @Dan Frazier +WTH-29 U Volunteer Reserves @Kev Walker +WTH-36 U Cloud Djinn @Mike Dringenberg +WTH-37 C Disrupt @Adam Rex +WTH-44 U Noble Benefactor @DiTerlizzi +WTH-45 C Ophidian @Cliff Nielsen +WTH-51 U Relearn @Zina Saunders +WTH-53 U Teferi's Veil @Brom +WTH-58 U Vodalian Illusionist @John Matson +WTH-61 C Barrow Ghoul @Bryan Talbot +WTH-63 U Buried Alive @Brian Horton +WTH-66 R Doomsday @Adrian Smith +WTH-69 C Fledgling Djinn @Thomas Gianni +WTH-74 U Mischievous Poltergeist @DiTerlizzi +WTH-82 U Strands of Night @Patrick Kochakji +WTH-92 C Boiling Blood @Cliff Nielsen +WTH-95 U Cone of Flame @Ron Spencer +WTH-104 U Goblin Grenadiers @Dan Frazier +WTH-109 U Lava Hounds @Steve White +WTH-112 U Orcish Settlers @Pete Venters +WTH-149 U Dingus Staff @Richard Kane Ferguson +WTH-153 C Mind Stone @Adam Rex +WTH-155 U Phyrexian Furnace @George Pratt +WTH-156 U Serrated Biskelion @Ron Spencer +WTH-159 U Thran Forge @Mark Poole +WTH-164 U Gemstone Mine @Brom +WWK-13 U Loam Lion @Daniel Ljunggren +WWK-16 U Perimeter Captain @Steven Belledin +WWK-32 R Jwari Shapeshifter @Kev Walker +WWK-36 U Sejiri Merfolk @Anthony Francisco +WWK-45 U Voyager Drake @Kieran Yanner +WWK-53 R Butcher of Malakir @Jason Chan +WWK-59 R Kalastria Highborn @D. Alexander Gregory +WWK-64 R Quest for the Nihil Stone @Mike Bierek +WWK-67 U Shoreline Salvager @Igor Kieryluk +WWK-87 U Ricochet Trap @Jaime Jones +WWK-90 C Searing Blaze @James Paick +WWK-96 M Avenger of Zendikar @Zoltan Boros & Gabor Szikszai +WWK-105 R Harabaz Druid @Wayne Reynolds +WWK-107 U Leatherback Baloth @Dave Kendall +WWK-114 U Summit Apes @Véronique Meignaud +WWK-121 R Amulet of Vigor @Warren Mahy +WWK-123 U Everflowing Chalice @Steve Argyle +WWK-132 C Bojuka Bog @Howard Lyon +XLN-1 U Adanto Vanguard @Anna Steinbauer +XLN-4 U Bellowing Aegisaur @Craig J Spearing +XLN-10 U Emissary of Sunrise @Deruchenko Alexander +XLN-11 C Encampment Keeper @Craig J Spearing +XLN-17 U Ixalan's Binding @Chase Stone +XLN-22 R Legion's Landing @Svetlin Velinov +XLN-23 C Looming Altisaur @Lars Grant-West +XLN-25 C Paladin of the Bloodstained @Bastien L. Deharme +XLN-33 R Sanguine Sacrament @Bastien L. Deharme +XLN-34 R Settle the Wreckage @Dimitar Marinski +XLN-36 C Shining Aerosaur @Dan Murayama Scott +XLN-38 C Slash of Talons @Magali Villeneuve +XLN-40 C Sunrise Seeker @Filip Burburan +XLN-41 C Territorial Hammerskull @Lars Grant-West +XLN-46 R Arcane Adaptation @Mark Behm +XLN-48 U Chart a Course @James Ryman +XLN-53 C Dive Down @Magali Villeneuve +XLN-59 R Herald of Secret Streams @Sara Winters +XLN-68 C Pirate's Prize @Deruchenko Alexander +XLN-69 C Prosperous Pirates @Josh Hass +XLN-74 R Search for Azcanta @Magali Villeneuve +XLN-76 C Shipwreck Looter @Wayne Reynolds +XLN-79 U Siren Stormtamer @Josu Hernaiz +XLN-82 R Spell Swindle @Victor Adame Minguez +XLN-85 C Storm Sculptor @Sidharth Chaturvedi +XLN-86 U Tempest Caller @Ryan Alexander Lee +XLN-88 C Wind Strider @Magali Villeneuve +XLN-91 U Bishop of the Bloodstained @Yongjae Choi +XLN-96 C Costly Plunder @Ben Maier +XLN-98 C Deadeye Tormentor @Eric Deschamps +XLN-101 C Desperate Castaways @Zoltan Boros +XLN-112 C March of the Drowned @Ben Wootten +XLN-114 C Queen's Agent @Winona Nelson +XLN-116 U Raiders' Wake @Zack Stella +XLN-117 R Revel in Riches @Eric Deschamps +XLN-119 U Ruthless Knave @Aaron Miller +XLN-125 C Spreading Rot @Yeong-Hao Han +XLN-130 U Walk the Plank @Kieran Yanner +XLN-134 C Brazen Buccaneers @Joseph Meehan +XLN-138 U Charging Monstrosaur @Zack Stella +XLN-139 C Demolish @Jesper Ejsing +XLN-146 C Frenzied Raptor @Jesper Ejsing +XLN-148 C Hijack @Svetlin Velinov +XLN-160 C Rummaging Goblin @Slawomir Maniak +XLN-161 M Star of Extinction @Chris Rahn +XLN-164 C Sun-Crowned Hunters @Aaron Miller +XLN-167 C Swashbuckling @Josu Hernaiz +XLN-175 C Ancient Brontodon @Jakub Kasper +XLN-178 C Blossom Dryad @Shreya Shetty +XLN-180 C Colossal Dreadmaw @Jesper Ejsing +XLN-185 R Deeproot Champion @Raymond Swanland +XLN-195 C Jungle Delver @Kieran Yanner +XLN-198 C New Horizons @Noah Bradley +XLN-208 U Snapping Sailback @Dan Murayama Scott +XLN-210 U Thundering Spineback @Tomasz Jedruszek +XLN-217 M Admiral Beckett Brass @Jason Rainville +XLN-218 U Belligerent Brontodon @Dan Murayama Scott +XLN-226 U Raging Swordtooth @Izzy +XLN-235 R Dowsing Dagger @Florian de Gesincourt +XLN-249 R Thaumatic Compass @Yeong-Hao Han +XLN-250 R Treasure Map @Cliff Childs +XLN-251 R Vanquisher's Banner @Milivoj Ćeran +XLN-254 U Field of Ruin @Dimitar Marinski +XLN-258 U Unclaimed Territory @Dimitar Marinski +XLN-281 C Castaway's Despair @Chris Rahn +ZEN-11 R Emeria Angel @Jim Murray +ZEN-14 C Journey to Nowhere @Warren Mahy +ZEN-16 U Kazandu Blademaster @Michael Komarck +ZEN-33 U Quest for the Holy Relic @Greg Staples +ZEN-34 U Shepherd of the Lost @Kekai Kotaki +ZEN-36 C Steppe Lynx @Nic Klein +ZEN-41 R Archive Trap @Jason Felix +ZEN-47 U Hedron Crab @Jesper Ejsing +ZEN-53 M Lorthos, the Tidemaker @Kekai Kotaki +ZEN-55 U Merfolk Seastalkers @Eric Deschamps +ZEN-61 R Rite of Replication @Matt Cavotta +ZEN-70 C Spreading Seas @Jung Park +ZEN-82 R Bloodchief Ascension @Adi Granov +ZEN-83 R Bloodghast @Daarken +ZEN-89 U Gatekeeper of Malakir @Karl Kopinski +ZEN-109 U Ravenous Trap @Cyril Van Der Haegen +ZEN-111 M Sorin Markov @Michael Komarck +ZEN-116 U Vampire Nighthawk @Jason Chan +ZEN-125 C Goblin Bushwhacker @Mark Tedin +ZEN-141 C Plated Geopede @Eric Deschamps +ZEN-143 R Pyromancer Ascension @Kev Walker +ZEN-157 U Baloth Woodcrasher @Zoltan Boros & Gabor Szikszai +ZEN-159 R Beastmaster Ascension @Alex Horley-Orlandelli +ZEN-170 M Nissa Revane @Jaime Jones +ZEN-180 U River Boa @Paul Bonner +ZEN-193 C Vines of Vastwood @Christopher Moeller +ZEN-208 U Trailblazer's Boots @Zoltan Boros & Gabor Szikszai +ZEN-209 U Trusty Machete @Raymond Swanland +ZEN-213 R Emeria, the Sky Ruin @Jaime Jones +ZNC-5 R Whispersteel Dagger @Svetlin Velinov +ZNC-27 U Invisible Stalker @Bud Cook +ZNC-103 R Sygg, River Cutthroat @Jeremy Enecio +ZNC-134 U Krosan Verge @Ruxing Gao +ZNR-2 M Angel of Destiny @Ryan Pancoast +ZNR-7 U Canyon Jerboa @Antonio José Manzanedo +ZNR-15 U Fearless Fledgling @Jesper Ejsing +ZNR-16 R Felidar Retreat @Ralph Horsley +ZNR-22 C Kor Celebrant @Jake Murray +ZNR-30 R Ondu Inversion @James Paick +ZNR-44 M Tazri, Beacon of Unity @Chris Rahn +ZNR-50 C Chilling Trap @Johann Bodin +ZNR-71 C Negate @Billy Christian +ZNR-75 U Ruin Crab @Simon Dominic +ZNR-94 U Bloodchief's Thirst @Jason Rainville +ZNR-100 C Dreadwurm @Lius Lasahido +ZNR-106 R Hagra Mauling @Victor Adame Minguez +ZNR-171 U Thundering Sparkmage @Billy Christian +ZNR-174 R Valakut Awakening @Campbell White +ZNR-180 U Bala Ged Recovery @Lucas Staniec +ZNR-182 C Canopy Baloth @Filip Burburan +ZNR-217 U Vastwood Surge @Jason Rainville +ZNR-226 R Linvala, Shield of Sea Gate @Wayne Reynolds +ZNR-237 U Spoils of Adventure @Zezhou Chen +ZNR-258 R Branchloft Pathway @Titus Lunter +ZNR-259 R Brightclimb Pathway @Johannes Voss +ZNR-260 R Clearwater Pathway @Daarken +ZNR-261 R Cragcrown Pathway @Andreas Rocha +ZNR-263 R Needleverge Pathway @Piotr Dura +ZNR-264 R Riverglide Pathway @Kieran Yanner +ZNR-290 U Canyon Jerboa @Dominik Mayer +ZNR-297 C Dreadwurm @Anato Finnstark +ZNR-298 R Skyclave Shade @Dominik Mayer +ZNR-304 C Canopy Baloth @Dominik Mayer + +[tokens] +CMM-40 c_a_clue_draw @John Avon +T2XM-2 c_1_1_shapeshifter_changeling @Steve Prescott +TAFR-1 w_3_3_angel_flying @Irina Nordsol +TAKH-16 w_1_1_cat_lifelink @Filip Burburan +TAKH-17 w_1_1_warrior_vigilance @Magali Villeneuve +TBNG-2 w_1_1_cat_soldier_vigilance @Scott Chou +TC17-1 w_2_2_cat @Scott Chou +TC17-3 b_1_1_rat_deathtouch @Shreya Shetty +TC21-25 c_3_3_a_golem_flying @Andrew Mar +TC21-26 c_3_3_a_golem_trample @Andrew Mar +TC21-27 c_3_3_a_golem_vigilance @Andrew Mar +TCMR-2 w_1_1_soldier @Svetlin Velinov +TGRN-1 w_4_4_angel_flying_vigilance @Grzegorz Rutkowski +TGRN-2 w_1_1_soldier_lifelink @John Severin Brassell +TISD-5 b_2_2_vampire_flying @Svetlin Velinov +TISD-6 b_1_1_wolf_deathtouch @Daniel Ljunggren +TKHM-8 u_2_2_shapshifter_changeling @Filip Burburan +TM20-1 ajanis_pridemate @Howard Lyon +TM21-3 w_2_2_griffin_flying @Johann Bodin +TM21-11 g_2_2_cat @Izzy +TMH2-17 c_a_food_sac @Steven Belledin +TMID-13 g_2_2_wolf @Andrea Radeck +TMID-16 c_a_clue_draw @Campbell White +TNEC-12 c_1_1_a_thopter_flying @Johan Grenier +TNEO-17 c_a_treasure_sac @Yeong-Hao Han +TNPH-1 g_3_3_beast @Dave Allsop +TONE-2 w_2_2_samurai_double_strike @Gaboleps +TORI-5 b_2_2_zombie @Lucas Graciano +TORI-7 ashaya_the_awoken_world @Raymond Swanland +TSHM-12 gw_1_1_elf_warrior @Carl Frank +TSNC-9 g_2_2_cat_haste @David Gaillet +TSNC-10 g_3_1_dog_vigilance @David Gaillet +TSNC-12 gw_1_1_citizen @Maria Poliakova +TSOI-10 wb_1_1_human_cleric @Min Yum +TSTX-5 bg_1_1_pest_lifegain @Ilse Gort +TTSR-10 g_3_3_ape @Lars Grant-West +TXLN-1 w_1_1_vampire_lifelink @John Severin Brassell +TXLN-6 g_0_2_plant_defender @Florian de Gesincourt +TXLN-10 c_a_treasure_sac @Milivoj Ćeran +TZNR-3 w_2_2_cat_beast @Bayard Wu + +[other] +LCI-1 copy @Henry Peters +TCMR-14 monarch @Volkan Baǵa +TRIX-6 blessing @Yeong-Hao Han \ No newline at end of file diff --git a/forge-gui/res/quest/commanderprecons/Angels They're Just Like Us, but Cooler and with Wings [SLD] [2023].dck b/forge-gui/res/quest/commanderprecons/Angels They're Just Like Us, but Cooler and with Wings [SLD] [2023].dck index 8ab44d5917f..2408d463a22 100644 --- a/forge-gui/res/quest/commanderprecons/Angels They're Just Like Us, but Cooler and with Wings [SLD] [2023].dck +++ b/forge-gui/res/quest/commanderprecons/Angels They're Just Like Us, but Cooler and with Wings [SLD] [2023].dck @@ -66,7 +66,7 @@ Set=SLD 1 Swiftfoot Boots|MIC|1 1 Sword of the Animist|CMM|1 1 Swords to Plowshares|LTC|1 -1 Thalia's Lancers|MB1|1 +1 Thalia's Lancers|PLST|1 1 The Book of Exalted Deeds|AFR|1 1 Tome of Legends|ELD|1 1 Urza's Incubator|DMR|2 diff --git a/forge-gui/res/quest/duels/Wort the Raid Mother 3.dck b/forge-gui/res/quest/duels/Wort the Raid Mother 3.dck index 5714314236b..2f12154a3a4 100644 --- a/forge-gui/res/quest/duels/Wort the Raid Mother 3.dck +++ b/forge-gui/res/quest/duels/Wort the Raid Mother 3.dck @@ -29,7 +29,7 @@ Deck Type=constructed 2 Hobgoblin Bandit Lord 2 Ignoble Hierarch 1 Kiki-Jiki, Mirror Breaker -1 Krenko, Mob Boss|MB1|1 +1 Krenko, Mob Boss|PLST|1 1 Krenko, Tin Street Kingpin 2 Legion Loyalist 2 Mad Auntie