mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
Merge branch 'master' into 'master'
Update Edition Types Closes #1764 See merge request core-developers/forge!4159
This commit is contained in:
@@ -171,12 +171,13 @@ public final class CardDb implements ICardDatabase, IDeckGenPool {
|
||||
List<String> missingCards = new ArrayList<>();
|
||||
CardEdition upcomingSet = null;
|
||||
Date today = new Date();
|
||||
List<String> skippedCardName = new ArrayList<>();
|
||||
|
||||
for (CardEdition e : editions.getOrderedEditions()) {
|
||||
boolean coreOrExpSet = e.getType() == CardEdition.Type.CORE || e.getType() == CardEdition.Type.EXPANSION;
|
||||
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
|
||||
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) {
|
||||
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()) {
|
||||
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;
|
||||
}
|
||||
|
||||
if (cr != null) {
|
||||
addSetCard(e, cis, cr);
|
||||
@@ -225,7 +228,7 @@ public final class CardDb implements ICardDatabase, IDeckGenPool {
|
||||
if (!contains(cr.getName())) {
|
||||
if (upcomingSet != null) {
|
||||
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. ");
|
||||
addCard(new PaperCard(cr, CardEdition.UNKNOWN.getCode(), CardRarity.Special, 1));
|
||||
}
|
||||
|
||||
@@ -65,6 +65,8 @@ public final class CardEdition implements Comparable<CardEdition> { // immutable
|
||||
FROM_THE_VAULT,
|
||||
|
||||
OTHER,
|
||||
PROMOS,
|
||||
FUNNY,
|
||||
THIRDPARTY; // custom sets
|
||||
|
||||
public String getBoosterBoxDefault() {
|
||||
|
||||
@@ -141,6 +141,8 @@ public abstract class FormatFilter<T extends InventoryItem> extends ItemFilter<T
|
||||
lstSets.addGroup("Premium Deck Series");
|
||||
lstSets.addGroup("Reprint Sets");
|
||||
lstSets.addGroup("Starter Sets");
|
||||
lstSets.addGroup("Promo Sets");
|
||||
lstSets.addGroup("Funny Sets");
|
||||
lstSets.addGroup("Custom Sets");
|
||||
lstSets.addGroup("Other Sets");
|
||||
|
||||
@@ -168,11 +170,17 @@ public abstract class FormatFilter<T extends InventoryItem> extends ItemFilter<T
|
||||
case STARTER:
|
||||
lstSets.addItem(set, 6);
|
||||
break;
|
||||
case PROMOS:
|
||||
lstSets.addItem(set, 7);
|
||||
break;
|
||||
case FUNNY:
|
||||
lstSets.addItem(set, 8);
|
||||
break;
|
||||
case THIRDPARTY:
|
||||
lstSets.addItem(set, 7);
|
||||
break;
|
||||
default:
|
||||
lstSets.addItem(set, 8);
|
||||
lstSets.addItem(set, 10);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=P15A
|
||||
Date=2008-04-01
|
||||
Name=15th Anniversary Cards
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Char
|
||||
|
||||
@@ -4,7 +4,7 @@ Date=2017-09-20
|
||||
Name=2016 Heroes of the Realm
|
||||
Code2=HTR
|
||||
MciCode=htr
|
||||
Type=Other
|
||||
Type=Funny
|
||||
|
||||
[cards]
|
||||
1 M Chandra, Gremlin Wrangler
|
||||
|
||||
@@ -4,7 +4,7 @@ Date=2018-08-01
|
||||
Name=2017 Heroes of the Realm
|
||||
Code2=HTR17
|
||||
MciCode=htr17
|
||||
Type=Other
|
||||
Type=Funny
|
||||
|
||||
[cards]
|
||||
1 M Diabolical Salvation
|
||||
|
||||
@@ -4,7 +4,7 @@ Date=2019-08-01
|
||||
Name=2018 Heroes of the Realm
|
||||
Code2=HTR18
|
||||
MciCode=htr18
|
||||
Type=Other
|
||||
Type=Funny
|
||||
|
||||
[cards]
|
||||
1 M Kharis & The Beholder
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PAER
|
||||
Date=2017-01-21
|
||||
Name=Aether Revolt Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
48 U Trophy Mage
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PARB
|
||||
Date=2009-04-30
|
||||
Name=Alara Reborn Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
53 M Dragon Broodmother
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PAKH
|
||||
Date=2017-04-28
|
||||
Name=Amonkhet Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
35 U Trueheart Duelist
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PAPC
|
||||
Date=2001-06-04
|
||||
Name=Apocalypse Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
100 R Fungal Shambler
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PARL
|
||||
Date=1996-08-02
|
||||
Name=Arena League 1996
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Plains
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PAL99
|
||||
Date=1999-01-01
|
||||
Name=Arena League 1999
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Forest
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PAL00
|
||||
Date=2000-01-01
|
||||
Name=Arena League 2000
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
2 R Duress
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PAL01
|
||||
Date=2001-01-01
|
||||
Name=Arena League 2001
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Forest
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PAL02
|
||||
Date=2002-01-01
|
||||
Name=Arena League 2002
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Island
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PAL03
|
||||
Date=2003-01-01
|
||||
Name=Arena League 2003
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Plains
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PAL04
|
||||
Date=2004-01-01
|
||||
Name=Arena League 2004
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Plains
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PAL05
|
||||
Date=2005-01-01
|
||||
Name=Arena League 2005
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Plains
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PAL06
|
||||
Date=2006-01-01
|
||||
Name=Arena League 2006
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Plains
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PALP
|
||||
Date=1998-09-01
|
||||
Name=Asia Pacific Land Program
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 C Forest
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PAVR
|
||||
Date=2012-04-28
|
||||
Name=Avacyn Restored Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
32 R Restoration Angel
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PBFZ
|
||||
Date=2015-10-03
|
||||
Name=Battle for Zendikar Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
2 R Blight Herder
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PBOK
|
||||
Date=2005-02-04
|
||||
Name=Betrayers of Kamigawa Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
71 R Ink-Eyes, Servant of Oni
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PBNG
|
||||
Date=2014-02-01
|
||||
Name=Born of the Gods Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
26 R Silent Sentinel
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PCEL
|
||||
Date=1996-08-14
|
||||
Name=Celebration Cards
|
||||
Type=Other
|
||||
Type=Funny
|
||||
|
||||
[cards]
|
||||
1 M 1996 World Champion
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PCHK
|
||||
Date=2004-10-01
|
||||
Name=Champions of Kamigawa Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
185 R Ryusei, the Falling Star
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PCMP
|
||||
Date=2006-03-18
|
||||
Name=Champs and States
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Electrolyze
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PCSP
|
||||
Date=2006-07-21
|
||||
Name=Coldsnap Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
101 R Allosaurus Rider
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PCON
|
||||
Date=2009-02-06
|
||||
Name=Conflux Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
117 R Malfegor
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PCNS
|
||||
Date=2014-06-06
|
||||
Name=Conspiracy Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
48 R Magister of Worth
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PM19
|
||||
Date=2018-07-13
|
||||
Name=Core Set 2019 Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
29 U Militia Bugler
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PM20
|
||||
Date=2019-07-02
|
||||
Name=Core Set 2020 Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
69 C Negate
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PLGM
|
||||
Date=1995-01-01
|
||||
Name=DCI Legend Membership
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Counterspell
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PDKA
|
||||
Date=2012-01-28
|
||||
Name=Dark Ascension Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
64 R Gravecrawler
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PDST
|
||||
Date=2004-06-04
|
||||
Name=Darksteel Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
139 R Shield of Kaldra
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PDIS
|
||||
Date=2006-05-05
|
||||
Name=Dissension Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
140 R Avatar of Discord
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PDOM
|
||||
Date=2018-04-27
|
||||
Name=Dominaria Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
33 U Serra Angel
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PDGM
|
||||
Date=2013-04-27
|
||||
Name=Dragon's Maze Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
84 R Melek, Izzet Paragon
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PDTK
|
||||
Date=2015-03-08
|
||||
Name=Dragons of Tarkir Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
96 R Deathbringer Regent
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PDTP
|
||||
Date=2009-01-01
|
||||
Name=Duels of the Planeswalkers 2009 Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 M Garruk Wildspeaker
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PDP10
|
||||
Date=2010-01-01
|
||||
Name=Duels of the Planeswalkers 2010 Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 M Liliana Vess
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PDP12
|
||||
Date=2011-01-01
|
||||
Name=Duels of the Planeswalkers 2012 Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 M Frost Titan
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PDP13
|
||||
Date=2012-01-01
|
||||
Name=Duels of the Planeswalkers 2013 Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 M Primordial Hydra
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PDP14
|
||||
Date=2013-01-01
|
||||
Name=Duels of the Planeswalkers 2014 Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Bonescythe Sliver
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PDP15
|
||||
Date=2014-01-01
|
||||
Name=Duels of the Planeswalkers 2015 Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 M Soul of Ravnica
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=P8ED
|
||||
Date=2003-07-28
|
||||
Name=Eighth Edition Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
216 R Rukh Egg
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PEMN
|
||||
Date=2016-07-22
|
||||
Name=Eldritch Moon Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
39 R Sanctifier of Souls
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PELP
|
||||
Date=2000-02-05
|
||||
Name=European Land Program
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 C Forest
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PEVE
|
||||
Date=2008-07-25
|
||||
Name=Eventide Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
139 R Figure of Destiny
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PEXO
|
||||
Date=1998-06-15
|
||||
Name=Exodus Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
89 R Monstrous Hound
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=CP2
|
||||
Date=2015-01-23
|
||||
Name=Fate Reforged Clash Pack
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Necropolis Fiend
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PFRF
|
||||
Date=2015-01-24
|
||||
Name=Fate Reforged Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
11 R Dragonscale General
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=P5DN
|
||||
Date=2004-06-04
|
||||
Name=Fifth Dawn Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
131 R Helm of Kaldra
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=FNM
|
||||
Date=2000-01-01
|
||||
Name=Friday Night Magic 2000
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R River Boa
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=F01
|
||||
Date=2001-01-01
|
||||
Name=Friday Night Magic 2001
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
6 R Swords to Plowshares
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=F02
|
||||
Date=2002-01-01
|
||||
Name=Friday Night Magic 2002
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Soltari Priest
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=F03
|
||||
Date=2003-01-01
|
||||
Name=Friday Night Magic 2003
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Bottle Gnomes
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=F04
|
||||
Date=2004-01-01
|
||||
Name=Friday Night Magic 2004
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Willbender
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=F05
|
||||
Date=2005-01-01
|
||||
Name=Friday Night Magic 2005
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Rancor
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=F06
|
||||
Date=2006-01-01
|
||||
Name=Friday Night Magic 2006
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Elves of Deep Shadow
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=F07
|
||||
Date=2007-01-01
|
||||
Name=Friday Night Magic 2007
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Firebolt
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=F08
|
||||
Date=2008-01-01
|
||||
Name=Friday Night Magic 2008
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Remand
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=F09
|
||||
Date=2009-01-01
|
||||
Name=Friday Night Magic 2009
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Magma Jet
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=F10
|
||||
Date=2010-01-01
|
||||
Name=Friday Night Magic 2010
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Tidehollow Sculler
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=F11
|
||||
Date=2011-01-01
|
||||
Name=Friday Night Magic 2011
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Everflowing Chalice
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=F12
|
||||
Date=2012-01-01
|
||||
Name=Friday Night Magic 2012
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Glistener Elf
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=F13
|
||||
Date=2013-01-01
|
||||
Name=Friday Night Magic 2013
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Searing Spear
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=F14
|
||||
Date=2014-01-01
|
||||
Name=Friday Night Magic 2014
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Warleader's Helix
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=F15
|
||||
Date=2015-01-01
|
||||
Name=Friday Night Magic 2015
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Frenzied Goblin
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=F16
|
||||
Date=2016-01-01
|
||||
Name=Friday Night Magic 2016
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Nissa's Pilgrimage
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=F17
|
||||
Date=2017-01-01
|
||||
Name=Friday Night Magic 2017
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Noose Constrictor
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PFUT
|
||||
Date=2007-05-04
|
||||
Name=Future Sight Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
87 R Korlash, Heir to Blackblade
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PRWK
|
||||
Date=2018-11-09
|
||||
Name=GRN Ravnica Weekend
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 C Island
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PGTC
|
||||
Date=2013-01-26
|
||||
Name=Gatecrash Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
133 R Skarrg Goliath
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PGPT
|
||||
Date=2006-02-03
|
||||
Name=Guildpact Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
142 R Djinn Illuminatus
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PGRN
|
||||
Date=2018-10-05
|
||||
Name=Guilds of Ravnica Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
6 U Conclave Tribunal
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PGRU
|
||||
Date=1999-07-12
|
||||
Name=Guru
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Plains
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=HHO
|
||||
Date=2006-12-31
|
||||
Name=Happy Holidays
|
||||
Type=Other
|
||||
Type=Funny
|
||||
Border=Silver
|
||||
|
||||
[cards]
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PHJ
|
||||
Date=2002-07-21
|
||||
Name=Hobby Japan Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Goblin Mutant
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PHOU
|
||||
Date=2017-07-14
|
||||
Name=Hour of Devastation Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
2 R Adorned Pouncer
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PIDW
|
||||
Date=2012-01-01
|
||||
Name=IDW Comics 2012
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Treasure Hunt
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PI13
|
||||
Date=2013-01-01
|
||||
Name=IDW Comics 2013
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
10 R Voidmage Husher
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PI14
|
||||
Date=2014-01-01
|
||||
Name=IDW Comics 2014
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
15 R Wash Out
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PISD
|
||||
Date=2011-01-01
|
||||
Name=Innistrad Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
13 R Elite Inquisitor
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PINV
|
||||
Date=2000-10-02
|
||||
Name=Invasion Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
262 R Raging Kavu
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PXLN
|
||||
Date=2017-09-29
|
||||
Name=Ixalan Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
5 R Bishop of Rebirth
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PJJT
|
||||
Date=2003-01-01
|
||||
Name=Japan Junior Tournament
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
3 R Volcanic Hammer
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=PJOU
|
||||
Date=2014-04-26
|
||||
Name=Journey into Nyx Promos
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
6 R Dawnbringer Charioteers
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=JGP
|
||||
Date=1998-01-01
|
||||
Name=Judge Gift Cards 1998
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Lightning Bolt
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=G99
|
||||
Date=1999-01-01
|
||||
Name=Judge Gift Cards 1999
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Memory Lapse
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=G00
|
||||
Date=2000-01-01
|
||||
Name=Judge Gift Cards 2000
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Counterspell
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=G01
|
||||
Date=2001-01-01
|
||||
Name=Judge Gift Cards 2001
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Ball Lightning
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=G02
|
||||
Date=2002-01-01
|
||||
Name=Judge Gift Cards 2002
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Hammer of Bogardan
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=G04
|
||||
Date=2004-01-01
|
||||
Name=Judge Gift Cards 2004
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Armageddon
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=G05
|
||||
Date=2005-01-01
|
||||
Name=Judge Gift Cards 2005
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Gemstone Mine
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=G06
|
||||
Date=2006-01-01
|
||||
Name=Judge Gift Cards 2006
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Exalted Angel
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=G07
|
||||
Date=2007-01-01
|
||||
Name=Judge Gift Cards 2007
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Ravenous Baloth
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=G08
|
||||
Date=2008-01-01
|
||||
Name=Judge Gift Cards 2008
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Orim's Chant
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
Code=G09
|
||||
Date=2009-01-01
|
||||
Name=Judge Gift Cards 2009
|
||||
Type=Reprint
|
||||
Type=Promos
|
||||
|
||||
[cards]
|
||||
1 R Dark Ritual
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user