mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 10:18:01 +00:00
Remove unused MciCode
This commit is contained in:
@@ -252,11 +252,10 @@ public final class CardEdition implements Comparable<CardEdition> {
|
|||||||
|
|
||||||
private final static SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
|
private final static SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
|
||||||
|
|
||||||
public static final CardEdition UNKNOWN = new CardEdition("1990-01-01", "???", "??", "??", Type.UNKNOWN, "Undefined", FoilType.NOT_SUPPORTED, new CardInSet[]{});
|
public static final CardEdition UNKNOWN = new CardEdition("1990-01-01", "???", "??", Type.UNKNOWN, "Undefined", FoilType.NOT_SUPPORTED, new CardInSet[]{});
|
||||||
private Date date;
|
private Date date;
|
||||||
private String code;
|
private String code;
|
||||||
private String code2;
|
private String code2;
|
||||||
private String mciCode;
|
|
||||||
private String scryfallCode;
|
private String scryfallCode;
|
||||||
private String cardsLanguage;
|
private String cardsLanguage;
|
||||||
private Type type;
|
private Type type;
|
||||||
@@ -323,16 +322,14 @@ public final class CardEdition implements Comparable<CardEdition> {
|
|||||||
* use Magic Workstation-type edition codes. Older sets only had 2-letter codes, and some of the 3-letter
|
* use Magic Workstation-type edition codes. Older sets only had 2-letter codes, and some of the 3-letter
|
||||||
* codes they use now aren't the same as the official list of 3-letter codes. When Forge downloads set-pics,
|
* codes they use now aren't the same as the official list of 3-letter codes. When Forge downloads set-pics,
|
||||||
* it uses the 3-letter codes for the folder no matter the age of the set.
|
* it uses the 3-letter codes for the folder no matter the age of the set.
|
||||||
* @param mciCode the code used by magiccards.info website.
|
|
||||||
* @param type the set type
|
* @param type the set type
|
||||||
* @param name the name of the set
|
* @param name the name of the set
|
||||||
* @param cards the cards in the set
|
* @param cards the cards in the set
|
||||||
*/
|
*/
|
||||||
private CardEdition(String date, String code, String code2, String mciCode, Type type, String name, FoilType foil, CardInSet[] cards) {
|
private CardEdition(String date, String code, String code2, Type type, String name, FoilType foil, CardInSet[] cards) {
|
||||||
this(cards, new HashMap<>());
|
this(cards, new HashMap<>());
|
||||||
this.code = code;
|
this.code = code;
|
||||||
this.code2 = code2;
|
this.code2 = code2;
|
||||||
this.mciCode = mciCode;
|
|
||||||
this.type = type;
|
this.type = type;
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.date = parseDate(date);
|
this.date = parseDate(date);
|
||||||
@@ -352,7 +349,6 @@ public final class CardEdition implements Comparable<CardEdition> {
|
|||||||
public Date getDate() { return date; }
|
public Date getDate() { return date; }
|
||||||
public String getCode() { return code; }
|
public String getCode() { return code; }
|
||||||
public String getCode2() { return code2; }
|
public String getCode2() { return code2; }
|
||||||
public String getMciCode() { return mciCode; }
|
|
||||||
public String getScryfallCode() { return scryfallCode.toLowerCase(); }
|
public String getScryfallCode() { return scryfallCode.toLowerCase(); }
|
||||||
public String getCardsLangCode() { return cardsLanguage.toLowerCase(); }
|
public String getCardsLangCode() { return cardsLanguage.toLowerCase(); }
|
||||||
public Type getType() { return type; }
|
public Type getType() { return type; }
|
||||||
@@ -621,10 +617,6 @@ public final class CardEdition implements Comparable<CardEdition> {
|
|||||||
if (res.code2 == null) {
|
if (res.code2 == null) {
|
||||||
res.code2 = res.code;
|
res.code2 = res.code;
|
||||||
}
|
}
|
||||||
res.mciCode = section.get("MciCode");
|
|
||||||
if (res.mciCode == null) {
|
|
||||||
res.mciCode = res.code2.toLowerCase();
|
|
||||||
}
|
|
||||||
res.scryfallCode = section.get("ScryfallCode");
|
res.scryfallCode = section.get("ScryfallCode");
|
||||||
if (res.scryfallCode == null) {
|
if (res.scryfallCode == null) {
|
||||||
res.scryfallCode = res.code;
|
res.scryfallCode = res.code;
|
||||||
@@ -753,7 +745,7 @@ public final class CardEdition implements Comparable<CardEdition> {
|
|||||||
this.add(E);
|
this.add(E);
|
||||||
initAliases(E); //Made a method in case the system changes, so it's consistent.
|
initAliases(E); //Made a method in case the system changes, so it's consistent.
|
||||||
}
|
}
|
||||||
CardEdition customBucket = new CardEdition("2990-01-01", "USER", "USER", "USER",
|
CardEdition customBucket = new CardEdition("2990-01-01", "USER", "USER",
|
||||||
Type.CUSTOM_SET, "USER", FoilType.NOT_SUPPORTED, new CardInSet[]{});
|
Type.CUSTOM_SET, "USER", FoilType.NOT_SUPPORTED, new CardInSet[]{});
|
||||||
this.add(customBucket);
|
this.add(customBucket);
|
||||||
initAliases(customBucket);
|
initAliases(customBucket);
|
||||||
@@ -804,12 +796,6 @@ public final class CardEdition implements Comparable<CardEdition> {
|
|||||||
return set == null ? "" : set.getCode2();
|
return set == null ? "" : set.getCode2();
|
||||||
}
|
}
|
||||||
|
|
||||||
// used by image generating code
|
|
||||||
public String getMciCodeByCode(final String code) {
|
|
||||||
final CardEdition set = this.get(code);
|
|
||||||
return set == null ? "" : set.getMciCode();
|
|
||||||
}
|
|
||||||
|
|
||||||
public final Function<String, CardEdition> FN_EDITION_BY_CODE = new Function<String, CardEdition>() {
|
public final Function<String, CardEdition> FN_EDITION_BY_CODE = new Function<String, CardEdition>() {
|
||||||
@Override
|
@Override
|
||||||
public CardEdition apply(String code) {
|
public CardEdition apply(String code) {
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ Date=2017-01-20
|
|||||||
Name=Aether Revolt
|
Name=Aether Revolt
|
||||||
Code2=AER
|
Code2=AER
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
MciCode=aer
|
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=10 Common:fromSheet("AER cards"), 3 Uncommon:fromSheet("AER cards"), 1 RareMythic:fromSheet("AER cards"), 1 BasicLand KLD
|
Booster=10 Common:fromSheet("AER cards"), 3 Uncommon:fromSheet("AER cards"), 1 RareMythic:fromSheet("AER cards"), 1 BasicLand KLD
|
||||||
AdditionalSheetForFoils=fromSheet("AER Aether Revolt Inventions")
|
AdditionalSheetForFoils=fromSheet("AER Aether Revolt Inventions")
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=ARB
|
|||||||
Date=2009-04-30
|
Date=2009-04-30
|
||||||
Name=Alara Reborn
|
Name=Alara Reborn
|
||||||
Code2=ARB
|
Code2=ARB
|
||||||
MciCode=arb
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=10 Common, 3 Uncommon, 1 RareMythic, 1 BasicLand ALA
|
Booster=10 Common, 3 Uncommon, 1 RareMythic, 1 BasicLand ALA
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=ALL
|
|||||||
Date=1996-06-10
|
Date=1996-06-10
|
||||||
Name=Alliances
|
Name=Alliances
|
||||||
Code2=AL
|
Code2=AL
|
||||||
MciCode=ai
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=1
|
BoosterCovers=1
|
||||||
Booster=8 Common, 3 Uncommon, 1 Rare
|
Booster=8 Common, 3 Uncommon, 1 Rare
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ Date=2017-04-28
|
|||||||
Name=Amonkhet
|
Name=Amonkhet
|
||||||
Code2=AKH
|
Code2=AKH
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
MciCode=akh
|
|
||||||
BoosterCovers=5
|
BoosterCovers=5
|
||||||
Booster=10 Common:!fromSheet("AKH Planeswalker Decks and Toolkit"), 3 Uncommon:!fromSheet("AKH Planeswalker Decks and Toolkit"), 1 RareMythic:!fromSheet("AKH Planeswalker Decks and Toolkit"), 1 BasicLand AKH
|
Booster=10 Common:!fromSheet("AKH Planeswalker Decks and Toolkit"), 3 Uncommon:!fromSheet("AKH Planeswalker Decks and Toolkit"), 1 RareMythic:!fromSheet("AKH Planeswalker Decks and Toolkit"), 1 BasicLand AKH
|
||||||
AdditionalSheetForFoils=fromSheet("MPS Amonkhet Invocations")
|
AdditionalSheetForFoils=fromSheet("MPS Amonkhet Invocations")
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
Code=ATH
|
Code=ATH
|
||||||
MciCode=at
|
|
||||||
Date=1998-11-01
|
Date=1998-11-01
|
||||||
Name=Anthologies
|
Name=Anthologies
|
||||||
Type=Boxed_Set
|
Type=Boxed_Set
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=ATQ
|
|||||||
Date=1994-03-04
|
Date=1994-03-04
|
||||||
Name=Antiquities
|
Name=Antiquities
|
||||||
Code2=AQ
|
Code2=AQ
|
||||||
MciCode=aq
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=1
|
BoosterCovers=1
|
||||||
Booster=6 Common, 2 UncommonRare
|
Booster=6 Common, 2 UncommonRare
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=APC
|
|||||||
Date=2001-06-04
|
Date=2001-06-04
|
||||||
Name=Apocalypse
|
Name=Apocalypse
|
||||||
Code2=AP
|
Code2=AP
|
||||||
MciCode=ap
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=1
|
BoosterCovers=1
|
||||||
Booster=11 Common, 3 Uncommon, 1 Rare
|
Booster=11 Common, 3 Uncommon, 1 Rare
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=ARN
|
|||||||
Date=1993-12-17
|
Date=1993-12-17
|
||||||
Name=Arabian Nights
|
Name=Arabian Nights
|
||||||
Code2=AN
|
Code2=AN
|
||||||
MciCode=an
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=1
|
BoosterCovers=1
|
||||||
Booster=6 Common, 2 UncommonRare
|
Booster=6 Common, 2 UncommonRare
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=E01
|
|||||||
Date=2017-06-16
|
Date=2017-06-16
|
||||||
Name=Archenemy: Nicol Bolas
|
Name=Archenemy: Nicol Bolas
|
||||||
Code2=E01
|
Code2=E01
|
||||||
MciCode=E01
|
|
||||||
Type=Multiplayer
|
Type=Multiplayer
|
||||||
ScryfallCode=E01
|
ScryfallCode=E01
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=ARC
|
|||||||
Date=2010-06-18
|
Date=2010-06-18
|
||||||
Name=Archenemy
|
Name=Archenemy
|
||||||
Code2=ARC
|
Code2=ARC
|
||||||
MciCode=arc
|
|
||||||
Type=Multiplayer
|
Type=Multiplayer
|
||||||
ScryfallCode=ARC
|
ScryfallCode=ARC
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=AVR
|
|||||||
Date=2012-05-04
|
Date=2012-05-04
|
||||||
Name=Avacyn Restored
|
Name=Avacyn Restored
|
||||||
Code2=AVR
|
Code2=AVR
|
||||||
MciCode=avr
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=5
|
BoosterCovers=5
|
||||||
Booster=10 Common, 3 Uncommon, 1 RareMythic, 1 BasicLand
|
Booster=10 Common, 3 Uncommon, 1 RareMythic, 1 BasicLand
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=BRB
|
Code=BRB
|
||||||
Date=1999-11-12
|
Date=1999-11-12
|
||||||
Name=Battle Royale
|
Name=Battle Royale
|
||||||
MciCode=br
|
|
||||||
Type=Boxed_Set
|
Type=Boxed_Set
|
||||||
Border=White
|
Border=White
|
||||||
Foil=NotSupported
|
Foil=NotSupported
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Name=Battle for Zendikar
|
|||||||
Date=2015-10-02
|
Date=2015-10-02
|
||||||
Code=BFZ
|
Code=BFZ
|
||||||
Code2=BFZ
|
Code2=BFZ
|
||||||
MciCode=bfz
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=5
|
BoosterCovers=5
|
||||||
Booster=10 Common, 3 Uncommon, 1 RareMythic, 1 BasicLand BFZ
|
Booster=10 Common, 3 Uncommon, 1 RareMythic, 1 BasicLand BFZ
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=BBD
|
Code=BBD
|
||||||
Date=2018-06-08
|
Date=2018-06-08
|
||||||
Name=Battlebond
|
Name=Battlebond
|
||||||
MciCode=bbd
|
|
||||||
Type=Draft
|
Type=Draft
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=10 Common, 3 Uncommon, 1 fromSheet("BBD RareMythic"), 1 BasicLand
|
Booster=10 Common, 3 Uncommon, 1 fromSheet("BBD RareMythic"), 1 BasicLand
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=BTD
|
Code=BTD
|
||||||
Date=2000-10-01
|
Date=2000-10-01
|
||||||
Name=Beatdown
|
Name=Beatdown
|
||||||
MciCode=bd
|
|
||||||
Type=Boxed_Set
|
Type=Boxed_Set
|
||||||
Border=White
|
Border=White
|
||||||
Foil=NotSupported
|
Foil=NotSupported
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=BOK
|
|||||||
Date=2005-02-04
|
Date=2005-02-04
|
||||||
Name=Betrayers of Kamigawa
|
Name=Betrayers of Kamigawa
|
||||||
Code2=BOK
|
Code2=BOK
|
||||||
MciCode=bok
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=11 Common, 3 Uncommon, 1 Rare
|
Booster=11 Common, 3 Uncommon, 1 Rare
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=BNG
|
Code=BNG
|
||||||
Date=2014-02-07
|
Date=2014-02-07
|
||||||
Name=Born of the Gods
|
Name=Born of the Gods
|
||||||
MciCode=bng
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=10 Common, 3 Uncommon, 1 RareMythic, 1 BasicLand THS
|
Booster=10 Common, 3 Uncommon, 1 RareMythic, 1 BasicLand THS
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=CHK
|
|||||||
Date=2004-10-01
|
Date=2004-10-01
|
||||||
Name=Champions of Kamigawa
|
Name=Champions of Kamigawa
|
||||||
Code2=CHK
|
Code2=CHK
|
||||||
MciCode=chk
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=5
|
BoosterCovers=5
|
||||||
Booster=11 Common, 3 Uncommon, 1 Rare
|
Booster=11 Common, 3 Uncommon, 1 Rare
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=CHR
|
|||||||
Date=1995-07-01
|
Date=1995-07-01
|
||||||
Name=Chronicles
|
Name=Chronicles
|
||||||
Code2=CH
|
Code2=CH
|
||||||
MciCode=ch
|
|
||||||
Type=Reprint
|
Type=Reprint
|
||||||
Border=White
|
Border=White
|
||||||
BoosterCovers=1
|
BoosterCovers=1
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=6ED
|
|||||||
Date=1999-04-21
|
Date=1999-04-21
|
||||||
Name=Classic Sixth Edition
|
Name=Classic Sixth Edition
|
||||||
Code2=6E
|
Code2=6E
|
||||||
MciCode=6e
|
|
||||||
Type=Core
|
Type=Core
|
||||||
Border=White
|
Border=White
|
||||||
BoosterCovers=1
|
BoosterCovers=1
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=CST
|
Code=CST
|
||||||
Date=2006-07-21
|
Date=2006-07-21
|
||||||
Name=Coldsnap Theme Decks
|
Name=Coldsnap Theme Decks
|
||||||
MciCode=cst
|
|
||||||
Type=Boxed_Set
|
Type=Boxed_Set
|
||||||
ScryfallCode=CST
|
ScryfallCode=CST
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=CSP
|
|||||||
Date=2006-07-21
|
Date=2006-07-21
|
||||||
Name=Coldsnap
|
Name=Coldsnap
|
||||||
Code2=CS
|
Code2=CS
|
||||||
MciCode=cs
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=11 Common, 3 Uncommon, 1 Rare
|
Booster=11 Common, 3 Uncommon, 1 Rare
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=C13
|
|||||||
Date=2013-11-01
|
Date=2013-11-01
|
||||||
Name=Commander 2013
|
Name=Commander 2013
|
||||||
Code2=C13
|
Code2=C13
|
||||||
MciCode=c13
|
|
||||||
Type=Commander
|
Type=Commander
|
||||||
ScryfallCode=C13
|
ScryfallCode=C13
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=C14
|
|||||||
Date=2014-11-07
|
Date=2014-11-07
|
||||||
Name=Commander 2014
|
Name=Commander 2014
|
||||||
Code2=C14
|
Code2=C14
|
||||||
MciCode=c14
|
|
||||||
Type=Commander
|
Type=Commander
|
||||||
ScryfallCode=C14
|
ScryfallCode=C14
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=C15
|
|||||||
Date=2015-11-13
|
Date=2015-11-13
|
||||||
Name=Commander 2015
|
Name=Commander 2015
|
||||||
Code2=C15
|
Code2=C15
|
||||||
MciCode=c15
|
|
||||||
Type=Commander
|
Type=Commander
|
||||||
ScryfallCode=C15
|
ScryfallCode=C15
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=C16
|
|||||||
Date=2016-11-11
|
Date=2016-11-11
|
||||||
Name=Commander 2016
|
Name=Commander 2016
|
||||||
Code2=C16
|
Code2=C16
|
||||||
MciCode=c16
|
|
||||||
Type=Commander
|
Type=Commander
|
||||||
ScryfallCode=C16
|
ScryfallCode=C16
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=C17
|
|||||||
Date=2017-08-25
|
Date=2017-08-25
|
||||||
Name=Commander 2017
|
Name=Commander 2017
|
||||||
Code2=C17
|
Code2=C17
|
||||||
MciCode=c17
|
|
||||||
Type=Commander
|
Type=Commander
|
||||||
ScryfallCode=C17
|
ScryfallCode=C17
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=C18
|
|||||||
Date=2018-08-09
|
Date=2018-08-09
|
||||||
Name=Commander 2018
|
Name=Commander 2018
|
||||||
Code2=C18
|
Code2=C18
|
||||||
MciCode=c18
|
|
||||||
Type=Commander
|
Type=Commander
|
||||||
ScryfallCode=C18
|
ScryfallCode=C18
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=C19
|
|||||||
Date=2019-08-23
|
Date=2019-08-23
|
||||||
Name=Commander 2019
|
Name=Commander 2019
|
||||||
Code2=C19
|
Code2=C19
|
||||||
MciCode=c19
|
|
||||||
Type=Commander
|
Type=Commander
|
||||||
ScryfallCode=C19
|
ScryfallCode=C19
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=CM2
|
Code=CM2
|
||||||
Date=2018-06-08
|
Date=2018-06-08
|
||||||
Name=Commander Anthology Vol. II
|
Name=Commander Anthology Vol. II
|
||||||
MciCode=CM2
|
|
||||||
Type=Commander
|
Type=Commander
|
||||||
ScryfallCode=CM2
|
ScryfallCode=CM2
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=CMA
|
|||||||
Date=2017-06-09
|
Date=2017-06-09
|
||||||
Name=Commander Anthology
|
Name=Commander Anthology
|
||||||
Code2=CMA
|
Code2=CMA
|
||||||
MciCode=CMA
|
|
||||||
Type=Commander
|
Type=Commander
|
||||||
ScryfallCode=CMA
|
ScryfallCode=CMA
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=TD0
|
Code=TD0
|
||||||
Date=2010-11-08
|
Date=2010-11-08
|
||||||
Name=Commander Theme Decks
|
Name=Commander Theme Decks
|
||||||
MciCode=td0
|
|
||||||
Type=Online
|
Type=Online
|
||||||
ScryfallCode=TD0
|
ScryfallCode=TD0
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
Code=CM1
|
Code=CM1
|
||||||
MciCode=CM1
|
|
||||||
Date=2012-11-02
|
Date=2012-11-02
|
||||||
Name=Commander's Arsenal
|
Name=Commander's Arsenal
|
||||||
ScryfallCode=CM1
|
ScryfallCode=CM1
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ Date=2011-06-17
|
|||||||
Name=Commander
|
Name=Commander
|
||||||
Code2=COM
|
Code2=COM
|
||||||
Alias=CMD
|
Alias=CMD
|
||||||
MciCode=cmd
|
|
||||||
Type=Commander
|
Type=Commander
|
||||||
BoosterBox=0
|
BoosterBox=0
|
||||||
ScryfallCode=cmd
|
ScryfallCode=cmd
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ Date=2009-02-06
|
|||||||
Name=Conflux
|
Name=Conflux
|
||||||
Code2=CFX
|
Code2=CFX
|
||||||
Alias=CON
|
Alias=CON
|
||||||
MciCode=cfx
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=10 Common, 3 Uncommon, 1 RareMythic, 1 BasicLand ALA
|
Booster=10 Common, 3 Uncommon, 1 RareMythic, 1 BasicLand ALA
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=CN2
|
|||||||
Date=2016-08-26
|
Date=2016-08-26
|
||||||
Name=Conspiracy: Take the Crown
|
Name=Conspiracy: Take the Crown
|
||||||
Code2=CN2
|
Code2=CN2
|
||||||
MciCode=cn2
|
|
||||||
Type=Draft
|
Type=Draft
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=10 Common:!fromSheet("CN2 Not In Normal Slots"), 3 Uncommon:!fromSheet("CN2 Not In Normal Slots"), 1 RareMythic:!fromSheet("CN2 Not In Normal Slots"), 1 fromSheet("CN2 Draft Matters")
|
Booster=10 Common:!fromSheet("CN2 Not In Normal Slots"), 3 Uncommon:!fromSheet("CN2 Not In Normal Slots"), 1 RareMythic:!fromSheet("CN2 Not In Normal Slots"), 1 fromSheet("CN2 Draft Matters")
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=CNS
|
|||||||
Date=2014-06-06
|
Date=2014-06-06
|
||||||
Name=Conspiracy
|
Name=Conspiracy
|
||||||
Code2=CNS
|
Code2=CNS
|
||||||
MciCode=cns
|
|
||||||
Type=Draft
|
Type=Draft
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=10 Common:!fromSheet("CNS Draft Matters"), 3 Uncommon:!fromSheet("CNS Draft Matters"), 1 RareMythic:!fromSheet("CNS Draft Matters"), 1 fromSheet("CNS Draft Matters")
|
Booster=10 Common:!fromSheet("CNS Draft Matters"), 3 Uncommon:!fromSheet("CNS Draft Matters"), 1 RareMythic:!fromSheet("CNS Draft Matters"), 1 fromSheet("CNS Draft Matters")
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=DKA
|
|||||||
Date=2012-02-03
|
Date=2012-02-03
|
||||||
Name=Dark Ascension
|
Name=Dark Ascension
|
||||||
Code2=DKA
|
Code2=DKA
|
||||||
MciCode=dka
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=9 Common:!dfc, 3 Uncommon:!dfc, 1 RareMythic:!dfc, 1 dfc, 1 BasicLand ISD
|
Booster=9 Common:!dfc, 3 Uncommon:!dfc, 1 RareMythic:!dfc, 1 dfc, 1 BasicLand ISD
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=DST
|
|||||||
Date=2004-02-06
|
Date=2004-02-06
|
||||||
Name=Darksteel
|
Name=Darksteel
|
||||||
Code2=DS
|
Code2=DS
|
||||||
MciCode=ds
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=11 Common, 3 Uncommon, 1 Rare
|
Booster=11 Common, 3 Uncommon, 1 Rare
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=DKM
|
Code=DKM
|
||||||
Date=2001-12-01
|
Date=2001-12-01
|
||||||
Name=Deckmasters: Garfield vs. Finkel
|
Name=Deckmasters: Garfield vs. Finkel
|
||||||
MciCode=dm
|
|
||||||
Type=Boxed_Set
|
Type=Boxed_Set
|
||||||
Border=White
|
Border=White
|
||||||
ScryfallCode=DKM
|
ScryfallCode=DKM
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=DIS
|
|||||||
Date=2006-05-05
|
Date=2006-05-05
|
||||||
Name=Dissension
|
Name=Dissension
|
||||||
Code2=DIS
|
Code2=DIS
|
||||||
MciCode=di
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=11 Common, 3 Uncommon, 1 Rare
|
Booster=11 Common, 3 Uncommon, 1 Rare
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=DMR
|
|||||||
Date=2023-01-13
|
Date=2023-01-13
|
||||||
Name=Dominaria Remastered
|
Name=Dominaria Remastered
|
||||||
Code2=DMR
|
Code2=DMR
|
||||||
MciCode=dmr
|
|
||||||
Type=Reprint
|
Type=Reprint
|
||||||
ScryfallCode=DMR
|
ScryfallCode=DMR
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=DMU
|
|||||||
Date=2022-09-09
|
Date=2022-09-09
|
||||||
Name=Dominaria United
|
Name=Dominaria United
|
||||||
Code2=DMU
|
Code2=DMU
|
||||||
MciCode=dmu
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=10 Common:fromsheet("DMU cards"), 3 Uncommon:fromSheet("DMU cards"), 1 RareMythic:fromSheet("DMU cards"), 1 fromSheet("DMU lands")
|
Booster=10 Common:fromsheet("DMU cards"), 3 Uncommon:fromSheet("DMU cards"), 1 RareMythic:fromSheet("DMU cards"), 1 fromSheet("DMU lands")
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=DOM
|
|||||||
Date=2018-04-27
|
Date=2018-04-27
|
||||||
Name=Dominaria
|
Name=Dominaria
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
MciCode=dom
|
|
||||||
BoosterCovers=5
|
BoosterCovers=5
|
||||||
Booster=10 Common:!fromSheet("DOM Planeswalker Decks and Additional Promo"), 3 Uncommon:!fromSheet("DOM Planeswalker Decks and Additional Promo"), 1 RareMythic:!fromSheet("DOM Planeswalker Decks and Additional Promo"), 1 BasicLand DOM
|
Booster=10 Common:!fromSheet("DOM Planeswalker Decks and Additional Promo"), 3 Uncommon:!fromSheet("DOM Planeswalker Decks and Additional Promo"), 1 RareMythic:!fromSheet("DOM Planeswalker Decks and Additional Promo"), 1 BasicLand DOM
|
||||||
BoosterMustContain=Legendary Creature
|
BoosterMustContain=Legendary Creature
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=DGM
|
|||||||
Date=2013-05-03
|
Date=2013-05-03
|
||||||
Name=Dragon's Maze
|
Name=Dragon's Maze
|
||||||
Code2=DGM
|
Code2=DGM
|
||||||
MciCode=dgm
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=10 Common:!land, 3 Uncommon, 1 RareMythic:!land, 1 fromSheet("DGM Lands")
|
Booster=10 Common:!land, 3 Uncommon, 1 RareMythic:!land, 1 fromSheet("DGM Lands")
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=DTK
|
|||||||
Date=2015-03-27
|
Date=2015-03-27
|
||||||
Name=Dragons of Tarkir
|
Name=Dragons of Tarkir
|
||||||
Code2=DTK
|
Code2=DTK
|
||||||
MciCode=dtk
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=5
|
BoosterCovers=5
|
||||||
Booster=10 Common, 3 Uncommon, 1 RareMythic, 1 BasicLand DTK
|
Booster=10 Common, 3 Uncommon, 1 RareMythic, 1 BasicLand DTK
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ Date=2010-07-14
|
|||||||
Name=Drake Stone
|
Name=Drake Stone
|
||||||
Code2=DS0
|
Code2=DS0
|
||||||
Type=Funny
|
Type=Funny
|
||||||
MciCode=ds0
|
|
||||||
|
|
||||||
[cards]
|
[cards]
|
||||||
1 U Illusory Thoughts
|
1 U Illusory Thoughts
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=DDH
|
Code=DDH
|
||||||
Date=2011-09-02
|
Date=2011-09-02
|
||||||
Name=Duel Decks: Ajani vs. Nicol Bolas
|
Name=Duel Decks: Ajani vs. Nicol Bolas
|
||||||
MciCode=ddh
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDH
|
ScryfallCode=DDH
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=DVD
|
Code=DVD
|
||||||
Date=2014-12-05
|
Date=2014-12-05
|
||||||
Name=Duel Decks Anthology: Divine vs. Demonic
|
Name=Duel Decks Anthology: Divine vs. Demonic
|
||||||
MciCode=dvd
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DVD
|
ScryfallCode=DVD
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=EVG
|
Code=EVG
|
||||||
Date=2014-12-05
|
Date=2014-12-05
|
||||||
Name=Duel Decks Anthology: Elves vs. Goblins
|
Name=Duel Decks Anthology: Elves vs. Goblins
|
||||||
MciCode=evg
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=EVG
|
ScryfallCode=EVG
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=GVL
|
Code=GVL
|
||||||
Date=2014-12-05
|
Date=2014-12-05
|
||||||
Name=Duel Decks Anthology: Garruk vs. Liliana
|
Name=Duel Decks Anthology: Garruk vs. Liliana
|
||||||
MciCode=gvl
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=GVL
|
ScryfallCode=GVL
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=JVC
|
Code=JVC
|
||||||
Date=2014-12-05
|
Date=2014-12-05
|
||||||
Name=Duel Decks Anthology: Jace vs. Chandra
|
Name=Duel Decks Anthology: Jace vs. Chandra
|
||||||
MciCode=jvc
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=JVC
|
ScryfallCode=JVC
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=DDQ
|
|||||||
Date=2016-02-26
|
Date=2016-02-26
|
||||||
Name=Duel Decks: Blessed vs. Cursed
|
Name=Duel Decks: Blessed vs. Cursed
|
||||||
Code2=DDQ
|
Code2=DDQ
|
||||||
MciCode=ddq
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDQ
|
ScryfallCode=DDQ
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=DDC
|
|||||||
Date=2009-04-10
|
Date=2009-04-10
|
||||||
Name=Duel Decks: Divine vs. Demonic
|
Name=Duel Decks: Divine vs. Demonic
|
||||||
Code2=DDC
|
Code2=DDC
|
||||||
MciCode=dvd
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDC
|
ScryfallCode=DDC
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=DDO
|
Code=DDO
|
||||||
Date=2015-02-27
|
Date=2015-02-27
|
||||||
Name=Duel Decks: Elspeth vs. Kiora
|
Name=Duel Decks: Elspeth vs. Kiora
|
||||||
MciCode=ddo
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDO
|
ScryfallCode=DDO
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=DDF
|
Code=DDF
|
||||||
Date=2010-09-03
|
Date=2010-09-03
|
||||||
Name=Duel Decks: Elspeth vs. Tezzeret
|
Name=Duel Decks: Elspeth vs. Tezzeret
|
||||||
MciCode=ddf
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDF
|
ScryfallCode=DDF
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=DD1
|
Code=DD1
|
||||||
Date=2007-11-16
|
Date=2007-11-16
|
||||||
Name=Duel Decks: Elves vs. Goblins
|
Name=Duel Decks: Elves vs. Goblins
|
||||||
MciCode=dd1
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DD1
|
ScryfallCode=DD1
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=DDU
|
Code=DDU
|
||||||
Date=2018-04-06
|
Date=2018-04-06
|
||||||
Name=Duel Decks: Elves vs. Inventors
|
Name=Duel Decks: Elves vs. Inventors
|
||||||
MciCode=ddu
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDU
|
ScryfallCode=DDU
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=DDD
|
Code=DDD
|
||||||
Date=2009-10-30
|
Date=2009-10-30
|
||||||
Name=Duel Decks: Garruk vs. Liliana
|
Name=Duel Decks: Garruk vs. Liliana
|
||||||
MciCode=gvl
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDD
|
ScryfallCode=DDD
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=DDL
|
|||||||
Alias=HVM
|
Alias=HVM
|
||||||
Date=2013-09-06
|
Date=2013-09-06
|
||||||
Name=Duel Decks: Heroes vs. Monsters
|
Name=Duel Decks: Heroes vs. Monsters
|
||||||
MciCode=ddl
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDL
|
ScryfallCode=DDL
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=DDJ
|
Code=DDJ
|
||||||
Date=2012-09-07
|
Date=2012-09-07
|
||||||
Name=Duel Decks: Izzet vs. Golgari
|
Name=Duel Decks: Izzet vs. Golgari
|
||||||
MciCode=ddj
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDJ
|
ScryfallCode=DDJ
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=DD2
|
Code=DD2
|
||||||
Date=2008-11-07
|
Date=2008-11-07
|
||||||
Name=Duel Decks: Jace vs. Chandra
|
Name=Duel Decks: Jace vs. Chandra
|
||||||
MciCode=jvc
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DD2
|
ScryfallCode=DD2
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=DDM
|
Code=DDM
|
||||||
Date=2014-03-14
|
Date=2014-03-14
|
||||||
Name=Duel Decks: Jace vs. Vraska
|
Name=Duel Decks: Jace vs. Vraska
|
||||||
MciCode=ddm
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDM
|
ScryfallCode=DDM
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=DDG
|
Code=DDG
|
||||||
Date=2011-04-01
|
Date=2011-04-01
|
||||||
Name=Duel Decks: Knights vs. Dragons
|
Name=Duel Decks: Knights vs. Dragons
|
||||||
MciCode=ddg
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDG
|
ScryfallCode=DDG
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=DDT
|
|||||||
Date=2017-10-24
|
Date=2017-10-24
|
||||||
Name=Duel Decks: Merfolk vs. Goblins
|
Name=Duel Decks: Merfolk vs. Goblins
|
||||||
Code2=DDT
|
Code2=DDT
|
||||||
MciCode=ddt
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDT
|
ScryfallCode=DDT
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=DDS
|
|||||||
Date=2017-03-31
|
Date=2017-03-31
|
||||||
Name=Duel Decks: Mind vs. Might
|
Name=Duel Decks: Mind vs. Might
|
||||||
Code2=DDS
|
Code2=DDS
|
||||||
MciCode=dds
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDS
|
ScryfallCode=DDS
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=TD2
|
Code=TD2
|
||||||
Date=2011-05-14
|
Date=2011-05-14
|
||||||
Name=Duel Decks: Mirrodin Pure vs. New Phyrexia
|
Name=Duel Decks: Mirrodin Pure vs. New Phyrexia
|
||||||
MciCode=td2
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=TD2
|
ScryfallCode=TD2
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=DDR
|
|||||||
Date=2016-09-02
|
Date=2016-09-02
|
||||||
Name=Duel Decks: Nissa vs. Ob Nixilis
|
Name=Duel Decks: Nissa vs. Ob Nixilis
|
||||||
Code2=DDR
|
Code2=DDR
|
||||||
MciCode=ddr
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDR
|
ScryfallCode=DDR
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=DDE
|
Code=DDE
|
||||||
Date=2010-03-19
|
Date=2010-03-19
|
||||||
Name=Duel Decks: Phyrexia vs. the Coalition
|
Name=Duel Decks: Phyrexia vs. the Coalition
|
||||||
MciCode=pvc
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDE
|
ScryfallCode=DDE
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=DDK
|
Code=DDK
|
||||||
Date=2013-03-15
|
Date=2013-03-15
|
||||||
Name=Duel Decks: Sorin vs. Tibalt
|
Name=Duel Decks: Sorin vs. Tibalt
|
||||||
MciCode=ddk
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDK
|
ScryfallCode=DDK
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=DDN
|
Code=DDN
|
||||||
Date=2014-09-05
|
Date=2014-09-05
|
||||||
Name=Duel Decks: Speed vs. Cunning
|
Name=Duel Decks: Speed vs. Cunning
|
||||||
MciCode=ddn
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDN
|
ScryfallCode=DDN
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=DDI
|
Code=DDI
|
||||||
Date=2012-03-30
|
Date=2012-03-30
|
||||||
Name=Duel Decks: Venser vs. Koth
|
Name=Duel Decks: Venser vs. Koth
|
||||||
MciCode=ddi
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDI
|
ScryfallCode=DDI
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=DDP
|
|||||||
Date=2015-08-28
|
Date=2015-08-28
|
||||||
Name=Duel Decks: Zendikar vs. Eldrazi
|
Name=Duel Decks: Zendikar vs. Eldrazi
|
||||||
Code2=DDP
|
Code2=DDP
|
||||||
MciCode=ddp
|
|
||||||
Type=Duel_Deck
|
Type=Duel_Deck
|
||||||
ScryfallCode=DDP
|
ScryfallCode=DDP
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=DPA
|
Code=DPA
|
||||||
Date=2010-06-04
|
Date=2010-06-04
|
||||||
Name=Duels of the Planeswalkers
|
Name=Duels of the Planeswalkers
|
||||||
MciCode=dpa
|
|
||||||
Type=Boxed_Set
|
Type=Boxed_Set
|
||||||
ScryfallCode=DPA
|
ScryfallCode=DPA
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=AFR
|
|||||||
Date=2021-07-23
|
Date=2021-07-23
|
||||||
Name=Dungeons & Dragons: Adventures in the Forgotten Realms
|
Name=Dungeons & Dragons: Adventures in the Forgotten Realms
|
||||||
Code2=AFR
|
Code2=AFR
|
||||||
MciCode=afr
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
ScryfallCode=AFR
|
ScryfallCode=AFR
|
||||||
BoosterCovers=5
|
BoosterCovers=5
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=8ED
|
|||||||
Date=2003-07-28
|
Date=2003-07-28
|
||||||
Name=Eighth Edition
|
Name=Eighth Edition
|
||||||
Code2=8E
|
Code2=8E
|
||||||
MciCode=8e
|
|
||||||
Type=Core
|
Type=Core
|
||||||
Border=White
|
Border=White
|
||||||
BoosterCovers=5
|
BoosterCovers=5
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ Date=2016-07-22
|
|||||||
Name=Eldritch Moon
|
Name=Eldritch Moon
|
||||||
Code2=EMN
|
Code2=EMN
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
MciCode=emn
|
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=9 Common:!dfc, 3 Uncommon:!dfc, 1 RareMythic:!dfc, 1 dfc:!Rare:!Mythic, 1 BasicLand SOI
|
Booster=9 Common:!dfc, 3 Uncommon:!dfc, 1 RareMythic:!dfc, 1 dfc:!Rare:!Mythic, 1 BasicLand SOI
|
||||||
FatPack=9
|
FatPack=9
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Name=Eternal Masters
|
Name=Eternal Masters
|
||||||
Code=EMA
|
Code=EMA
|
||||||
Date=2016-06-10
|
Date=2016-06-10
|
||||||
MciCode=ema
|
|
||||||
Type=Reprint
|
Type=Reprint
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=11 Common, 3 Uncommon, 1 RareMythic
|
Booster=11 Common, 3 Uncommon, 1 RareMythic
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ Date=2008-07-25
|
|||||||
Name=Eventide
|
Name=Eventide
|
||||||
Code2=EVE
|
Code2=EVE
|
||||||
Alias=EVT
|
Alias=EVT
|
||||||
MciCode=eve
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=11 Common, 3 Uncommon, 1 Rare
|
Booster=11 Common, 3 Uncommon, 1 Rare
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=EXO
|
|||||||
Date=1998-06-15
|
Date=1998-06-15
|
||||||
Name=Exodus
|
Name=Exodus
|
||||||
Code2=EX
|
Code2=EX
|
||||||
MciCode=ex
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=1
|
BoosterCovers=1
|
||||||
Booster=11 Common, 3 Uncommon, 1 Rare
|
Booster=11 Common, 3 Uncommon, 1 Rare
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=E02
|
|||||||
Date=2017-11-24
|
Date=2017-11-24
|
||||||
Name=Explorers of Ixalan
|
Name=Explorers of Ixalan
|
||||||
Code2=E02
|
Code2=E02
|
||||||
MciCode=E02
|
|
||||||
Type=Boxed_Set
|
Type=Boxed_Set
|
||||||
ScryfallCode=E02
|
ScryfallCode=E02
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=FEM
|
|||||||
Date=1994-11-01
|
Date=1994-11-01
|
||||||
Name=Fallen Empires
|
Name=Fallen Empires
|
||||||
Code2=FE
|
Code2=FE
|
||||||
MciCode=fe
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=1
|
BoosterCovers=1
|
||||||
Booster=5 Common, 2 Uncommon, 1 Rare
|
Booster=5 Common, 2 Uncommon, 1 Rare
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=FRF
|
Code=FRF
|
||||||
Date=2015-01-23
|
Date=2015-01-23
|
||||||
Name=Fate Reforged
|
Name=Fate Reforged
|
||||||
MciCode=frf
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=10 Common:!land, 3 Uncommon, 1 RareMythic, 1 fromSheet("FRF Lands"), 0 fromSheet("FRF Basic Lands")
|
Booster=10 Common:!land, 3 Uncommon, 1 RareMythic, 1 fromSheet("FRF Lands"), 0 fromSheet("FRF Basic Lands")
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=5DN
|
|||||||
Date=2004-06-04
|
Date=2004-06-04
|
||||||
Name=Fifth Dawn
|
Name=Fifth Dawn
|
||||||
Code2=FD
|
Code2=FD
|
||||||
MciCode=5dn
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=11 Common, 3 Uncommon, 1 Rare
|
Booster=11 Common, 3 Uncommon, 1 Rare
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=5ED
|
|||||||
Date=1997-03-24
|
Date=1997-03-24
|
||||||
Name=Fifth Edition
|
Name=Fifth Edition
|
||||||
Code2=5E
|
Code2=5E
|
||||||
MciCode=5e
|
|
||||||
Type=Core
|
Type=Core
|
||||||
Border=White
|
Border=White
|
||||||
BoosterCovers=5
|
BoosterCovers=5
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=4ED
|
|||||||
Date=1995-04-01
|
Date=1995-04-01
|
||||||
Name=Fourth Edition
|
Name=Fourth Edition
|
||||||
Code2=4E
|
Code2=4E
|
||||||
MciCode=4e
|
|
||||||
Type=Core
|
Type=Core
|
||||||
Border=White
|
Border=White
|
||||||
BoosterCovers=5
|
BoosterCovers=5
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=V15
|
Code=V15
|
||||||
Date=2015-08-21
|
Date=2015-08-21
|
||||||
Name=From the Vault: Angels
|
Name=From the Vault: Angels
|
||||||
MciCode=v15
|
|
||||||
Type=Collector_Edition
|
Type=Collector_Edition
|
||||||
ScryfallCode=V15
|
ScryfallCode=V15
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=V14
|
Code=V14
|
||||||
Date=2014-08-22
|
Date=2014-08-22
|
||||||
Name=From the Vault: Annihilation
|
Name=From the Vault: Annihilation
|
||||||
MciCode=v14
|
|
||||||
Type=Collector_Edition
|
Type=Collector_Edition
|
||||||
ScryfallCode=V14
|
ScryfallCode=V14
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=DRB
|
Code=DRB
|
||||||
Date=2008-08-29
|
Date=2008-08-29
|
||||||
Name=From the Vault: Dragons
|
Name=From the Vault: Dragons
|
||||||
MciCode=fvd
|
|
||||||
Type=Collector_Edition
|
Type=Collector_Edition
|
||||||
ScryfallCode=DRB
|
ScryfallCode=DRB
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=FVE
|
Code=FVE
|
||||||
Date=2009-08-28
|
Date=2009-08-28
|
||||||
Name=From the Vault: Exiled
|
Name=From the Vault: Exiled
|
||||||
MciCode=fve
|
|
||||||
Type=Collector_Edition
|
Type=Collector_Edition
|
||||||
Alias=V09
|
Alias=V09
|
||||||
ScryfallCode=V09
|
ScryfallCode=V09
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=FVL
|
Code=FVL
|
||||||
Date=2011-08-26
|
Date=2011-08-26
|
||||||
Name=From the Vault: Legends
|
Name=From the Vault: Legends
|
||||||
MciCode=fvl
|
|
||||||
Type=Collector_Edition
|
Type=Collector_Edition
|
||||||
Alias=V11
|
Alias=V11
|
||||||
ScryfallCode=V11
|
ScryfallCode=V11
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=V16
|
Code=V16
|
||||||
Date=2016-08-19
|
Date=2016-08-19
|
||||||
Name=From the Vault: Lore
|
Name=From the Vault: Lore
|
||||||
MciCode=v16
|
|
||||||
Type=Collector_Edition
|
Type=Collector_Edition
|
||||||
ScryfallCode=V16
|
ScryfallCode=V16
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=V12
|
Code=V12
|
||||||
Date=2012-08-31
|
Date=2012-08-31
|
||||||
Name=From the Vault: Realms
|
Name=From the Vault: Realms
|
||||||
MciCode=v12
|
|
||||||
Type=Collector_Edition
|
Type=Collector_Edition
|
||||||
ScryfallCode=V12
|
ScryfallCode=V12
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=FVR
|
Code=FVR
|
||||||
Date=2010-08-27
|
Date=2010-08-27
|
||||||
Name=From the Vault: Relics
|
Name=From the Vault: Relics
|
||||||
MciCode=fvr
|
|
||||||
Type=Collector_Edition
|
Type=Collector_Edition
|
||||||
Alias=V10
|
Alias=V10
|
||||||
ScryfallCode=V10
|
ScryfallCode=V10
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
Code=V17
|
Code=V17
|
||||||
Date=2017-11-24
|
Date=2017-11-24
|
||||||
Name=From the Vault: Transform
|
Name=From the Vault: Transform
|
||||||
MciCode=v17
|
|
||||||
Type=Collector_Edition
|
Type=Collector_Edition
|
||||||
ScryfallCode=V17
|
ScryfallCode=V17
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=V13
|
|||||||
Alias=V20
|
Alias=V20
|
||||||
Date=2013-08-23
|
Date=2013-08-23
|
||||||
Name=From the Vault: Twenty
|
Name=From the Vault: Twenty
|
||||||
MciCode=v13
|
|
||||||
Type=Collector_Edition
|
Type=Collector_Edition
|
||||||
ScryfallCode=V13
|
ScryfallCode=V13
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=FUT
|
|||||||
Date=2007-05-04
|
Date=2007-05-04
|
||||||
Name=Future Sight
|
Name=Future Sight
|
||||||
Code2=FUT
|
Code2=FUT
|
||||||
MciCode=fut
|
|
||||||
Type=Expansion
|
Type=Expansion
|
||||||
BoosterCovers=3
|
BoosterCovers=3
|
||||||
Booster=11 Common, 3 Uncommon, 1 Rare
|
Booster=11 Common, 3 Uncommon, 1 Rare
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=GN2
|
|||||||
Date=2019-11-15
|
Date=2019-11-15
|
||||||
Name=Game Night 2019
|
Name=Game Night 2019
|
||||||
Code2=GN2
|
Code2=GN2
|
||||||
MciCode=gn2
|
|
||||||
Type=Multiplayer
|
Type=Multiplayer
|
||||||
ScryfallCode=GN2
|
ScryfallCode=GN2
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ Code=GNT
|
|||||||
Date=2018-11-16
|
Date=2018-11-16
|
||||||
Name=Game Night
|
Name=Game Night
|
||||||
Code2=GNT
|
Code2=GNT
|
||||||
MciCode=gnt
|
|
||||||
Type=Multiplayer
|
Type=Multiplayer
|
||||||
ScryfallCode=GNT
|
ScryfallCode=GNT
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user