Merge branch 'master' into 'master'

Update Edition Types

Closes #1764

See merge request core-developers/forge!4159
This commit is contained in:
Anthony Calosa
2021-03-10 04:23:58 +00:00
226 changed files with 240 additions and 229 deletions

View File

@@ -171,12 +171,13 @@ public final class CardDb implements ICardDatabase, IDeckGenPool {
List<String> missingCards = new ArrayList<>(); List<String> missingCards = new ArrayList<>();
CardEdition upcomingSet = null; CardEdition upcomingSet = null;
Date today = new Date(); Date today = new Date();
List<String> skippedCardName = new ArrayList<>();
for (CardEdition e : editions.getOrderedEditions()) { for (CardEdition e : editions.getOrderedEditions()) {
boolean coreOrExpSet = e.getType() == CardEdition.Type.CORE || e.getType() == CardEdition.Type.EXPANSION; boolean coreOrExpSet = e.getType() == CardEdition.Type.CORE || e.getType() == CardEdition.Type.EXPANSION;
boolean isCoreExpSet = coreOrExpSet || e.getType() == CardEdition.Type.REPRINT; boolean isCoreExpSet = coreOrExpSet || e.getType() == CardEdition.Type.REPRINT;
//todo sets with nonlegal cards should have tags in them so we don't need to specify the code here //todo sets with nonlegal cards should have tags in them so we don't need to specify the code here
boolean skip = !loadNonLegalCards && (e.getCode().equals("CMB1") || e.getBorderColor() == CardEdition.BorderColor.SILVER); boolean skip = !loadNonLegalCards && (e.getType() == CardEdition.Type.FUNNY || e.getBorderColor() == CardEdition.BorderColor.SILVER);
if (logMissingPerEdition && isCoreExpSet) { if (logMissingPerEdition && isCoreExpSet) {
System.out.print(e.getName() + " (" + e.getAllCardsInSet().size() + " cards)"); System.out.print(e.getName() + " (" + e.getAllCardsInSet().size() + " cards)");
} }
@@ -187,8 +188,10 @@ public final class CardDb implements ICardDatabase, IDeckGenPool {
for (CardEdition.CardInSet cis : e.getAllCardsInSet()) { for (CardEdition.CardInSet cis : e.getAllCardsInSet()) {
CardRules cr = rulesByName.get(cis.name); CardRules cr = rulesByName.get(cis.name);
if (cr != null && !cr.getType().isBasicLand() && skip) if (cr != null && !cr.getType().isBasicLand() && skip) {
skippedCardName.add(cis.name);
continue; continue;
}
if (cr != null) { if (cr != null) {
addSetCard(e, cis, cr); addSetCard(e, cis, cr);
@@ -225,7 +228,7 @@ public final class CardDb implements ICardDatabase, IDeckGenPool {
if (!contains(cr.getName())) { if (!contains(cr.getName())) {
if (upcomingSet != null) { if (upcomingSet != null) {
addCard(new PaperCard(cr, upcomingSet.getCode(), CardRarity.Unknown, 1)); addCard(new PaperCard(cr, upcomingSet.getCode(), CardRarity.Unknown, 1));
} else if(enableUnknownCards) { } else if(enableUnknownCards && !skippedCardName.contains(cr.getName())) {
System.err.println("The card " + cr.getName() + " was not assigned to any set. Adding it to UNKNOWN set... to fix see res/editions/ folder. "); System.err.println("The card " + cr.getName() + " was not assigned to any set. Adding it to UNKNOWN set... to fix see res/editions/ folder. ");
addCard(new PaperCard(cr, CardEdition.UNKNOWN.getCode(), CardRarity.Special, 1)); addCard(new PaperCard(cr, CardEdition.UNKNOWN.getCode(), CardRarity.Special, 1));
} }

View File

@@ -65,6 +65,8 @@ public final class CardEdition implements Comparable<CardEdition> { // immutable
FROM_THE_VAULT, FROM_THE_VAULT,
OTHER, OTHER,
PROMOS,
FUNNY,
THIRDPARTY; // custom sets THIRDPARTY; // custom sets
public String getBoosterBoxDefault() { public String getBoosterBoxDefault() {

View File

@@ -141,6 +141,8 @@ public abstract class FormatFilter<T extends InventoryItem> extends ItemFilter<T
lstSets.addGroup("Premium Deck Series"); lstSets.addGroup("Premium Deck Series");
lstSets.addGroup("Reprint Sets"); lstSets.addGroup("Reprint Sets");
lstSets.addGroup("Starter Sets"); lstSets.addGroup("Starter Sets");
lstSets.addGroup("Promo Sets");
lstSets.addGroup("Funny Sets");
lstSets.addGroup("Custom Sets"); lstSets.addGroup("Custom Sets");
lstSets.addGroup("Other Sets"); lstSets.addGroup("Other Sets");
@@ -168,11 +170,17 @@ public abstract class FormatFilter<T extends InventoryItem> extends ItemFilter<T
case STARTER: case STARTER:
lstSets.addItem(set, 6); lstSets.addItem(set, 6);
break; break;
case PROMOS:
lstSets.addItem(set, 7);
break;
case FUNNY:
lstSets.addItem(set, 8);
break;
case THIRDPARTY: case THIRDPARTY:
lstSets.addItem(set, 7); lstSets.addItem(set, 7);
break; break;
default: default:
lstSets.addItem(set, 8); lstSets.addItem(set, 10);
break; break;
} }
} }

View File

@@ -2,7 +2,7 @@
Code=P15A Code=P15A
Date=2008-04-01 Date=2008-04-01
Name=15th Anniversary Cards Name=15th Anniversary Cards
Type=Reprint Type=Promos
[cards] [cards]
1 R Char 1 R Char

View File

@@ -4,7 +4,7 @@ Date=2017-09-20
Name=2016 Heroes of the Realm Name=2016 Heroes of the Realm
Code2=HTR Code2=HTR
MciCode=htr MciCode=htr
Type=Other Type=Funny
[cards] [cards]
1 M Chandra, Gremlin Wrangler 1 M Chandra, Gremlin Wrangler

View File

@@ -4,7 +4,7 @@ Date=2018-08-01
Name=2017 Heroes of the Realm Name=2017 Heroes of the Realm
Code2=HTR17 Code2=HTR17
MciCode=htr17 MciCode=htr17
Type=Other Type=Funny
[cards] [cards]
1 M Diabolical Salvation 1 M Diabolical Salvation

View File

@@ -4,7 +4,7 @@ Date=2019-08-01
Name=2018 Heroes of the Realm Name=2018 Heroes of the Realm
Code2=HTR18 Code2=HTR18
MciCode=htr18 MciCode=htr18
Type=Other Type=Funny
[cards] [cards]
1 M Kharis & The Beholder 1 M Kharis & The Beholder

View File

@@ -2,7 +2,7 @@
Code=PAER Code=PAER
Date=2017-01-21 Date=2017-01-21
Name=Aether Revolt Promos Name=Aether Revolt Promos
Type=Reprint Type=Promos
[cards] [cards]
48 U Trophy Mage 48 U Trophy Mage

View File

@@ -2,7 +2,7 @@
Code=PARB Code=PARB
Date=2009-04-30 Date=2009-04-30
Name=Alara Reborn Promos Name=Alara Reborn Promos
Type=Reprint Type=Promos
[cards] [cards]
53 M Dragon Broodmother 53 M Dragon Broodmother

View File

@@ -2,7 +2,7 @@
Code=PAKH Code=PAKH
Date=2017-04-28 Date=2017-04-28
Name=Amonkhet Promos Name=Amonkhet Promos
Type=Reprint Type=Promos
[cards] [cards]
35 U Trueheart Duelist 35 U Trueheart Duelist

View File

@@ -2,7 +2,7 @@
Code=PAPC Code=PAPC
Date=2001-06-04 Date=2001-06-04
Name=Apocalypse Promos Name=Apocalypse Promos
Type=Reprint Type=Promos
[cards] [cards]
100 R Fungal Shambler 100 R Fungal Shambler

View File

@@ -2,7 +2,7 @@
Code=PARL Code=PARL
Date=1996-08-02 Date=1996-08-02
Name=Arena League 1996 Name=Arena League 1996
Type=Reprint Type=Promos
[cards] [cards]
1 R Plains 1 R Plains

View File

@@ -2,7 +2,7 @@
Code=PAL99 Code=PAL99
Date=1999-01-01 Date=1999-01-01
Name=Arena League 1999 Name=Arena League 1999
Type=Reprint Type=Promos
[cards] [cards]
1 R Forest 1 R Forest

View File

@@ -2,7 +2,7 @@
Code=PAL00 Code=PAL00
Date=2000-01-01 Date=2000-01-01
Name=Arena League 2000 Name=Arena League 2000
Type=Reprint Type=Promos
[cards] [cards]
2 R Duress 2 R Duress

View File

@@ -2,7 +2,7 @@
Code=PAL01 Code=PAL01
Date=2001-01-01 Date=2001-01-01
Name=Arena League 2001 Name=Arena League 2001
Type=Reprint Type=Promos
[cards] [cards]
1 R Forest 1 R Forest

View File

@@ -2,7 +2,7 @@
Code=PAL02 Code=PAL02
Date=2002-01-01 Date=2002-01-01
Name=Arena League 2002 Name=Arena League 2002
Type=Reprint Type=Promos
[cards] [cards]
1 R Island 1 R Island

View File

@@ -2,7 +2,7 @@
Code=PAL03 Code=PAL03
Date=2003-01-01 Date=2003-01-01
Name=Arena League 2003 Name=Arena League 2003
Type=Reprint Type=Promos
[cards] [cards]
1 R Plains 1 R Plains

View File

@@ -2,7 +2,7 @@
Code=PAL04 Code=PAL04
Date=2004-01-01 Date=2004-01-01
Name=Arena League 2004 Name=Arena League 2004
Type=Reprint Type=Promos
[cards] [cards]
1 R Plains 1 R Plains

View File

@@ -2,7 +2,7 @@
Code=PAL05 Code=PAL05
Date=2005-01-01 Date=2005-01-01
Name=Arena League 2005 Name=Arena League 2005
Type=Reprint Type=Promos
[cards] [cards]
1 R Plains 1 R Plains

View File

@@ -2,7 +2,7 @@
Code=PAL06 Code=PAL06
Date=2006-01-01 Date=2006-01-01
Name=Arena League 2006 Name=Arena League 2006
Type=Reprint Type=Promos
[cards] [cards]
1 R Plains 1 R Plains

View File

@@ -2,7 +2,7 @@
Code=PALP Code=PALP
Date=1998-09-01 Date=1998-09-01
Name=Asia Pacific Land Program Name=Asia Pacific Land Program
Type=Reprint Type=Promos
[cards] [cards]
1 C Forest 1 C Forest

View File

@@ -2,7 +2,7 @@
Code=PAVR Code=PAVR
Date=2012-04-28 Date=2012-04-28
Name=Avacyn Restored Promos Name=Avacyn Restored Promos
Type=Reprint Type=Promos
[cards] [cards]
32 R Restoration Angel 32 R Restoration Angel

View File

@@ -2,7 +2,7 @@
Code=PBFZ Code=PBFZ
Date=2015-10-03 Date=2015-10-03
Name=Battle for Zendikar Promos Name=Battle for Zendikar Promos
Type=Reprint Type=Promos
[cards] [cards]
2 R Blight Herder 2 R Blight Herder

View File

@@ -2,7 +2,7 @@
Code=PBOK Code=PBOK
Date=2005-02-04 Date=2005-02-04
Name=Betrayers of Kamigawa Promos Name=Betrayers of Kamigawa Promos
Type=Reprint Type=Promos
[cards] [cards]
71 R Ink-Eyes, Servant of Oni 71 R Ink-Eyes, Servant of Oni

View File

@@ -2,7 +2,7 @@
Code=PBNG Code=PBNG
Date=2014-02-01 Date=2014-02-01
Name=Born of the Gods Promos Name=Born of the Gods Promos
Type=Reprint Type=Promos
[cards] [cards]
26 R Silent Sentinel 26 R Silent Sentinel

View File

@@ -2,7 +2,7 @@
Code=PCEL Code=PCEL
Date=1996-08-14 Date=1996-08-14
Name=Celebration Cards Name=Celebration Cards
Type=Other Type=Funny
[cards] [cards]
1 M 1996 World Champion 1 M 1996 World Champion

View File

@@ -2,7 +2,7 @@
Code=PCHK Code=PCHK
Date=2004-10-01 Date=2004-10-01
Name=Champions of Kamigawa Promos Name=Champions of Kamigawa Promos
Type=Reprint Type=Promos
[cards] [cards]
185 R Ryusei, the Falling Star 185 R Ryusei, the Falling Star

View File

@@ -2,7 +2,7 @@
Code=PCMP Code=PCMP
Date=2006-03-18 Date=2006-03-18
Name=Champs and States Name=Champs and States
Type=Reprint Type=Promos
[cards] [cards]
1 R Electrolyze 1 R Electrolyze

View File

@@ -2,7 +2,7 @@
Code=PCSP Code=PCSP
Date=2006-07-21 Date=2006-07-21
Name=Coldsnap Promos Name=Coldsnap Promos
Type=Reprint Type=Promos
[cards] [cards]
101 R Allosaurus Rider 101 R Allosaurus Rider

View File

@@ -2,7 +2,7 @@
Code=PCON Code=PCON
Date=2009-02-06 Date=2009-02-06
Name=Conflux Promos Name=Conflux Promos
Type=Reprint Type=Promos
[cards] [cards]
117 R Malfegor 117 R Malfegor

View File

@@ -2,7 +2,7 @@
Code=PCNS Code=PCNS
Date=2014-06-06 Date=2014-06-06
Name=Conspiracy Promos Name=Conspiracy Promos
Type=Reprint Type=Promos
[cards] [cards]
48 R Magister of Worth 48 R Magister of Worth

View File

@@ -2,7 +2,7 @@
Code=PM19 Code=PM19
Date=2018-07-13 Date=2018-07-13
Name=Core Set 2019 Promos Name=Core Set 2019 Promos
Type=Reprint Type=Promos
[cards] [cards]
29 U Militia Bugler 29 U Militia Bugler

View File

@@ -2,7 +2,7 @@
Code=PM20 Code=PM20
Date=2019-07-02 Date=2019-07-02
Name=Core Set 2020 Promos Name=Core Set 2020 Promos
Type=Reprint Type=Promos
[cards] [cards]
69 C Negate 69 C Negate

View File

@@ -2,7 +2,7 @@
Code=PLGM Code=PLGM
Date=1995-01-01 Date=1995-01-01
Name=DCI Legend Membership Name=DCI Legend Membership
Type=Reprint Type=Promos
[cards] [cards]
1 R Counterspell 1 R Counterspell

View File

@@ -2,7 +2,7 @@
Code=PDKA Code=PDKA
Date=2012-01-28 Date=2012-01-28
Name=Dark Ascension Promos Name=Dark Ascension Promos
Type=Reprint Type=Promos
[cards] [cards]
64 R Gravecrawler 64 R Gravecrawler

View File

@@ -2,7 +2,7 @@
Code=PDST Code=PDST
Date=2004-06-04 Date=2004-06-04
Name=Darksteel Promos Name=Darksteel Promos
Type=Reprint Type=Promos
[cards] [cards]
139 R Shield of Kaldra 139 R Shield of Kaldra

View File

@@ -2,7 +2,7 @@
Code=PDIS Code=PDIS
Date=2006-05-05 Date=2006-05-05
Name=Dissension Promos Name=Dissension Promos
Type=Reprint Type=Promos
[cards] [cards]
140 R Avatar of Discord 140 R Avatar of Discord

View File

@@ -2,7 +2,7 @@
Code=PDOM Code=PDOM
Date=2018-04-27 Date=2018-04-27
Name=Dominaria Promos Name=Dominaria Promos
Type=Reprint Type=Promos
[cards] [cards]
33 U Serra Angel 33 U Serra Angel

View File

@@ -2,7 +2,7 @@
Code=PDGM Code=PDGM
Date=2013-04-27 Date=2013-04-27
Name=Dragon's Maze Promos Name=Dragon's Maze Promos
Type=Reprint Type=Promos
[cards] [cards]
84 R Melek, Izzet Paragon 84 R Melek, Izzet Paragon

View File

@@ -2,7 +2,7 @@
Code=PDTK Code=PDTK
Date=2015-03-08 Date=2015-03-08
Name=Dragons of Tarkir Promos Name=Dragons of Tarkir Promos
Type=Reprint Type=Promos
[cards] [cards]
96 R Deathbringer Regent 96 R Deathbringer Regent

View File

@@ -2,7 +2,7 @@
Code=PDTP Code=PDTP
Date=2009-01-01 Date=2009-01-01
Name=Duels of the Planeswalkers 2009 Promos Name=Duels of the Planeswalkers 2009 Promos
Type=Reprint Type=Promos
[cards] [cards]
1 M Garruk Wildspeaker 1 M Garruk Wildspeaker

View File

@@ -2,7 +2,7 @@
Code=PDP10 Code=PDP10
Date=2010-01-01 Date=2010-01-01
Name=Duels of the Planeswalkers 2010 Promos Name=Duels of the Planeswalkers 2010 Promos
Type=Reprint Type=Promos
[cards] [cards]
1 M Liliana Vess 1 M Liliana Vess

View File

@@ -2,7 +2,7 @@
Code=PDP12 Code=PDP12
Date=2011-01-01 Date=2011-01-01
Name=Duels of the Planeswalkers 2012 Promos Name=Duels of the Planeswalkers 2012 Promos
Type=Reprint Type=Promos
[cards] [cards]
1 M Frost Titan 1 M Frost Titan

View File

@@ -2,7 +2,7 @@
Code=PDP13 Code=PDP13
Date=2012-01-01 Date=2012-01-01
Name=Duels of the Planeswalkers 2013 Promos Name=Duels of the Planeswalkers 2013 Promos
Type=Reprint Type=Promos
[cards] [cards]
1 M Primordial Hydra 1 M Primordial Hydra

View File

@@ -2,7 +2,7 @@
Code=PDP14 Code=PDP14
Date=2013-01-01 Date=2013-01-01
Name=Duels of the Planeswalkers 2014 Promos Name=Duels of the Planeswalkers 2014 Promos
Type=Reprint Type=Promos
[cards] [cards]
1 R Bonescythe Sliver 1 R Bonescythe Sliver

View File

@@ -2,7 +2,7 @@
Code=PDP15 Code=PDP15
Date=2014-01-01 Date=2014-01-01
Name=Duels of the Planeswalkers 2015 Promos Name=Duels of the Planeswalkers 2015 Promos
Type=Reprint Type=Promos
[cards] [cards]
1 M Soul of Ravnica 1 M Soul of Ravnica

View File

@@ -2,7 +2,7 @@
Code=P8ED Code=P8ED
Date=2003-07-28 Date=2003-07-28
Name=Eighth Edition Promos Name=Eighth Edition Promos
Type=Reprint Type=Promos
[cards] [cards]
216 R Rukh Egg 216 R Rukh Egg

View File

@@ -2,7 +2,7 @@
Code=PEMN Code=PEMN
Date=2016-07-22 Date=2016-07-22
Name=Eldritch Moon Promos Name=Eldritch Moon Promos
Type=Reprint Type=Promos
[cards] [cards]
39 R Sanctifier of Souls 39 R Sanctifier of Souls

View File

@@ -2,7 +2,7 @@
Code=PELP Code=PELP
Date=2000-02-05 Date=2000-02-05
Name=European Land Program Name=European Land Program
Type=Reprint Type=Promos
[cards] [cards]
1 C Forest 1 C Forest

View File

@@ -2,7 +2,7 @@
Code=PEVE Code=PEVE
Date=2008-07-25 Date=2008-07-25
Name=Eventide Promos Name=Eventide Promos
Type=Reprint Type=Promos
[cards] [cards]
139 R Figure of Destiny 139 R Figure of Destiny

View File

@@ -2,7 +2,7 @@
Code=PEXO Code=PEXO
Date=1998-06-15 Date=1998-06-15
Name=Exodus Promos Name=Exodus Promos
Type=Reprint Type=Promos
[cards] [cards]
89 R Monstrous Hound 89 R Monstrous Hound

View File

@@ -2,7 +2,7 @@
Code=CP2 Code=CP2
Date=2015-01-23 Date=2015-01-23
Name=Fate Reforged Clash Pack Name=Fate Reforged Clash Pack
Type=Reprint Type=Promos
[cards] [cards]
1 R Necropolis Fiend 1 R Necropolis Fiend

View File

@@ -2,7 +2,7 @@
Code=PFRF Code=PFRF
Date=2015-01-24 Date=2015-01-24
Name=Fate Reforged Promos Name=Fate Reforged Promos
Type=Reprint Type=Promos
[cards] [cards]
11 R Dragonscale General 11 R Dragonscale General

View File

@@ -2,7 +2,7 @@
Code=P5DN Code=P5DN
Date=2004-06-04 Date=2004-06-04
Name=Fifth Dawn Promos Name=Fifth Dawn Promos
Type=Reprint Type=Promos
[cards] [cards]
131 R Helm of Kaldra 131 R Helm of Kaldra

View File

@@ -2,7 +2,7 @@
Code=FNM Code=FNM
Date=2000-01-01 Date=2000-01-01
Name=Friday Night Magic 2000 Name=Friday Night Magic 2000
Type=Reprint Type=Promos
[cards] [cards]
1 R River Boa 1 R River Boa

View File

@@ -2,7 +2,7 @@
Code=F01 Code=F01
Date=2001-01-01 Date=2001-01-01
Name=Friday Night Magic 2001 Name=Friday Night Magic 2001
Type=Reprint Type=Promos
[cards] [cards]
6 R Swords to Plowshares 6 R Swords to Plowshares

View File

@@ -2,7 +2,7 @@
Code=F02 Code=F02
Date=2002-01-01 Date=2002-01-01
Name=Friday Night Magic 2002 Name=Friday Night Magic 2002
Type=Reprint Type=Promos
[cards] [cards]
1 R Soltari Priest 1 R Soltari Priest

View File

@@ -2,7 +2,7 @@
Code=F03 Code=F03
Date=2003-01-01 Date=2003-01-01
Name=Friday Night Magic 2003 Name=Friday Night Magic 2003
Type=Reprint Type=Promos
[cards] [cards]
1 R Bottle Gnomes 1 R Bottle Gnomes

View File

@@ -2,7 +2,7 @@
Code=F04 Code=F04
Date=2004-01-01 Date=2004-01-01
Name=Friday Night Magic 2004 Name=Friday Night Magic 2004
Type=Reprint Type=Promos
[cards] [cards]
1 R Willbender 1 R Willbender

View File

@@ -2,7 +2,7 @@
Code=F05 Code=F05
Date=2005-01-01 Date=2005-01-01
Name=Friday Night Magic 2005 Name=Friday Night Magic 2005
Type=Reprint Type=Promos
[cards] [cards]
1 R Rancor 1 R Rancor

View File

@@ -2,7 +2,7 @@
Code=F06 Code=F06
Date=2006-01-01 Date=2006-01-01
Name=Friday Night Magic 2006 Name=Friday Night Magic 2006
Type=Reprint Type=Promos
[cards] [cards]
1 R Elves of Deep Shadow 1 R Elves of Deep Shadow

View File

@@ -2,7 +2,7 @@
Code=F07 Code=F07
Date=2007-01-01 Date=2007-01-01
Name=Friday Night Magic 2007 Name=Friday Night Magic 2007
Type=Reprint Type=Promos
[cards] [cards]
1 R Firebolt 1 R Firebolt

View File

@@ -2,7 +2,7 @@
Code=F08 Code=F08
Date=2008-01-01 Date=2008-01-01
Name=Friday Night Magic 2008 Name=Friday Night Magic 2008
Type=Reprint Type=Promos
[cards] [cards]
1 R Remand 1 R Remand

View File

@@ -2,7 +2,7 @@
Code=F09 Code=F09
Date=2009-01-01 Date=2009-01-01
Name=Friday Night Magic 2009 Name=Friday Night Magic 2009
Type=Reprint Type=Promos
[cards] [cards]
1 R Magma Jet 1 R Magma Jet

View File

@@ -2,7 +2,7 @@
Code=F10 Code=F10
Date=2010-01-01 Date=2010-01-01
Name=Friday Night Magic 2010 Name=Friday Night Magic 2010
Type=Reprint Type=Promos
[cards] [cards]
1 R Tidehollow Sculler 1 R Tidehollow Sculler

View File

@@ -2,7 +2,7 @@
Code=F11 Code=F11
Date=2011-01-01 Date=2011-01-01
Name=Friday Night Magic 2011 Name=Friday Night Magic 2011
Type=Reprint Type=Promos
[cards] [cards]
1 R Everflowing Chalice 1 R Everflowing Chalice

View File

@@ -2,7 +2,7 @@
Code=F12 Code=F12
Date=2012-01-01 Date=2012-01-01
Name=Friday Night Magic 2012 Name=Friday Night Magic 2012
Type=Reprint Type=Promos
[cards] [cards]
1 R Glistener Elf 1 R Glistener Elf

View File

@@ -2,7 +2,7 @@
Code=F13 Code=F13
Date=2013-01-01 Date=2013-01-01
Name=Friday Night Magic 2013 Name=Friday Night Magic 2013
Type=Reprint Type=Promos
[cards] [cards]
1 R Searing Spear 1 R Searing Spear

View File

@@ -2,7 +2,7 @@
Code=F14 Code=F14
Date=2014-01-01 Date=2014-01-01
Name=Friday Night Magic 2014 Name=Friday Night Magic 2014
Type=Reprint Type=Promos
[cards] [cards]
1 R Warleader's Helix 1 R Warleader's Helix

View File

@@ -2,7 +2,7 @@
Code=F15 Code=F15
Date=2015-01-01 Date=2015-01-01
Name=Friday Night Magic 2015 Name=Friday Night Magic 2015
Type=Reprint Type=Promos
[cards] [cards]
1 R Frenzied Goblin 1 R Frenzied Goblin

View File

@@ -2,7 +2,7 @@
Code=F16 Code=F16
Date=2016-01-01 Date=2016-01-01
Name=Friday Night Magic 2016 Name=Friday Night Magic 2016
Type=Reprint Type=Promos
[cards] [cards]
1 R Nissa's Pilgrimage 1 R Nissa's Pilgrimage

View File

@@ -2,7 +2,7 @@
Code=F17 Code=F17
Date=2017-01-01 Date=2017-01-01
Name=Friday Night Magic 2017 Name=Friday Night Magic 2017
Type=Reprint Type=Promos
[cards] [cards]
1 R Noose Constrictor 1 R Noose Constrictor

View File

@@ -2,7 +2,7 @@
Code=PFUT Code=PFUT
Date=2007-05-04 Date=2007-05-04
Name=Future Sight Promos Name=Future Sight Promos
Type=Reprint Type=Promos
[cards] [cards]
87 R Korlash, Heir to Blackblade 87 R Korlash, Heir to Blackblade

View File

@@ -2,7 +2,7 @@
Code=PRWK Code=PRWK
Date=2018-11-09 Date=2018-11-09
Name=GRN Ravnica Weekend Name=GRN Ravnica Weekend
Type=Reprint Type=Promos
[cards] [cards]
1 C Island 1 C Island

View File

@@ -2,7 +2,7 @@
Code=PGTC Code=PGTC
Date=2013-01-26 Date=2013-01-26
Name=Gatecrash Promos Name=Gatecrash Promos
Type=Reprint Type=Promos
[cards] [cards]
133 R Skarrg Goliath 133 R Skarrg Goliath

View File

@@ -2,7 +2,7 @@
Code=PGPT Code=PGPT
Date=2006-02-03 Date=2006-02-03
Name=Guildpact Promos Name=Guildpact Promos
Type=Reprint Type=Promos
[cards] [cards]
142 R Djinn Illuminatus 142 R Djinn Illuminatus

View File

@@ -2,7 +2,7 @@
Code=PGRN Code=PGRN
Date=2018-10-05 Date=2018-10-05
Name=Guilds of Ravnica Promos Name=Guilds of Ravnica Promos
Type=Reprint Type=Promos
[cards] [cards]
6 U Conclave Tribunal 6 U Conclave Tribunal

View File

@@ -2,7 +2,7 @@
Code=PGRU Code=PGRU
Date=1999-07-12 Date=1999-07-12
Name=Guru Name=Guru
Type=Reprint Type=Promos
[cards] [cards]
1 R Plains 1 R Plains

View File

@@ -2,7 +2,7 @@
Code=HHO Code=HHO
Date=2006-12-31 Date=2006-12-31
Name=Happy Holidays Name=Happy Holidays
Type=Other Type=Funny
Border=Silver Border=Silver
[cards] [cards]

View File

@@ -2,7 +2,7 @@
Code=PHJ Code=PHJ
Date=2002-07-21 Date=2002-07-21
Name=Hobby Japan Promos Name=Hobby Japan Promos
Type=Reprint Type=Promos
[cards] [cards]
1 R Goblin Mutant 1 R Goblin Mutant

View File

@@ -2,7 +2,7 @@
Code=PHOU Code=PHOU
Date=2017-07-14 Date=2017-07-14
Name=Hour of Devastation Promos Name=Hour of Devastation Promos
Type=Reprint Type=Promos
[cards] [cards]
2 R Adorned Pouncer 2 R Adorned Pouncer

View File

@@ -2,7 +2,7 @@
Code=PIDW Code=PIDW
Date=2012-01-01 Date=2012-01-01
Name=IDW Comics 2012 Name=IDW Comics 2012
Type=Reprint Type=Promos
[cards] [cards]
1 R Treasure Hunt 1 R Treasure Hunt

View File

@@ -2,7 +2,7 @@
Code=PI13 Code=PI13
Date=2013-01-01 Date=2013-01-01
Name=IDW Comics 2013 Name=IDW Comics 2013
Type=Reprint Type=Promos
[cards] [cards]
10 R Voidmage Husher 10 R Voidmage Husher

View File

@@ -2,7 +2,7 @@
Code=PI14 Code=PI14
Date=2014-01-01 Date=2014-01-01
Name=IDW Comics 2014 Name=IDW Comics 2014
Type=Reprint Type=Promos
[cards] [cards]
15 R Wash Out 15 R Wash Out

View File

@@ -2,7 +2,7 @@
Code=PISD Code=PISD
Date=2011-01-01 Date=2011-01-01
Name=Innistrad Promos Name=Innistrad Promos
Type=Reprint Type=Promos
[cards] [cards]
13 R Elite Inquisitor 13 R Elite Inquisitor

View File

@@ -2,7 +2,7 @@
Code=PINV Code=PINV
Date=2000-10-02 Date=2000-10-02
Name=Invasion Promos Name=Invasion Promos
Type=Reprint Type=Promos
[cards] [cards]
262 R Raging Kavu 262 R Raging Kavu

View File

@@ -2,7 +2,7 @@
Code=PXLN Code=PXLN
Date=2017-09-29 Date=2017-09-29
Name=Ixalan Promos Name=Ixalan Promos
Type=Reprint Type=Promos
[cards] [cards]
5 R Bishop of Rebirth 5 R Bishop of Rebirth

View File

@@ -2,7 +2,7 @@
Code=PJJT Code=PJJT
Date=2003-01-01 Date=2003-01-01
Name=Japan Junior Tournament Name=Japan Junior Tournament
Type=Reprint Type=Promos
[cards] [cards]
3 R Volcanic Hammer 3 R Volcanic Hammer

View File

@@ -2,7 +2,7 @@
Code=PJOU Code=PJOU
Date=2014-04-26 Date=2014-04-26
Name=Journey into Nyx Promos Name=Journey into Nyx Promos
Type=Reprint Type=Promos
[cards] [cards]
6 R Dawnbringer Charioteers 6 R Dawnbringer Charioteers

View File

@@ -2,7 +2,7 @@
Code=JGP Code=JGP
Date=1998-01-01 Date=1998-01-01
Name=Judge Gift Cards 1998 Name=Judge Gift Cards 1998
Type=Reprint Type=Promos
[cards] [cards]
1 R Lightning Bolt 1 R Lightning Bolt

View File

@@ -2,7 +2,7 @@
Code=G99 Code=G99
Date=1999-01-01 Date=1999-01-01
Name=Judge Gift Cards 1999 Name=Judge Gift Cards 1999
Type=Reprint Type=Promos
[cards] [cards]
1 R Memory Lapse 1 R Memory Lapse

View File

@@ -2,7 +2,7 @@
Code=G00 Code=G00
Date=2000-01-01 Date=2000-01-01
Name=Judge Gift Cards 2000 Name=Judge Gift Cards 2000
Type=Reprint Type=Promos
[cards] [cards]
1 R Counterspell 1 R Counterspell

View File

@@ -2,7 +2,7 @@
Code=G01 Code=G01
Date=2001-01-01 Date=2001-01-01
Name=Judge Gift Cards 2001 Name=Judge Gift Cards 2001
Type=Reprint Type=Promos
[cards] [cards]
1 R Ball Lightning 1 R Ball Lightning

View File

@@ -2,7 +2,7 @@
Code=G02 Code=G02
Date=2002-01-01 Date=2002-01-01
Name=Judge Gift Cards 2002 Name=Judge Gift Cards 2002
Type=Reprint Type=Promos
[cards] [cards]
1 R Hammer of Bogardan 1 R Hammer of Bogardan

View File

@@ -2,7 +2,7 @@
Code=G04 Code=G04
Date=2004-01-01 Date=2004-01-01
Name=Judge Gift Cards 2004 Name=Judge Gift Cards 2004
Type=Reprint Type=Promos
[cards] [cards]
1 R Armageddon 1 R Armageddon

View File

@@ -2,7 +2,7 @@
Code=G05 Code=G05
Date=2005-01-01 Date=2005-01-01
Name=Judge Gift Cards 2005 Name=Judge Gift Cards 2005
Type=Reprint Type=Promos
[cards] [cards]
1 R Gemstone Mine 1 R Gemstone Mine

View File

@@ -2,7 +2,7 @@
Code=G06 Code=G06
Date=2006-01-01 Date=2006-01-01
Name=Judge Gift Cards 2006 Name=Judge Gift Cards 2006
Type=Reprint Type=Promos
[cards] [cards]
1 R Exalted Angel 1 R Exalted Angel

View File

@@ -2,7 +2,7 @@
Code=G07 Code=G07
Date=2007-01-01 Date=2007-01-01
Name=Judge Gift Cards 2007 Name=Judge Gift Cards 2007
Type=Reprint Type=Promos
[cards] [cards]
1 R Ravenous Baloth 1 R Ravenous Baloth

View File

@@ -2,7 +2,7 @@
Code=G08 Code=G08
Date=2008-01-01 Date=2008-01-01
Name=Judge Gift Cards 2008 Name=Judge Gift Cards 2008
Type=Reprint Type=Promos
[cards] [cards]
1 R Orim's Chant 1 R Orim's Chant

View File

@@ -2,7 +2,7 @@
Code=G09 Code=G09
Date=2009-01-01 Date=2009-01-01
Name=Judge Gift Cards 2009 Name=Judge Gift Cards 2009
Type=Reprint Type=Promos
[cards] [cards]
1 R Dark Ritual 1 R Dark Ritual

Some files were not shown because too many files have changed in this diff Show More