Updated formats to include subtype enum and made a first batch attempt to set the value

Now sorting formats by type, subtype then name
Added new "additional" property to gameformats to allow additional non printed but legal cards to be included e.g. dual lands in extended 1999
This commit is contained in:
austinio7116
2018-04-10 07:28:28 +01:00
committed by maustin
parent 3e1f5c7632
commit a5d964a334
427 changed files with 473 additions and 114 deletions

View File

@@ -34,7 +34,6 @@ import forge.item.PaperCard;
import forge.util.FileSection;
import forge.util.FileUtil;
import forge.util.storage.StorageBase;
import forge.util.storage.StorageReaderFileSections;
import forge.util.storage.StorageReaderFolder;
import java.io.File;
@@ -45,18 +44,23 @@ import java.util.Map.Entry;
public class GameFormat implements Comparable<GameFormat> {
private final String name;
public enum FormatType {Sanctioned, Casual, Historic, Custom}
public enum FormatType {Sanctioned, Casual, Historic, Digital, Custom}
public enum FormatSubType {Rotating, Eternal, Commander, Planechase, Block, Videogame, MTGO, Custom}
// contains allowed sets, when empty allows all sets
private FormatType formatType;
private FormatSubType formatSubType;
protected final List<String> allowedSetCodes; // this is mutable to support quest mode set unlocks
protected final List<CardRarity> allowedRarities;
protected final List<String> bannedCardNames;
protected final List<String> restrictedCardNames;
protected final List<String> additionalCardNames; // for cards that are legal but not reprinted in any of the allowed Sets
protected final transient List<String> allowedSetCodes_ro;
protected final transient List<String> bannedCardNames_ro;
protected final transient List<String> restrictedCardNames_ro;
protected final transient List<String> additionalCardNames_ro;
protected final transient Predicate<PaperCard> filterRules;
protected final transient Predicate<PaperCard> filterPrinted;
@@ -64,15 +68,17 @@ public class GameFormat implements Comparable<GameFormat> {
private final int index;
public GameFormat(final String fName, final Iterable<String> sets, final List<String> bannedCards) {
this(fName, sets, bannedCards, null, null, 0, FormatType.Custom);
this(fName, sets, bannedCards, null, null, null, 0, FormatType.Custom, FormatSubType.Custom);
}
public static final GameFormat NoFormat = new GameFormat("(none)", null, null, null, null, Integer.MAX_VALUE, FormatType.Custom);
public static final GameFormat NoFormat = new GameFormat("(none)", null, null, null, null, null, Integer.MAX_VALUE, FormatType.Custom, FormatSubType.Custom);
public GameFormat(final String fName, final Iterable<String> sets, final List<String> bannedCards,
final List<String> restrictedCards, final List<CardRarity> rarities, int compareIdx, FormatType formatType) {
final List<String> restrictedCards, final List<String> additionalCards,
final List<CardRarity> rarities, int compareIdx, FormatType formatType, FormatSubType formatSubType) {
this.index = compareIdx;
this.formatType = formatType;
this.formatSubType = formatSubType;
this.name = fName;
if(sets != null) {
@@ -92,11 +98,13 @@ public class GameFormat implements Comparable<GameFormat> {
bannedCardNames = bannedCards == null ? new ArrayList<String>() : Lists.newArrayList(bannedCards);
restrictedCardNames = restrictedCards == null ? new ArrayList<String>() : Lists.newArrayList(restrictedCards);
additionalCardNames = additionalCards == null ? new ArrayList<String>() : Lists.newArrayList(additionalCards);
allowedRarities = rarities == null ? Lists.newArrayList() : rarities;
this.allowedSetCodes_ro = Collections.unmodifiableList(allowedSetCodes);
this.bannedCardNames_ro = Collections.unmodifiableList(bannedCardNames);
this.restrictedCardNames_ro = Collections.unmodifiableList(restrictedCardNames);
this.additionalCardNames_ro = Collections.unmodifiableList(additionalCardNames);
this.filterRules = this.buildFilterRules();
this.filterPrinted = this.buildFilterPrinted();
@@ -115,6 +123,9 @@ public class GameFormat implements Comparable<GameFormat> {
}
p = Predicates.and(p, Predicates.or(crp));
}
if (!this.additionalCardNames_ro.isEmpty() && !printed) {
p = Predicates.or(p, IPaperCard.Predicates.names(this.additionalCardNames_ro));
}
return p;
}
@@ -134,6 +145,10 @@ public class GameFormat implements Comparable<GameFormat> {
return this.formatType;
}
public FormatSubType getFormatSubType() {
return this.formatSubType;
}
public List<String> getAllowedSetCodes() {
return this.allowedSetCodes_ro;
}
@@ -145,6 +160,11 @@ public class GameFormat implements Comparable<GameFormat> {
public List<String> getRestrictedCards() {
return restrictedCardNames_ro;
}
public List<String> getAdditionalCards() {
return additionalCardNames_ro;
}
public List<CardRarity> getAllowedRarities() {
return allowedRarities;
}
@@ -217,7 +237,15 @@ public class GameFormat implements Comparable<GameFormat> {
if (null == other) {
return 1;
}
return index - other.index;
if (other.formatType != formatType){
return formatType.compareTo(other.formatType);
}else{
if (other.formatSubType != formatSubType){
return formatSubType.compareTo(other.formatSubType);
}
}
return name.compareTo(other.name);
//return index - other.index;
}
public int getIndex() {
@@ -237,15 +265,22 @@ public class GameFormat implements Comparable<GameFormat> {
List<String> sets = null; // default: all sets allowed
List<String> bannedCards = null; // default: nothing banned
List<String> restrictedCards = null; // default: nothing restricted
List<String> additionalCards = null; // default: nothing additional
List<CardRarity> rarities = null;
FileSection section = FileSection.parse(contents.get("format"), ":");
String title = section.get("name");
FormatType formatType;
try {
formatType = FormatType.valueOf(section.get("type"));
} catch (IllegalArgumentException e) {
} catch (Exception e) {
formatType = FormatType.Custom;
}
FormatSubType formatsubType;
try {
formatsubType = FormatSubType.valueOf(section.get("subtype"));
} catch (Exception e) {
formatsubType = FormatSubType.Custom;
}
Integer idx = section.getInt("order");
String strSets = section.get("sets");
if ( null != strSets ) {
@@ -261,6 +296,11 @@ public class GameFormat implements Comparable<GameFormat> {
restrictedCards = Arrays.asList(strCars.split("; "));
}
strCars = section.get("additional");
if ( strCars != null ) {
additionalCards = Arrays.asList(strCars.split("; "));
}
strCars = section.get("rarities");
if ( strCars != null ) {
CardRarity cr;
@@ -273,7 +313,7 @@ public class GameFormat implements Comparable<GameFormat> {
}
}
GameFormat result = new GameFormat(title, sets, bannedCards, restrictedCards, rarities, idx, formatType);
GameFormat result = new GameFormat(title, sets, bannedCards, restrictedCards, additionalCards, rarities, idx, formatType,formatsubType);
naturallyOrdered.add(result);
return result;
}
@@ -317,7 +357,8 @@ public class GameFormat implements Comparable<GameFormat> {
public Iterable<GameFormat> getFilterList() {
List<GameFormat> coreList = new ArrayList<>();
for(GameFormat format: naturallyOrdered){
if(!format.getFormatType().equals(FormatType.Historic)){
if(!format.getFormatType().equals(FormatType.Historic)
&&!format.getFormatType().equals(FormatType.Digital)){
coreList.add(format);
}
}

View File

@@ -45,6 +45,7 @@ public class DialogChooseFormats {
break;
case Custom:
case Casual:
case Digital:
default:
casual.add(box);
break;
@@ -61,7 +62,7 @@ public class DialogChooseFormats {
String constraints = "aligny top";
panel.add(makeCheckBoxList(sanctioned, "Sanctioned", true), constraints);
panel.add(makeCheckBoxList(casual, "Casual", false), constraints);
panel.add(makeCheckBoxList(casual, "Other", false), constraints);
panel.add(makeCheckBoxList(historic, "Historic", false), constraints);
final JPanel overlay = FOverlay.SINGLETON_INSTANCE.getPanel();

View File

@@ -135,8 +135,11 @@ public abstract class FormatFilter<T extends InventoryItem> extends ItemFilter<T
case Historic:
lstFormats.addItem(format, 2);
break;
case Custom:
case Digital:
lstFormats.addItem(format, 3);
break;
case Custom:
lstFormats.addItem(format, 4);
}
}
lstFormats.setListItemRenderer(new FormatRenderer());

View File

@@ -1,5 +1,6 @@
[format]
Name:Amonkhet Block
Type:Historic
Subtype:Block
Order:111
Sets:HOU, AKH

View File

@@ -1,6 +1,7 @@
[format]
Name:Antiquities
Type:Historic
Subtype:Custom
Order:142
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ
Restricted:Ali from Cairo, Ancestral Recall, Berserk, Black Lotus, Braingeyser, Dingus Egg, Gauntlet of Might, Icy Manipulator, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Sol Ring, Timetwister, Time Vault, Time Walk

View File

@@ -1,5 +1,6 @@
[format]
Name:Arabian Nights
Type:Historic
Subtype:Custom
Order:139
Sets:LEA, LEB, 2ED, ARN

View File

@@ -1,6 +1,7 @@
[format]
Name:Aug 2 1994
Type:Historic
Subtype:Custom
Order:148
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG
Restricted:Adun Oakenshield, Ali from Cairo, Ancestral Recall, Angus Mackenzie, Arcades Sabboth, Axelrod Gunnarson, Ayesha Tanaka, Barktooth Warbeard, Bartel Runeaxe, Berserk, Black Lotus, Boris Devilboon, Braingeyser, Candelabra of Tawnos, Channel, Chaos Orb, Chromium, Copy Artifact, Dakkon Blackblade, Demonic Tutor, Falling Star, Feldon's Cane, Gabriel Angelfire, Gosta Dirk, Gwendlyn Di Corci, Halfdane, Hammerheim, Hazezon Tamar, Hunding Gjornersen, Ivory Tower, Jacques le Vert, Jasmine Boreal, Jedit Ojanen, Jerrard of the Closed Fist, Johan, Karakas, Kasimir the Lone Wolf, Kei Takahashi, Lady Caleria, Lady Evangela, Lady Orca, Library of Alexandria, Livonya Silone, Lord Magnus, Marhault Elsdragon, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Nebuchadnezzar, Nicol Bolas, Palladia-Mors, Pavel Maliki, Pendelhaven, Princess Lucrezia, Ragnar, Ramirez DePietro, Ramses Overdark, Rasputin Dreamweaver, Regrowth, Riven Turnbull, Rohgahh of Kher Keep, Rubinia Soulsinger, Sir Shandlar of Eberyn, Sivitri Scarzam, Sol Ring, Sol'kanar the Swamp King, Stangg, Sunastian Falconer, Tetsuo Umezawa, The Lady of the Mountain, The Tabernacle at Pendrell Vale, Timetwister, Time Walk, Tobias Andrion, Tolaria, Tor Wauki, Torsten Von Ursus, Tuknir Deathlock, Underworld Dreams, Ur-Drago, Urborg, Vaevictis Asmadi, Wheel of Fortune, Xira Arien

View File

@@ -1,5 +1,6 @@
[format]
Name:Battle for Zendikar Block
Type:Historic
Subtype:Block
Order:114
Sets:OGW, BFZ

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic Restricted, Apr 1999
Type:Historic
Subtype:Eternal
Order:228
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG
Banned:Amulet of Quoz, Balance, Black Vise, Braingeyser, Bronze Tablet, Channel, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Fork, Ivory Tower, Jeweled Bird, Memory Jar, Mind Twist, Rebirth, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Timmerian Fiends, Tolarian Academy, Wheel of Fortune, Windfall, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic Restricted, Classic Sixth Edition
Type:Historic
Subtype:Eternal
Order:232
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED
Banned:Amulet of Quoz, Balance, Black Vise, Braingeyser, Bronze Tablet, Channel, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Fork, Ivory Tower, Jeweled Bird, Memory Jar, Mind Twist, Rebirth, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Timmerian Fiends, Tolarian Academy, Wheel of Fortune, Windfall, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic Restricted, Exodus
Type:Historic
Subtype:Eternal
Order:208
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO
Banned:Amulet of Quoz, Balance, Black Vise, Braingeyser, Bronze Tablet, Channel, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Feldon's Cane, Fork, Ivory Tower, Jeweled Bird, Maze of Ith, Mind Twist, Rebirth, Regrowth, Sol Ring, Strip Mine, Tempest Efreet, Timmerian Fiends, Wheel of Fortune, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic Restricted, Fifth Edition
Type:Historic
Subtype:Eternal
Order:186
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED
Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Bronze Tablet, Candelabra of Tawnos, Channel, Chaos Orb, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Divine Intervention, Falling Star, Fastbond, Feldon's Cane, Fork, Ivory Tower, Jeweled Bird, Land Tax, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Timetwister, Time Walk, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic Restricted, Jan 1997
Type:Historic
Subtype:Eternal
Order:180
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR
Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Bronze Tablet, Candelabra of Tawnos, Channel, Chaos Orb, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Divine Intervention, Falling Star, Fastbond, Feldon's Cane, Fork, Ivory Tower, Jeweled Bird, Land Tax, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Timetwister, Time Walk, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic Restricted, Jan 1999
Type:Historic
Subtype:Eternal
Order:218
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG
Banned:Amulet of Quoz, Balance, Black Vise, Braingeyser, Bronze Tablet, Channel, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Fork, Ivory Tower, Jeweled Bird, Maze of Ith, Mind Twist, Rebirth, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Timmerian Fiends, Tolarian Academy, Wheel of Fortune, Windfall, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic Restricted, Mirage
Type:Historic
Subtype:Eternal
Order:178
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR
Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Bronze Tablet, Candelabra of Tawnos, Channel, Chaos Orb, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Divine Intervention, Falling Star, Fastbond, Feldon's Cane, Fork, Hymn to Tourach, Ivory Tower, Jeweled Bird, Land Tax, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Timetwister, Time Walk, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic Restricted, Oct 1996
Type:Historic
Subtype:Eternal
Order:173
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL
Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Bronze Tablet, Candelabra of Tawnos, Channel, Chaos Orb, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Divine Intervention, Falling Star, Fastbond, Feldon's Cane, Fork, Hymn to Tourach, Ivory Tower, Jeweled Bird, Land Tax, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Timetwister, Time Walk, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic Restricted, Stronghold
Type:Historic
Subtype:Eternal
Order:203
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH
Banned:Amulet of Quoz, Balance, Black Vise, Braingeyser, Bronze Tablet, Channel, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Feldon's Cane, Fork, Ivory Tower, Jeweled Bird, Maze of Ith, Mind Twist, Rebirth, Regrowth, Sol Ring, Strip Mine, Tempest Efreet, Timmerian Fiends, Wheel of Fortune, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic Restricted, Tempest
Type:Historic
Subtype:Eternal
Order:196
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP
Banned:Amulet of Quoz, Balance, Black Vise, Braingeyser, Bronze Tablet, Channel, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Feldon's Cane, Fork, Ivory Tower, Jeweled Bird, Maze of Ith, Mind Twist, Rebirth, Regrowth, Sol Ring, Strip Mine, Tempest Efreet, Timmerian Fiends, Wheel of Fortune, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic Restricted, Urza's Destiny
Type:Historic
Subtype:Eternal
Order:237
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS
Banned:Amulet of Quoz, Balance, Black Vise, Braingeyser, Bronze Tablet, Channel, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Fork, Ivory Tower, Jeweled Bird, Memory Jar, Mind Twist, Rebirth, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Timmerian Fiends, Tolarian Academy, Wheel of Fortune, Windfall, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic Restricted, Urza's Legacy
Type:Historic
Subtype:Eternal
Order:223
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG
Banned:Amulet of Quoz, Balance, Black Vise, Braingeyser, Bronze Tablet, Channel, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Fork, Ivory Tower, Jeweled Bird, Maze of Ith, Mind Twist, Rebirth, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Timmerian Fiends, Tolarian Academy, Wheel of Fortune, Windfall, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic Restricted, Urza's Saga
Type:Historic
Subtype:Eternal
Order:213
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG
Banned:Amulet of Quoz, Balance, Black Vise, Braingeyser, Bronze Tablet, Channel, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Feldon's Cane, Fork, Ivory Tower, Jeweled Bird, Maze of Ith, Mind Twist, Rebirth, Regrowth, Sol Ring, Strip Mine, Tempest Efreet, Timmerian Fiends, Wheel of Fortune, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic Restricted, Visions
Type:Historic
Subtype:Eternal
Order:183
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS
Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Bronze Tablet, Candelabra of Tawnos, Channel, Chaos Orb, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Divine Intervention, Falling Star, Fastbond, Feldon's Cane, Fork, Ivory Tower, Jeweled Bird, Land Tax, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Timetwister, Time Walk, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic Restricted, Weatherlight
Type:Historic
Subtype:Eternal
Order:190
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH
Banned:Amulet of Quoz, Balance, Black Vise, Braingeyser, Bronze Tablet, Channel, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Feldon's Cane, Fork, Ivory Tower, Jeweled Bird, Maze of Ith, Mind Twist, Rebirth, Regrowth, Sol Ring, Strip Mine, Tempest Efreet, Timmerian Fiends, Wheel of Fortune, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic, Apr 1999
Type:Historic
Subtype:Eternal
Order:229
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG
Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Demonic Tutor, Fastbond, Fork, Ivory Tower, Library of Alexandria, Mirror Universe, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Stroke of Genius, Time Spiral, Timetwister, Time Walk, Tolarian Academy, Underworld Dreams, Wheel of Fortune, Windfall

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic, Classic Sixth Edition
Type:Historic
Subtype:Eternal
Order:233
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED
Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Demonic Tutor, Fastbond, Fork, Ivory Tower, Library of Alexandria, Mirror Universe, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Stroke of Genius, Time Spiral, Timetwister, Time Walk, Tolarian Academy, Underworld Dreams, Wheel of Fortune, Windfall

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic, Exodus
Type:Historic
Subtype:Eternal
Order:206
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO
Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Demonic Tutor, Fastbond, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mirror Universe, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic, Fifth Edition
Type:Historic
Subtype:Eternal
Order:185
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED
Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Copy Artifact, Demonic Tutor, Fastbond, Feldon's Cane, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic, Mirage
Type:Historic
Subtype:Eternal
Order:177
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR
Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Copy Artifact, Demonic Tutor, Fastbond, Feldon's Cane, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic, Oct 1996
Type:Historic
Subtype:Eternal
Order:172
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL
Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Copy Artifact, Demonic Tutor, Fastbond, Feldon's Cane, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic, Stronghold
Type:Historic
Subtype:Eternal
Order:201
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH
Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Demonic Tutor, Fastbond, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mirror Universe, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic, Tempest
Type:Historic
Subtype:Eternal
Order:194
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP
Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Demonic Tutor, Fastbond, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mirror Universe, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic, Urza's Destiny
Type:Historic
Subtype:Eternal
Order:238
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS
Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Demonic Tutor, Fastbond, Fork, Ivory Tower, Library of Alexandria, Mirror Universe, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Stroke of Genius, Time Spiral, Timetwister, Time Walk, Tolarian Academy, Underworld Dreams, Wheel of Fortune, Windfall

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic, Urza's Legacy
Type:Historic
Subtype:Eternal
Order:224
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG
Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Demonic Tutor, Fastbond, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mirror Universe, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Stroke of Genius, Timetwister, Time Walk, Tolarian Academy, Underworld Dreams, Wheel of Fortune, Windfall

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic, Urza's Saga
Type:Historic
Subtype:Eternal
Order:211
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG
Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Demonic Tutor, Fastbond, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mirror Universe, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic, Visions
Type:Historic
Subtype:Eternal
Order:182
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS
Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Copy Artifact, Demonic Tutor, Fastbond, Feldon's Cane, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Classic, Weatherlight
Type:Historic
Subtype:Eternal
Order:188
Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH
Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Candelabra of Tawnos, Copy Artifact, Demonic Tutor, Fastbond, Feldon's Cane, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb

View File

@@ -1,5 +1,6 @@
[format]
Name:Commander
Type:Casual
Subtype:Commander
Order:106
Banned:Adriana's Valor; Advantageous Proclamation; Ashnod's Coupon; Assemble the Rank and Vile; Backup Plan; Brago's Favor; Double Cross; Double Deal; Double Dip; Double Play; Double Stroke; Double Take; Echoing Boon; Emissary's Ploy; Enter the Dungeon; Hired Heist; Hold the Perimeter; Hymn of the Wilds; Immediate Action; Incendiary Dissent; Iterative Analysis; Magical Hacker; Mox Lotus; Muzzio's Preparations; Natural Unity; Once More with Feeling; Power Play; R&D's Secret Lair; Richard Garfield, Ph.D.; Secret Summoning; Secrets of Paradise; Sentinel Dispatch; Sovereign's Realm; Staying Power; Summoner's Bond; Time Machine; Unexpected Potential; Weight Advantage; Worldknit; Amulet of Quoz; Bronze Tablet; Contract from Below; Darkpact; Demonic Attorney; Jeweled Bird; Rebirth; Tempest Efreet; Timmerian Fiends; Ancestral Recall; Balance; Biorhythm; Black Lotus; Braids, Cabal Minion; Chaos Orb; Coalition Victory; Channel; Emrakul, the Aeons Torn; Erayo, Soratami Ascendant; Falling Star; Fastbond; Gifts Ungiven; Griselbrand; Karakas; Leovold, Emissary of Trest; Library of Alexandria; Limited Resources; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Painter's Servant; Panoptic Mirror; Primeval Titan; Prophet of Kruphix; Recurring Nightmare; Rofellos, Llanowar Emissary; Shahrazad; Staying Power; Sundering Titan; Sway of the Stars; Sylvan Primordial; Time Machine; Time Vault; Time Walk; Tinker; Tolarian Academy; Trade Secrets; Upheaval; Worldfire; Yawgmoth's Bargain

View File

@@ -1,5 +1,6 @@
[format]
Name:Conspiracy
Type:Historic
Subtype:Custom
Order:186
Sets:CNS, CN2

View File

@@ -1,5 +1,6 @@
[format]
Name:Duels
Type:Historic
Type:Digital
Subtype:Videogame
Order:190
Sets:ORI, BFZ, OGW, SOI, EMN, KLD, AER, AKH

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Alara Reborn
Type:Historic
Subtype:Rotating
Order:447
Sets:ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB
Banned:Aether Vial, Disciple of the Vault, Sensei's Divining Top, Skullclamp

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Apr 1999
Type:Historic
Subtype:Rotating
Order:227
Sets:2ED, 3ED, 4ED, CHR, 5ED, DRK, ARENA, FEM, ICE, CHR, HML, ALL, MIR, VIS, WTH, TMP, STH, EXO, USG, ULG
Banned:Amulet of Quoz, Balance, Black Vise, Bronze Tablet, Channel, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Hypnotic Specter, Ivory Tower, Jeweled Bird, Kird Ape, Mana Crypt, Maze of Ith, Memory Jar, Mind Twist, Rebirth, Regrowth, Serendib Efreet, Sol Ring, Strip Mine, Tempest Efreet, Timmerian Fiends, Tolarian Academy, Wheel of Fortune, Windfall, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Apr 2000
Type:Historic
Subtype:Rotating
Order:253
Sets:3ED, 5ED, 6ED, ICE, HML, ALL, MIR, VIS, WTH, TMP, STH, EXO, USG, ULG, UDS, MMQ, NMS
Banned:Aladdin's Lamp, Amulet of Quoz, Animate Artifact, Armageddon Clock, Balance, Basalt Monolith, Black Vise, Black Ward, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Brass Man, Celestial Prism, Channel, Chaoslace, Clone, Conservator, Contract from Below, Control Magic, Conversion, Copy Artifact, Creature Bond, Dark Ritual, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dream Halls, Dwarven Weaponsmith, Earth Elemental, Earthbind, Earthcraft, Ebony Horse, El-Hajjaj, Farmstead, Fastbond, Fork, Gaea's Liege, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Island Fish Jasconius, Ivory Tower, Jandor's Ring, Juggernaut, Jump, Kird Ape, Kormus Bell, Kudzu, Lance, Lifelace, Lightning Bolt, Living Wall, Lotus Petal, Magnetic Mountain, Mahamoti Djinn, Mana Crypt, Mana Vault, Memory Jar, Mijae Djinn, Mind Over Matter, Mind Twist, Mishra's War Machine, Nettling Imp, Northern Paladin, Onulet, Power Leak, Power Surge, Purelace, Rebirth, Reconstruction, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Reverse Polarity, Roc of Kher Ridges, Rock Hydra, Rocket Launcher, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Sengir Vampire, Serendib Efreet, Serra Angel, Simulacrum, Siren's Call, Sol Ring, Sunglasses of Urza, The Rack, Thoughtlace, Timber Wolves, Time Spiral, Timmerian Fiends, Tolarian Academy, Tunnel, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Ice, Wall of Water, Wall of Wood, Water Elemental, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Apr 2001
Type:Historic
Subtype:Rotating
Order:271
Sets:3ED, 5ED, 6ED, ICE, HML, ALL, MIR, VIS, WTH, TMP, STH, EXO, USG, ULG, UDS, MMQ, NMS, PCY, INV, PLS
Banned:Aladdin's Lamp, Amulet of Quoz, Animate Artifact, Armageddon Clock, Balance, Basalt Monolith, Black Vise, Black Ward, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Brass Man, Celestial Prism, Channel, Chaoslace, Clone, Conservator, Contract from Below, Control Magic, Conversion, Copy Artifact, Creature Bond, Dark Ritual, Darkpact, Deathlace, Demonic Attorney, Demonic Consultation, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dream Halls, Dwarven Weaponsmith, Earth Elemental, Earthbind, Earthcraft, Ebony Horse, El-Hajjaj, Farmstead, Fastbond, Fork, Gaea's Liege, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Island Fish Jasconius, Ivory Tower, Jandor's Ring, Juggernaut, Jump, Kird Ape, Kormus Bell, Kudzu, Lance, Lifelace, Lightning Bolt, Living Wall, Lotus Petal, Magnetic Mountain, Mahamoti Djinn, Mana Crypt, Mana Vault, Memory Jar, Mijae Djinn, Mind Over Matter, Mind Twist, Mishra's War Machine, Necropotence, Nettling Imp, Northern Paladin, Onulet, Power Leak, Power Surge, Purelace, Rebirth, Reconstruction, Red Elemental Blast, Red Ward, Regrowth, Replenish, Resurrection, Reverse Polarity, Roc of Kher Ridges, Rock Hydra, Rocket Launcher, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Sengir Vampire, Serendib Efreet, Serra Angel, Simulacrum, Siren's Call, Sol Ring, Sunglasses of Urza, Survival of the Fittest, The Rack, Thoughtlace, Timber Wolves, Time Spiral, Timmerian Fiends, Tolarian Academy, Tunnel, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Ice, Wall of Water, Wall of Wood, Water Elemental, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Aug 1999
Type:Historic
Subtype:Rotating
Order:239
Sets:3ED, 4ED, CHR, 5ED, 6ED, DRK, ARENA, FEM, ICE, CHR, HML, ALL, MIR, VIS, WTH, TMP, STH, EXO, USG, ULG, UDS
Banned:Amulet of Quoz, Balance, Basalt Monolith, Black Vise, Braingeyser, Bronze Tablet, Channel, Clone, Dwarven Weaponsmith, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Earthbind, Farmstead, Fastbond, Fork, Granite Gargoyle, Guardian Angel, Hypnotic Specter, Ivory Tower, Jandor's Ring, Jeweled Bird, Juggernaut, Kird Ape, Kudzu, Lance, Living Wall, Mana Crypt, Maze of Ith, Memory Jar, Mijae Djinn, Mind Twist, Nettling Imp, Rebirth, Reconstruction, Regrowth, Resurrection, Reverse Polarity, Roc of Kher Ridges, Rock Hydra, Rocket Launcher, Sacrifice, Sedge Troll, Serendib Efreet, Sol Ring, Strip Mine, Tempest Efreet, Time Spiral, Timmerian Fiends, Tolarian Academy, Vesuvan Doppelganger, Veteran Bodyguard, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Avacyn Restored
Type:Historic
Subtype:Rotating
Order:520
Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR
Banned:Jace, the Mind Sculptor; Mental Misstep; Ponder; Stoneforge Mystic

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Betrayers of Kamigawa
Type:Historic
Subtype:Rotating
Order:352
Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK
Banned:Ancient Tomb, Dark Ritual, Dream Halls, Earthcraft, Entomb, Frantic Search, Goblin Lackey, Goblin Recruiter, Grim Monolith, Hermit Druid, Lotus Petal, Memory Jar, Metalworker, Mind Over Matter, Oath of Druids, Replenish, Skullclamp, Survival of the Fittest, Time Spiral, Tinker, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Champions of Kamigawa
Type:Historic
Subtype:Rotating
Order:346
Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK
Banned:Ancient Tomb, Dark Ritual, Dream Halls, Earthcraft, Entomb, Frantic Search, Goblin Lackey, Goblin Recruiter, Grim Monolith, Hermit Druid, Lotus Petal, Memory Jar, Metalworker, Mind Over Matter, Oath of Druids, Replenish, Skullclamp, Survival of the Fittest, Time Spiral, Tinker, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Classic Sixth Edition
Type:Historic
Subtype:Eternal
Order:231
Sets:2ED, 3ED, 4ED, CHR, 5ED, 6ED, DRK, ARENA, FEM, ICE, CHR, HML, ALL, MIR, VIS, WTH, TMP, STH, EXO, USG, ULG
Banned:Amulet of Quoz, Balance, Black Vise, Bronze Tablet, Channel, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Hypnotic Specter, Ivory Tower, Jeweled Bird, Kird Ape, Mana Crypt, Maze of Ith, Memory Jar, Mind Twist, Rebirth, Regrowth, Serendib Efreet, Sol Ring, Strip Mine, Tempest Efreet, Timmerian Fiends, Tolarian Academy, Wheel of Fortune, Windfall, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Coldsnap
Type:Historic
Subtype:Rotating
Order:386
Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP
Banned:Aether Vial, Disciple of the Vault, Entomb, Skullclamp

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Conflux
Type:Historic
Subtype:Rotating
Order:442
Sets:ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX
Banned:Aether Vial, Disciple of the Vault, Sensei's Divining Top, Skullclamp

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Dark Ascension
Type:Historic
Subtype:Rotating
Order:513
Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD, DKA
Banned:Jace, the Mind Sculptor; Mental Misstep; Ponder; Stoneforge Mystic

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Darksteel
Type:Historic
Subtype:Rotating
Order:331
Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST
Banned:Ancient Tomb, Dark Ritual, Dream Halls, Earthcraft, Entomb, Frantic Search, Goblin Lackey, Goblin Recruiter, Grim Monolith, Hermit Druid, Lotus Petal, Memory Jar, Mind Over Matter, Oath of Druids, Replenish, Survival of the Fittest, Time Spiral, Tinker, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Dissension
Type:Historic
Subtype:Rotating
Order:381
Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS
Banned:Aether Vial, Disciple of the Vault, Entomb, Skullclamp

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Eighth Edition
Type:Historic
Subtype:Rotating
Order:317
Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED
Banned:Dark Ritual, Dream Halls, Earthcraft, Lotus Petal, Memory Jar, Mind Over Matter, Replenish, Survival of the Fittest, Time Spiral, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Eventide
Type:Historic
Subtype:Rotating
Order:429
Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE
Banned:Aether Vial, Disciple of the Vault, Entomb, Skullclamp

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Exodus
Type:Historic
Subtype:Rotating
Order:209
Sets:2ED, 3ED, 4ED, CHR, 5ED, DRK, ARENA, FEM, ICE, CHR, HML, ALL, MIR, VIS, WTH, TMP, STH, EXO
Banned:Amulet of Quoz, Balance, Black Vise, Braingeyser, Bronze Tablet, Channel, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Hypnotic Specter, Ivory Tower, Jeweled Bird, Kird Ape, Mana Crypt, Maze of Ith, Mind Twist, Rebirth, Regrowth, Serendib Efreet, Sol Ring, Strip Mine, Tempest Efreet, Timmerian Fiends, Wheel of Fortune, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Fifth Dawn
Type:Historic
Subtype:Rotating
Order:338
Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN
Banned:Ancient Tomb, Dark Ritual, Dream Halls, Earthcraft, Entomb, Frantic Search, Goblin Lackey, Goblin Recruiter, Grim Monolith, Hermit Druid, Lotus Petal, Memory Jar, Mind Over Matter, Oath of Druids, Replenish, Survival of the Fittest, Time Spiral, Tinker, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Future Sight
Type:Historic
Subtype:Rotating
Order:401
Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT
Banned:Aether Vial, Disciple of the Vault, Entomb, Skullclamp

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Guildpact
Type:Historic
Subtype:Rotating
Order:375
Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT
Banned:Aether Vial, Disciple of the Vault, Entomb, Skullclamp

View File

@@ -1,5 +1,6 @@
[format]
Name:Extended, Innistrad
Type:Historic
Subtype:Rotating
Order:503
Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Invasion
Type:Historic
Subtype:Rotating
Order:262
Sets:3ED, 5ED, 6ED, ICE, HML, ALL, MIR, VIS, WTH, TMP, STH, EXO, USG, ULG, UDS, MMQ, NMS, PCY, INV
Banned:Aladdin's Lamp, Amulet of Quoz, Animate Artifact, Armageddon Clock, Balance, Basalt Monolith, Black Vise, Black Ward, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Brass Man, Celestial Prism, Channel, Chaoslace, Clone, Conservator, Contract from Below, Control Magic, Conversion, Copy Artifact, Creature Bond, Dark Ritual, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dream Halls, Dwarven Weaponsmith, Earth Elemental, Earthbind, Earthcraft, Ebony Horse, El-Hajjaj, Farmstead, Fastbond, Fork, Gaea's Liege, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Island Fish Jasconius, Ivory Tower, Jandor's Ring, Juggernaut, Jump, Kird Ape, Kormus Bell, Kudzu, Lance, Lifelace, Lightning Bolt, Living Wall, Lotus Petal, Magnetic Mountain, Mahamoti Djinn, Mana Crypt, Mana Vault, Memory Jar, Mijae Djinn, Mind Over Matter, Mind Twist, Mishra's War Machine, Nettling Imp, Northern Paladin, Onulet, Power Leak, Power Surge, Purelace, Rebirth, Reconstruction, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Reverse Polarity, Roc of Kher Ridges, Rock Hydra, Rocket Launcher, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Sengir Vampire, Serendib Efreet, Serra Angel, Simulacrum, Siren's Call, Sol Ring, Sunglasses of Urza, The Rack, Thoughtlace, Timber Wolves, Time Spiral, Timmerian Fiends, Tolarian Academy, Tunnel, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Ice, Wall of Water, Wall of Wood, Water Elemental, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Jan 1999
Type:Historic
Subtype:Rotating
Order:219
Sets:2ED, 3ED, 4ED, CHR, 5ED, DRK, ARENA, FEM, ICE, CHR, HML, ALL, MIR, VIS, WTH, TMP, STH, EXO, USG
Banned:Amulet of Quoz, Balance, Black Vise, Bronze Tablet, Channel, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Hypnotic Specter, Ivory Tower, Jeweled Bird, Kird Ape, Mana Crypt, Maze of Ith, Mind Twist, Rebirth, Regrowth, Serendib Efreet, Sol Ring, Strip Mine, Tempest Efreet, Timmerian Fiends, Tolarian Academy, Wheel of Fortune, Windfall, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Jan 2004
Type:Historic
Subtype:Rotating
Order:326
Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD
Banned:Ancient Tomb, Dark Ritual, Dream Halls, Earthcraft, Entomb, Frantic Search, Goblin Lackey, Goblin Recruiter, Grim Monolith, Hermit Druid, Lotus Petal, Memory Jar, Mind Over Matter, Oath of Druids, Replenish, Survival of the Fittest, Time Spiral, Tinker, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Judgment
Type:Historic
Subtype:Rotating
Order:294
Sets:3ED, 5ED, 6ED, 7ED, ICE, HML, ALL, MIR, VIS, WTH, TMP, STH, EXO, USG, ULG, UDS, MMQ, NMS, PCY, INV, PLS, APC, ODY, TOR, JUD
Banned:Aladdin's Lamp, Amulet of Quoz, Animate Artifact, Armageddon Clock, Balance, Basalt Monolith, Black Vise, Black Ward, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Brass Man, Celestial Prism, Channel, Chaoslace, Clone, Conservator, Contract from Below, Control Magic, Conversion, Copy Artifact, Creature Bond, Dark Ritual, Darkpact, Deathlace, Demonic Attorney, Demonic Consultation, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dream Halls, Dwarven Weaponsmith, Earth Elemental, Earthbind, Earthcraft, Ebony Horse, El-Hajjaj, Farmstead, Fastbond, Fork, Gaea's Liege, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Island Fish Jasconius, Ivory Tower, Jandor's Ring, Juggernaut, Jump, Kird Ape, Kormus Bell, Kudzu, Lance, Lifelace, Lightning Bolt, Living Wall, Lotus Petal, Magnetic Mountain, Mana Crypt, Mana Vault, Memory Jar, Mijae Djinn, Mind Over Matter, Mind Twist, Mishra's War Machine, Necropotence, Nettling Imp, Onulet, Power Leak, Power Surge, Purelace, Rebirth, Reconstruction, Red Elemental Blast, Red Ward, Regrowth, Replenish, Resurrection, Reverse Polarity, Roc of Kher Ridges, Rock Hydra, Rocket Launcher, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Serendib Efreet, Simulacrum, Siren's Call, Sol Ring, Sunglasses of Urza, Survival of the Fittest, The Rack, Thoughtlace, Timber Wolves, Time Spiral, Timmerian Fiends, Tolarian Academy, Tunnel, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Ice, Wall of Water, Wall of Wood, Water Elemental, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, July 2010
Type:Historic
Subtype:Rotating
Order:472
Sets:TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE
Banned:Hypergenesis, Sword of the Meek

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Legions
Type:Historic
Subtype:Rotating
Order:304
Sets:6ED, 7ED, TMP, STH, EXO, USG, ULG, UDS, MMQ, NMS, PCY, INV, PLS, APC, ODY, TOR, JUD, ONS, LGN
Banned:Dark Ritual, Dream Halls, Earthcraft, Lotus Petal, Memory Jar, Mind Over Matter, Replenish, Survival of the Fittest, Time Spiral, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Lorwyn
Type:Historic
Subtype:Rotating
Order:413
Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW
Banned:Aether Vial, Disciple of the Vault, Entomb, Skullclamp

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Magic 2010
Type:Historic
Subtype:Rotating
Order:453
Sets:ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10
Banned:Aether Vial, Disciple of the Vault, Sensei's Divining Top, Skullclamp

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Magic 2011
Type:Historic
Subtype:Rotating
Order:475
Sets:TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11
Banned:Hypergenesis, Sword of the Meek

View File

@@ -1,5 +1,6 @@
[format]
Name:Extended, Magic 2012
Type:Historic
Subtype:Rotating
Order:496
Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Magic 2013
Type:Historic
Subtype:Rotating
Order:526
Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13
Banned:Jace, the Mind Sculptor; Mental Misstep; Ponder; Stoneforge Mystic

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Mercadian Masques
Type:Historic
Subtype:Rotating
Order:244
Sets:3ED, 5ED, 6ED, ICE, HML, ALL, MIR, VIS, WTH, TMP, STH, EXO, USG, ULG, UDS, MMQ
Banned:Aladdin's Lamp, Amulet of Quoz, Animate Artifact, Armageddon Clock, Balance, Basalt Monolith, Black Vise, Black Ward, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Brass Man, Celestial Prism, Channel, Chaoslace, Clone, Conservator, Contract from Below, Control Magic, Conversion, Copy Artifact, Creature Bond, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dream Halls, Dwarven Weaponsmith, Earth Elemental, Earthbind, Earthcraft, Ebony Horse, El-Hajjaj, Farmstead, Fastbond, Fork, Gaea's Liege, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Island Fish Jasconius, Ivory Tower, Jandor's Ring, Juggernaut, Jump, Kird Ape, Kormus Bell, Kudzu, Lance, Lifelace, Lightning Bolt, Living Wall, Lotus Petal, Magnetic Mountain, Mahamoti Djinn, Mana Crypt, Memory Jar, Mijae Djinn, Mind Over Matter, Mind Twist, Mishra's War Machine, Nettling Imp, Northern Paladin, Onulet, Power Leak, Power Surge, Purelace, Rebirth, Reconstruction, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Reverse Polarity, Roc of Kher Ridges, Rock Hydra, Rocket Launcher, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Sengir Vampire, Serendib Efreet, Serra Angel, Simulacrum, Siren's Call, Sol Ring, Sunglasses of Urza, The Rack, Thoughtlace, Timber Wolves, Time Spiral, Timmerian Fiends, Tolarian Academy, Tunnel, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Ice, Wall of Water, Wall of Wood, Water Elemental, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb

View File

@@ -1,5 +1,6 @@
[format]
Name:Extended, Mirrodin Besieged
Type:Historic
Subtype:Rotating
Order:486
Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Mirrodin
Type:Historic
Subtype:Rotating
Order:323
Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD
Banned:Dark Ritual, Dream Halls, Earthcraft, Entomb, Frantic Search, Goblin Lackey, Lotus Petal, Memory Jar, Mind Over Matter, Replenish, Survival of the Fittest, Time Spiral, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Morningtide
Type:Historic
Subtype:Rotating
Order:418
Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR
Banned:Aether Vial, Disciple of the Vault, Entomb, Skullclamp

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Nemesis
Type:Historic
Subtype:Rotating
Order:249
Sets:3ED, 5ED, 6ED, ICE, HML, ALL, MIR, VIS, WTH, TMP, STH, EXO, USG, ULG, UDS, MMQ, NMS
Banned:Aladdin's Lamp, Amulet of Quoz, Animate Artifact, Armageddon Clock, Balance, Basalt Monolith, Black Vise, Black Ward, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Brass Man, Celestial Prism, Channel, Chaoslace, Clone, Conservator, Contract from Below, Control Magic, Conversion, Copy Artifact, Creature Bond, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dream Halls, Dwarven Weaponsmith, Earth Elemental, Earthbind, Earthcraft, Ebony Horse, El-Hajjaj, Farmstead, Fastbond, Fork, Gaea's Liege, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Island Fish Jasconius, Ivory Tower, Jandor's Ring, Juggernaut, Jump, Kird Ape, Kormus Bell, Kudzu, Lance, Lifelace, Lightning Bolt, Living Wall, Lotus Petal, Magnetic Mountain, Mahamoti Djinn, Mana Crypt, Memory Jar, Mijae Djinn, Mind Over Matter, Mind Twist, Mishra's War Machine, Nettling Imp, Northern Paladin, Onulet, Power Leak, Power Surge, Purelace, Rebirth, Reconstruction, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Reverse Polarity, Roc of Kher Ridges, Rock Hydra, Rocket Launcher, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Sengir Vampire, Serendib Efreet, Serra Angel, Simulacrum, Siren's Call, Sol Ring, Sunglasses of Urza, The Rack, Thoughtlace, Timber Wolves, Time Spiral, Timmerian Fiends, Tolarian Academy, Tunnel, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Ice, Wall of Water, Wall of Wood, Water Elemental, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb

View File

@@ -1,5 +1,6 @@
[format]
Name:Extended, New Phyrexia
Type:Historic
Subtype:Rotating
Order:491
Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Ninth Edition
Type:Historic
Subtype:Rotating
Order:363
Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED
Banned:Ancient Tomb, Dark Ritual, Dream Halls, Earthcraft, Entomb, Frantic Search, Goblin Lackey, Goblin Recruiter, Grim Monolith, Hermit Druid, Lotus Petal, Memory Jar, Metalworker, Mind Over Matter, Oath of Druids, Replenish, Skullclamp, Survival of the Fittest, Time Spiral, Tinker, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will

View File

@@ -1,6 +1,8 @@
[format]
Name:Extended, Oct 1999
Order:571
Subtype:Rotating
Type:Historic
Order:240
Sets:3ED, 5ED, 6ED, ICE, HML, ALL, MIR, VIS, WTH, TMP, STH, EXO, USG, ULG, UDS
Banned:Aladdin's Lamp, Amulet of Quoz, Animate Artifact, Armageddon Clock, Balance, Basalt Monolith, Black Vise, Black Ward, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Brass Man, Celestial Prism, Channel, Chaoslace, Clone, Conservator, Contract from Below, Control Magic, Conversion, Copy Artifact, Creature Bond, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dream Halls, Dwarven Weaponsmith, Earth Elemental, Earthbind, Earthcraft, Ebony Horse, El-Hajjaj, Farmstead, Fastbond, Fork, Gaea's Liege, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Island Fish Jasconius, Ivory Tower, Jandor's Ring, Juggernaut, Jump, Kird Ape, Kormus Bell, Kudzu, Lance, Lifelace, Lightning Bolt, Living Wall, Lotus Petal, Magnetic Mountain, Mahamoti Djinn, Mana Crypt, Memory Jar, Mijae Djinn, Mind Over Matter, Mind Twist, Mishra's War Machine, Nettling Imp, Northern Paladin, Onulet, Power Leak, Power Surge, Purelace, Rebirth, Reconstruction, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Reverse Polarity, Roc of Kher Ridges, Rock Hydra, Rocket Launcher, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Sengir Vampire, Serendib Efreet, Serra Angel, Simulacrum, Siren's Call, Sol Ring, Sunglasses of Urza, The Rack, Thoughtlace, Timber Wolves, Time Spiral, Timmerian Fiends, Tolarian Academy, Tunnel, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Ice, Wall of Water, Wall of Wood, Water Elemental, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb
Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS
Additional:Badlands, Bayou, Plateau, Savannah, Scrubland, Taiga, Tropical Island, Tundra, Underground Sea, Volcanic Island
Banned:Amulet of Quoz, Balance, Dream Halls, Earthcraft, Lotus Petal, Memory Jar, Mind Over Matter, Time Spiral, Timmerian Fiends, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Oct 2003
Type:Historic
Subtype:Rotating
Order:320
Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED
Banned:Dark Ritual, Dream Halls, Earthcraft, Entomb, Frantic Search, Goblin Lackey, Lotus Petal, Memory Jar, Mind Over Matter, Replenish, Survival of the Fittest, Time Spiral, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, October 2011
Type:Historic
Subtype:Rotating
Order:507
Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD
Banned:Jace, the Mind Sculptor; Mental Misstep; Ponder; Stoneforge Mystic

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Odyssey
Type:Historic
Subtype:Rotating
Order:282
Sets:3ED, 5ED, 6ED, 7ED, ICE, HML, ALL, MIR, VIS, WTH, TMP, STH, EXO, USG, ULG, UDS, MMQ, NMS, PCY, INV, PLS, APC, ODY
Banned:Aladdin's Lamp, Amulet of Quoz, Animate Artifact, Armageddon Clock, Balance, Basalt Monolith, Black Vise, Black Ward, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Brass Man, Celestial Prism, Channel, Chaoslace, Clone, Conservator, Contract from Below, Control Magic, Conversion, Copy Artifact, Creature Bond, Dark Ritual, Darkpact, Deathlace, Demonic Attorney, Demonic Consultation, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dream Halls, Dwarven Weaponsmith, Earth Elemental, Earthbind, Earthcraft, Ebony Horse, El-Hajjaj, Farmstead, Fastbond, Fork, Gaea's Liege, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Island Fish Jasconius, Ivory Tower, Jandor's Ring, Juggernaut, Jump, Kird Ape, Kormus Bell, Kudzu, Lance, Lifelace, Lightning Bolt, Living Wall, Lotus Petal, Magnetic Mountain, Mana Crypt, Mana Vault, Memory Jar, Mijae Djinn, Mind Over Matter, Mind Twist, Mishra's War Machine, Necropotence, Nettling Imp, Onulet, Power Leak, Power Surge, Purelace, Rebirth, Reconstruction, Red Elemental Blast, Red Ward, Regrowth, Replenish, Resurrection, Reverse Polarity, Roc of Kher Ridges, Rock Hydra, Rocket Launcher, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Sengir Vampire, Serendib Efreet, Simulacrum, Siren's Call, Sol Ring, Sunglasses of Urza, Survival of the Fittest, The Rack, Thoughtlace, Timber Wolves, Time Spiral, Timmerian Fiends, Tolarian Academy, Tunnel, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Ice, Wall of Water, Wall of Wood, Water Elemental, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Onslaught
Type:Historic
Subtype:Rotating
Order:299
Sets:6ED, 7ED, TMP, STH, EXO, USG, ULG, UDS, MMQ, NMS, PCY, INV, PLS, APC, ODY, TOR, JUD, ONS
Banned:Dark Ritual, Dream Halls, Earthcraft, Lotus Petal, Memory Jar, Mind Over Matter, Replenish, Survival of the Fittest, Time Spiral, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Planar Chaos
Type:Historic
Subtype:Rotating
Order:396
Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC
Banned:Aether Vial, Disciple of the Vault, Entomb, Skullclamp

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Planeshift
Type:Historic
Subtype:Rotating
Order:267
Sets:3ED, 5ED, 6ED, ICE, HML, ALL, MIR, VIS, WTH, TMP, STH, EXO, USG, ULG, UDS, MMQ, NMS, PCY, INV, PLS
Banned:Aladdin's Lamp, Amulet of Quoz, Animate Artifact, Armageddon Clock, Balance, Basalt Monolith, Black Vise, Black Ward, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Brass Man, Celestial Prism, Channel, Chaoslace, Clone, Conservator, Contract from Below, Control Magic, Conversion, Copy Artifact, Creature Bond, Dark Ritual, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dream Halls, Dwarven Weaponsmith, Earth Elemental, Earthbind, Earthcraft, Ebony Horse, El-Hajjaj, Farmstead, Fastbond, Fork, Gaea's Liege, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Island Fish Jasconius, Ivory Tower, Jandor's Ring, Juggernaut, Jump, Kird Ape, Kormus Bell, Kudzu, Lance, Lifelace, Lightning Bolt, Living Wall, Lotus Petal, Magnetic Mountain, Mahamoti Djinn, Mana Crypt, Mana Vault, Memory Jar, Mijae Djinn, Mind Over Matter, Mind Twist, Mishra's War Machine, Nettling Imp, Northern Paladin, Onulet, Power Leak, Power Surge, Purelace, Rebirth, Reconstruction, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Reverse Polarity, Roc of Kher Ridges, Rock Hydra, Rocket Launcher, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Sengir Vampire, Serendib Efreet, Serra Angel, Simulacrum, Siren's Call, Sol Ring, Sunglasses of Urza, The Rack, Thoughtlace, Timber Wolves, Time Spiral, Timmerian Fiends, Tolarian Academy, Tunnel, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Ice, Wall of Water, Wall of Wood, Water Elemental, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Prophecy
Type:Historic
Subtype:Rotating
Order:255
Sets:3ED, 5ED, 6ED, ICE, HML, ALL, MIR, VIS, WTH, TMP, STH, EXO, USG, ULG, UDS, MMQ, NMS, PCY
Banned:Aladdin's Lamp, Amulet of Quoz, Animate Artifact, Armageddon Clock, Balance, Basalt Monolith, Black Vise, Black Ward, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Brass Man, Celestial Prism, Channel, Chaoslace, Clone, Conservator, Contract from Below, Control Magic, Conversion, Copy Artifact, Creature Bond, Dark Ritual, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dream Halls, Dwarven Weaponsmith, Earth Elemental, Earthbind, Earthcraft, Ebony Horse, El-Hajjaj, Farmstead, Fastbond, Fork, Gaea's Liege, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Island Fish Jasconius, Ivory Tower, Jandor's Ring, Juggernaut, Jump, Kird Ape, Kormus Bell, Kudzu, Lance, Lifelace, Lightning Bolt, Living Wall, Lotus Petal, Magnetic Mountain, Mahamoti Djinn, Mana Crypt, Mana Vault, Memory Jar, Mijae Djinn, Mind Over Matter, Mind Twist, Mishra's War Machine, Nettling Imp, Northern Paladin, Onulet, Power Leak, Power Surge, Purelace, Rebirth, Reconstruction, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Reverse Polarity, Roc of Kher Ridges, Rock Hydra, Rocket Launcher, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Sengir Vampire, Serendib Efreet, Serra Angel, Simulacrum, Siren's Call, Sol Ring, Sunglasses of Urza, The Rack, Thoughtlace, Timber Wolves, Time Spiral, Timmerian Fiends, Tolarian Academy, Tunnel, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Ice, Wall of Water, Wall of Wood, Water Elemental, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Ravnica: City of Guilds
Type:Historic
Subtype:Rotating
Order:936
Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV
Banned:Aether Vial, Disciple of the Vault, Entomb, Skullclamp

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Rise of the Eldrazi
Type:Historic
Subtype:Rotating
Order:469
Sets:MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE
Banned:Aether Vial, Disciple of the Vault, Sensei's Divining Top, Skullclamp

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Saviors of Kamigawa
Type:Historic
Subtype:Rotating
Order:359
Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK
Banned:Ancient Tomb, Dark Ritual, Dream Halls, Earthcraft, Entomb, Frantic Search, Goblin Lackey, Goblin Recruiter, Grim Monolith, Hermit Druid, Lotus Petal, Memory Jar, Metalworker, Mind Over Matter, Oath of Druids, Replenish, Skullclamp, Survival of the Fittest, Time Spiral, Tinker, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will

View File

@@ -1,5 +1,6 @@
[format]
Name:Extended, Scars of Mirrodin
Type:Historic
Subtype:Rotating
Order:480
Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Scourge
Type:Historic
Subtype:Rotating
Order:311
Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG
Banned:Dark Ritual, Dream Halls, Earthcraft, Lotus Petal, Memory Jar, Mind Over Matter, Replenish, Survival of the Fittest, Time Spiral, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Sep 2004
Type:Historic
Subtype:Rotating
Order:341
Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN
Banned:Ancient Tomb, Dark Ritual, Dream Halls, Earthcraft, Entomb, Frantic Search, Goblin Lackey, Goblin Recruiter, Grim Monolith, Hermit Druid, Lotus Petal, Memory Jar, Metalworker, Mind Over Matter, Oath of Druids, Replenish, Skullclamp, Survival of the Fittest, Time Spiral, Tinker, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Sep 2005
Type:Historic
Subtype:Rotating
Order:366
Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED
Banned:Aether Vial, Ancient Tomb, Dark Ritual, Disciple of the Vault, Dream Halls, Earthcraft, Entomb, Frantic Search, Goblin Lackey, Goblin Recruiter, Grim Monolith, Hermit Druid, Lotus Petal, Memory Jar, Metalworker, Mind Over Matter, Oath of Druids, Replenish, Skullclamp, Survival of the Fittest, Time Spiral, Tinker, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Sep 2008
Type:Historic
Subtype:Rotating
Order:433
Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE
Banned:Aether Vial, Disciple of the Vault, Entomb, Sensei's Divining Top, Skullclamp

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Seventh Edition
Type:Historic
Subtype:Rotating
Order:273
Sets:3ED, 5ED, 6ED, 7ED, ICE, HML, ALL, MIR, VIS, WTH, TMP, STH, EXO, USG, ULG, UDS, MMQ, NMS, PCY, INV, PLS
Banned:Aladdin's Lamp, Amulet of Quoz, Animate Artifact, Armageddon Clock, Balance, Basalt Monolith, Black Vise, Black Ward, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Brass Man, Celestial Prism, Channel, Chaoslace, Clone, Conservator, Contract from Below, Control Magic, Conversion, Copy Artifact, Creature Bond, Dark Ritual, Darkpact, Deathlace, Demonic Attorney, Demonic Consultation, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dream Halls, Dwarven Weaponsmith, Earth Elemental, Earthbind, Earthcraft, Ebony Horse, El-Hajjaj, Farmstead, Fastbond, Fork, Gaea's Liege, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Island Fish Jasconius, Ivory Tower, Jandor's Ring, Juggernaut, Jump, Kird Ape, Kormus Bell, Kudzu, Lance, Lifelace, Lightning Bolt, Living Wall, Lotus Petal, Magnetic Mountain, Mana Crypt, Mana Vault, Memory Jar, Mijae Djinn, Mind Over Matter, Mind Twist, Mishra's War Machine, Necropotence, Nettling Imp, Onulet, Power Leak, Power Surge, Purelace, Rebirth, Reconstruction, Red Elemental Blast, Red Ward, Regrowth, Replenish, Resurrection, Reverse Polarity, Roc of Kher Ridges, Rock Hydra, Rocket Launcher, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Sengir Vampire, Serendib Efreet, Simulacrum, Siren's Call, Sol Ring, Sunglasses of Urza, Survival of the Fittest, The Rack, Thoughtlace, Timber Wolves, Time Spiral, Timmerian Fiends, Tolarian Academy, Tunnel, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Ice, Wall of Water, Wall of Wood, Water Elemental, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Shadowmoor
Type:Historic
Subtype:Rotating
Order:423
Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM
Banned:Aether Vial, Disciple of the Vault, Entomb, Skullclamp

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Shards of Alara
Type:Historic
Subtype:Rotating
Order:437
Sets:ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA
Banned:Aether Vial, Disciple of the Vault, Sensei's Divining Top, Skullclamp

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Stronghold
Type:Historic
Subtype:Rotating
Order:204
Sets:2ED, 3ED, 4ED, CHR, 5ED, DRK, ARENA, FEM, ICE, CHR, HML, ALL, MIR, VIS, WTH, TMP, STH
Banned:Amulet of Quoz, Balance, Black Vise, Braingeyser, Bronze Tablet, Channel, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Hypnotic Specter, Ivory Tower, Jeweled Bird, Kird Ape, Mana Crypt, Maze of Ith, Mind Twist, Rebirth, Regrowth, Serendib Efreet, Sol Ring, Strip Mine, Tempest Efreet, Timmerian Fiends, Wheel of Fortune, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Tempest
Type:Historic
Subtype:Rotating
Order:197
Sets:2ED, 3ED, 4ED, CHR, 5ED, DRK, ARENA, FEM, ICE, CHR, HML, ALL, MIR, VIS, WTH, TMP
Banned:Amulet of Quoz, Balance, Black Vise, Braingeyser, Bronze Tablet, Channel, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Hypnotic Specter, Ivory Tower, Jeweled Bird, Kird Ape, Mana Crypt, Maze of Ith, Mind Twist, Rebirth, Regrowth, Serendib Efreet, Sol Ring, Strip Mine, Tempest Efreet, Timmerian Fiends, Wheel of Fortune, Zuran Orb

View File

@@ -1,6 +1,7 @@
[format]
Name:Extended, Tenth Edition
Type:Historic
Subtype:Rotating
Order:407
Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E
Banned:Aether Vial, Disciple of the Vault, Entomb, Skullclamp

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