diff --git a/forge-core/src/main/java/forge/util/storage/StorageReaderRecursiveFolderWithUserFolder.java b/forge-core/src/main/java/forge/util/storage/StorageReaderRecursiveFolderWithUserFolder.java new file mode 100644 index 00000000000..fba09b57f74 --- /dev/null +++ b/forge-core/src/main/java/forge/util/storage/StorageReaderRecursiveFolderWithUserFolder.java @@ -0,0 +1,160 @@ +/* + * Forge: Play Magic: the Gathering. + * Copyright (C) 2011 Nate + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +package forge.util.storage; + +import com.google.common.base.Function; +import forge.util.TextUtil; + +import java.io.File; +import java.io.FileFilter; +import java.io.FilenameFilter; +import java.io.IOException; +import java.util.*; + +/** + * This class treats every file in the given folder as a source for a named + * object. The descendant should implement read method to deserialize a single + * item. So that readAll will return a map of Name => Object as read from disk + * + * @param the generic type + */ +public abstract class StorageReaderRecursiveFolderWithUserFolder extends StorageReaderBase { + /** + * @return the directory + */ + public File getDirectory() { + return directory; + } + + @Override + public String getFullPath() { + return directory.getPath(); + } + + protected final File directory; + protected final File userDirectory; + + /** + * Instantiates a new storage reader folder. + * + * @param itemDir0 the item dir0 + */ + public StorageReaderRecursiveFolderWithUserFolder(final File itemDir0, final File userItemDir0, Function keySelector0) { + super(keySelector0); + + this.directory = itemDir0; + this.userDirectory = userItemDir0; + + if (this.directory == null) { + throw new IllegalArgumentException("No directory specified"); + } + try { + if (this.directory.isFile()) { + throw new IOException("Not a directory"); + } else { + this.directory.mkdirs(); + if (!this.directory.isDirectory()) { + throw new IOException("Directory can't be created"); + } + } + } catch (final IOException ex) { + throw new RuntimeException("StorageReaderFolder.ctor() error, " + ex.getMessage()); + } + } + + public final List objectsThatFailedToLoad = new ArrayList(); + + /* (non-Javadoc) + * @see forge.util.IItemReader#readAll() + */ + @Override + public Map readAll() { + final Map result = new TreeMap(); + + Collection forgeFormats = listFileTree(directory); + Collection customFormats = listFileTree(userDirectory); + + forgeFormats.addAll(customFormats); + + final File[] files = forgeFormats.toArray(new File[forgeFormats.size()]); + + for (final File file : files) { + try { + final T newDeck = this.read(file); + if (null == newDeck) { + final String msg = "An object stored in " + file.getPath() + " failed to load.\nPlease submit this as a bug with the mentioned file/directory attached."; + continue;//skip format completely - perhaps non format file + } + + String newKey = keySelector.apply(newDeck); + if (result.containsKey(newKey)) { + System.err.println("StorageReaderFolder: Overwriting an object with key " + newKey); + } + result.put(newKey, newDeck); + } catch (final NoSuchElementException ex) { + final String message = TextUtil.concatWithSpace( file.getName(),"failed to load because ----", ex.getMessage()); + objectsThatFailedToLoad.add(message); + } + } + return result; + } + + private Collection listFileTree(File dir) { + Set fileTree = new HashSet(); + if(dir==null||dir.listFiles(getFileFilter())==null){ + return fileTree; + } + for (File entry : dir.listFiles(getFileFilter())) { + if (entry.isFile()) fileTree.add(entry); + else fileTree.addAll(listFileTree(entry)); + } + return fileTree; + } + + /** + * Read the object from file. + * + * @param file the file + * @return the object deserialized by inherited class + */ + protected abstract T read(File file); + + /** + * TODO: Write javadoc for this method. + * + * @return FilenameFilter to pick only relevant objects for deserialization + */ + protected abstract FilenameFilter getFileFilter(); + + @Override + public String getItemKey(T item) { + return keySelector.apply(item); + } + + // methods handling nested folders are provided. It's up to consumer whether to use these or not. + @Override + public Iterable getSubFolders() { + File[] list = this.directory.listFiles(new FileFilter() { + @Override + public boolean accept(File file) { + return file.isDirectory() && !file.isHidden(); + } + }); + return Arrays.asList(list); + } +} diff --git a/forge-game/src/main/java/forge/game/GameFormat.java b/forge-game/src/main/java/forge/game/GameFormat.java index c624abb49c5..48be6ad57fb 100644 --- a/forge-game/src/main/java/forge/game/GameFormat.java +++ b/forge-game/src/main/java/forge/game/GameFormat.java @@ -34,28 +34,39 @@ import forge.item.PaperCard; import forge.util.FileSection; import forge.util.FileUtil; import forge.util.storage.StorageBase; -import forge.util.storage.StorageReaderFolder; +import forge.util.storage.StorageReaderRecursiveFolderWithUserFolder; import java.io.File; import java.io.FilenameFilter; +import java.text.ParseException; +import java.text.SimpleDateFormat; import java.util.*; import java.util.Map.Entry; public class GameFormat implements Comparable { private final String name; - public enum FormatType {Sanctioned, Casual, Historic, Custom} + public enum FormatType {Sanctioned, Casual, Historic, Digital, Custom} + public enum FormatSubType {Block, Standard, Extended, Modern, Legacy, Vintage, Commander, Planechase, Videogame, MTGO, Custom} + // contains allowed sets, when empty allows all sets private FormatType formatType; + private FormatSubType formatSubType; protected final List allowedSetCodes; // this is mutable to support quest mode set unlocks protected final List allowedRarities; protected final List bannedCardNames; protected final List restrictedCardNames; - + protected final List additionalCardNames; // for cards that are legal but not reprinted in any of the allowed Sets + protected boolean restrictedLegendary = false; + private Date effectiveDate; + private final static SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd"); + private final static String DEFAULTDATE = "1990-01-01"; + protected final transient List allowedSetCodes_ro; protected final transient List bannedCardNames_ro; protected final transient List restrictedCardNames_ro; + protected final transient List additionalCardNames_ro; protected final transient Predicate filterRules; protected final transient Predicate filterPrinted; @@ -63,24 +74,46 @@ public class GameFormat implements Comparable { private final int index; public GameFormat(final String fName, final Iterable sets, final List bannedCards) { - this(fName, sets, bannedCards, null, null, 0, FormatType.Custom); + this(fName, parseDate(DEFAULTDATE), sets, bannedCards, null, false, 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)", parseDate(DEFAULTDATE) , null, null, null, false + , null, null, Integer.MAX_VALUE, FormatType.Custom, FormatSubType.Custom); - public GameFormat(final String fName, final Iterable sets, final List bannedCards, - final List restrictedCards, final List rarities, int compareIdx, FormatType formatType) { + public GameFormat(final String fName, final Date effectiveDate, final Iterable sets, final List bannedCards, + final List restrictedCards, Boolean restrictedLegendary, final List additionalCards, + final List rarities, int compareIdx, FormatType formatType, FormatSubType formatSubType) { this.index = compareIdx; this.formatType = formatType; + this.formatSubType = formatSubType; this.name = fName; - allowedSetCodes = sets == null ? new ArrayList() : Lists.newArrayList(sets); + this.effectiveDate = effectiveDate; + + if(sets != null) { + Set parsedSets = new HashSet<>(); + for (String set : sets) { + if (StaticData.instance().getEditions().get(set) == null) { + System.out.println("Set " + set + " in format " + fName + " does not match any valid editions!"); + continue; + } + parsedSets.add(set); + + } + allowedSetCodes = Lists.newArrayList(parsedSets); + }else{ + allowedSetCodes = new ArrayList(); + } + bannedCardNames = bannedCards == null ? new ArrayList() : Lists.newArrayList(bannedCards); restrictedCardNames = restrictedCards == null ? new ArrayList() : Lists.newArrayList(restrictedCards); allowedRarities = rarities == null ? new ArrayList() : rarities; + this.restrictedLegendary = restrictedLegendary; + additionalCardNames = additionalCards == null ? new ArrayList() : Lists.newArrayList(additionalCards); 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(); @@ -99,6 +132,9 @@ public class GameFormat implements Comparable { } p = Predicates.and(p, Predicates.or(crp)); } + if (!this.additionalCardNames_ro.isEmpty()) { + p = Predicates.or(p, IPaperCard.Predicates.names(this.additionalCardNames_ro)); + } return p; } @@ -114,10 +150,26 @@ public class GameFormat implements Comparable { return this.name; } + private static Date parseDate(String date) { + if( date.length() <= 7 ) + date = date + "-01"; + try { + return formatter.parse(date); + } catch (ParseException e) { + return new Date(); + } + } + + public Date getEffectiveDate() { return effectiveDate; } + public FormatType getFormatType() { return this.formatType; } + public FormatSubType getFormatSubType() { + return this.formatSubType; + } + public List getAllowedSetCodes() { return this.allowedSetCodes_ro; } @@ -129,6 +181,15 @@ public class GameFormat implements Comparable { public List getRestrictedCards() { return restrictedCardNames_ro; } + + public Boolean isRestrictedLegendary() { + return restrictedLegendary; + } + + public List getAdditionalCards() { + return additionalCardNames_ro; + } + public List getAllowedRarities() { return allowedRarities; } @@ -171,9 +232,11 @@ public class GameFormat implements Comparable { } } - if(!restrictedCardNames_ro.isEmpty() ) { + if(!restrictedCardNames_ro.isEmpty() || restrictedLegendary ) { for (Entry poolEntry : allCards) { - if( poolEntry.getValue().intValue() > 1 && restrictedCardNames_ro.contains(poolEntry.getKey().getName())) + if( poolEntry.getValue().intValue() > 1 && (restrictedCardNames_ro.contains(poolEntry.getKey().getName()) + || (poolEntry.getKey().getRules().getType().isLegendary() + && !poolEntry.getKey().getRules().getType().isPlaneswalker() && restrictedLegendary))) return false; } } @@ -201,36 +264,80 @@ public class GameFormat implements Comparable { 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); + } + } + if (formatType.equals(FormatType.Historic)){ + if(effectiveDate!=other.effectiveDate) {//for matching dates or default dates default to name sorting + return other.effectiveDate.compareTo(effectiveDate); + } + } + return name.compareTo(other.name); + //return index - other.index; } public int getIndex() { return index; } - public static class Reader extends StorageReaderFolder { + public static class Reader extends StorageReaderRecursiveFolderWithUserFolder { List naturallyOrdered = new ArrayList(); + boolean includeHistoric; + private List coreFormats = new ArrayList<>(); + { + coreFormats.add("Standard.txt"); + coreFormats.add("Modern.txt"); + coreFormats.add("Legacy.txt"); + coreFormats.add("Vintage.txt"); + coreFormats.add("Commander.txt"); + + } - public Reader(File file0) { - super(file0, GameFormat.FN_GET_NAME); + public Reader(File forgeFormats, File customFormats, boolean includeHistoric) { + super(forgeFormats, customFormats, GameFormat.FN_GET_NAME); + this.includeHistoric=includeHistoric; } @Override protected GameFormat read(File file) { + if(!includeHistoric && !coreFormats.contains(file.getName())){ + return null; + } final Map> contents = FileSection.parseSections(FileUtil.readFile(file)); List sets = null; // default: all sets allowed List bannedCards = null; // default: nothing banned List restrictedCards = null; // default: nothing restricted + Boolean restrictedLegendary = false; + List additionalCards = null; // default: nothing additional List rarities = null; - FileSection section = FileSection.parse(contents.get("format"), ":"); + List formatStrings = contents.get("format"); + if (formatStrings == null){ + return null; + } + FileSection section = FileSection.parse(formatStrings, ":"); 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 dateStr = section.get("effective"); + if (dateStr == null){ + dateStr = DEFAULTDATE; + } + Date date = parseDate(dateStr); String strSets = section.get("sets"); if ( null != strSets ) { sets = Arrays.asList(strSets.split(", ")); @@ -245,6 +352,16 @@ public class GameFormat implements Comparable { restrictedCards = Arrays.asList(strCars.split("; ")); } + Boolean strRestrictedLegendary = section.getBoolean("restrictedlegendary"); + if ( strRestrictedLegendary != null ) { + restrictedLegendary = strRestrictedLegendary; + } + + strCars = section.get("additional"); + if ( strCars != null ) { + additionalCards = Arrays.asList(strCars.split("; ")); + } + strCars = section.get("rarities"); if ( strCars != null ) { CardRarity cr; @@ -257,7 +374,7 @@ public class GameFormat implements Comparable { } } - GameFormat result = new GameFormat(title, sets, bannedCards, restrictedCards, rarities, idx, formatType); + GameFormat result = new GameFormat(title, date, sets, bannedCards, restrictedCards, restrictedLegendary, additionalCards, rarities, idx, formatType,formatsubType); naturallyOrdered.add(result); return result; } @@ -270,24 +387,31 @@ public class GameFormat implements Comparable { public static final FilenameFilter TXT_FILE_FILTER = new FilenameFilter() { @Override public boolean accept(final File dir, final String name) { - return name.endsWith(".txt"); + return name.endsWith(".txt") || dir.isDirectory(); } }; } public static class Collection extends StorageBase { private List naturallyOrdered; + private List reverseDateOrdered; public Collection(GameFormat.Reader reader) { super("Format collections", reader); naturallyOrdered = reader.naturallyOrdered; + reverseDateOrdered = new ArrayList<>(naturallyOrdered); Collections.sort(naturallyOrdered); + Collections.sort(reverseDateOrdered, new InverseDateComparator()); } public Iterable getOrderedList() { return naturallyOrdered; } + public Iterable getReverseDateOrderedList() { + return reverseDateOrdered; + } + public Iterable getSanctionedList() { List coreList = new ArrayList<>(); for(GameFormat format: naturallyOrdered){ @@ -298,6 +422,41 @@ public class GameFormat implements Comparable { return coreList; } + public Iterable getFilterList() { + List coreList = new ArrayList<>(); + for(GameFormat format: naturallyOrdered){ + if(!format.getFormatType().equals(FormatType.Historic) + &&!format.getFormatType().equals(FormatType.Digital)){ + coreList.add(format); + } + } + return coreList; + } + + public Iterable getHistoricList() { + List coreList = new ArrayList<>(); + for(GameFormat format: naturallyOrdered){ + if(format.getFormatType().equals(FormatType.Historic)){ + coreList.add(format); + } + } + return coreList; + } + + public Map> getHistoricMap() { + Map> coreList = new HashMap<>(); + for(GameFormat format: naturallyOrdered){ + if(format.getFormatType().equals(FormatType.Historic)){ + String alpha = format.getName().substring(0,1); + if(!coreList.containsKey(alpha)){ + coreList.put(alpha,new ArrayList<>()); + } + coreList.get(alpha).add(format); + } + } + return coreList; + } + public GameFormat getStandard() { return this.map.get("Standard"); } @@ -315,7 +474,7 @@ public class GameFormat implements Comparable { } public GameFormat getFormatOfDeck(Deck deck) { - for(GameFormat gf : naturallyOrdered) { + for(GameFormat gf : reverseDateOrdered) { if ( gf.isDeckLegal(deck) ) return gf; } @@ -336,11 +495,26 @@ public class GameFormat implements Comparable { } public Set getAllFormatsOfDeck(Deck deck) { + return getAllFormatsOfDeck(deck, false); + } + + public Set getAllFormatsOfDeck(Deck deck, Boolean exhaustive) { SortedSet result = new TreeSet(); + Set coveredTypes = new HashSet<>(); CardPool allCards = deck.getAllCardsInASinglePool(); - for(GameFormat gf : naturallyOrdered) { + for(GameFormat gf : reverseDateOrdered) { + if (gf.getFormatType().equals(FormatType.Digital) && !exhaustive){ + //exclude Digital formats from lists for now + continue; + } + if (gf.getFormatType().equals(FormatType.Historic) && coveredTypes.contains(gf.getFormatSubType()) + && !exhaustive){ + //exclude duplicate formats - only keep first of e.g. Standard historical + continue; + } if (gf.isPoolLegal(allCards)) { result.add(gf); + coveredTypes.add(gf.getFormatSubType()); } } if (result.isEmpty()) { @@ -355,6 +529,27 @@ public class GameFormat implements Comparable { } } + public static class InverseDateComparator implements Comparator { + public int compare(GameFormat gf1, GameFormat gf2){ + if ((null == gf1) || (null == gf2)) { + return 1; + } + if (gf2.formatType != gf1.formatType){ + return gf1.formatType.compareTo(gf2.formatType); + }else{ + if (gf2.formatSubType != gf1.formatSubType){ + return gf1.formatSubType.compareTo(gf2.formatSubType); + } + } + if (gf1.formatType.equals(FormatType.Historic)){ + if(gf1.effectiveDate!=gf2.effectiveDate) {//for matching dates or default dates default to name sorting + return gf1.effectiveDate.compareTo(gf2.effectiveDate); + } + } + return gf1.name.compareTo(gf2.name); + } + } + public final Predicate editionLegalPredicate = new Predicate() { @Override public boolean apply(final CardEdition subject) { diff --git a/forge-gui-desktop/src/main/java/forge/itemmanager/CardManager.java b/forge-gui-desktop/src/main/java/forge/itemmanager/CardManager.java index 2b3985078d4..8fe9f7f912e 100644 --- a/forge-gui-desktop/src/main/java/forge/itemmanager/CardManager.java +++ b/forge-gui-desktop/src/main/java/forge/itemmanager/CardManager.java @@ -7,10 +7,13 @@ import forge.itemmanager.filters.*; import forge.model.FModel; import forge.quest.QuestWorld; import forge.quest.data.QuestPreferences; +import forge.screens.home.quest.DialogChooseFormats; import forge.screens.home.quest.DialogChooseSets; import forge.screens.match.controllers.CDetailPicture; import javax.swing.*; +import java.util.ArrayList; +import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map.Entry; @@ -82,7 +85,7 @@ public class CardManager extends ItemManager { GuiUtils.addSeparator(menu); //separate from current search item JMenu fmt = GuiUtils.createMenu("Format"); - for (final GameFormat f : FModel.getFormats().getOrderedList()) { + for (final GameFormat f : FModel.getFormats().getFilterList()) { GuiUtils.addMenuItem(fmt, f.getName(), null, new Runnable() { @Override public void run() { @@ -92,6 +95,27 @@ public class CardManager extends ItemManager { } menu.add(fmt); + GuiUtils.addMenuItem(menu, "Formats...", null, new Runnable() { + @Override public void run() { + final CardSetFilter existingFilter = itemManager.getFilter(CardSetFilter.class); + if (existingFilter != null) { + existingFilter.edit(); + } else { + final DialogChooseFormats dialog = new DialogChooseFormats(); + dialog.setOkCallback(new Runnable() { + @Override public void run() { + final List formats = dialog.getSelectedFormats(); + if (!formats.isEmpty()) { + for(GameFormat format: formats) { + itemManager.addFilter(new CardFormatFilter(itemManager, format)); + } + } + } + }); + } + } + }); + GuiUtils.addMenuItem(menu, "Sets...", null, new Runnable() { @Override public void run() { diff --git a/forge-gui-desktop/src/main/java/forge/itemmanager/DeckManager.java b/forge-gui-desktop/src/main/java/forge/itemmanager/DeckManager.java index 28dfc800cc8..fec8122965f 100644 --- a/forge-gui-desktop/src/main/java/forge/itemmanager/DeckManager.java +++ b/forge-gui-desktop/src/main/java/forge/itemmanager/DeckManager.java @@ -4,18 +4,15 @@ import java.awt.Component; import java.awt.Graphics; import java.awt.Rectangle; import java.awt.event.MouseEvent; -import java.util.HashMap; -import java.util.TreeSet; -import java.util.List; -import java.util.Map; +import java.util.*; import java.util.Map.Entry; -import java.util.SortedSet; import javax.swing.JMenu; import javax.swing.JTable; import javax.swing.event.ListSelectionEvent; import javax.swing.event.ListSelectionListener; +import forge.screens.home.quest.DialogChooseFormats; import org.apache.commons.lang3.StringUtils; import forge.Singletons; @@ -176,7 +173,7 @@ public final class DeckManager extends ItemManager implements IHasGam menu.add(folder); final JMenu fmt = GuiUtils.createMenu("Format"); - for (final GameFormat f : FModel.getFormats().getOrderedList()) { + for (final GameFormat f : FModel.getFormats().getFilterList()) { GuiUtils.addMenuItem(fmt, f.getName(), null, new Runnable() { @Override public void run() { @@ -186,6 +183,29 @@ public final class DeckManager extends ItemManager implements IHasGam } menu.add(fmt); + + GuiUtils.addMenuItem(menu, "Formats...", null, new Runnable() { + @Override public void run() { + final DeckFormatFilter existingFilter = getFilter(DeckFormatFilter.class); + if (existingFilter != null) { + existingFilter.edit(); + } else { + final DialogChooseFormats dialog = new DialogChooseFormats(); + dialog.setOkCallback(new Runnable() { + @Override public void run() { + final List formats = dialog.getSelectedFormats(); + if (!formats.isEmpty()) { + for(GameFormat format: formats) { + addFilter(new DeckFormatFilter(DeckManager.this, format)); + } + } + } + }); + } + } + }); + + GuiUtils.addMenuItem(menu, "Sets...", null, new Runnable() { @Override public void run() { final DeckSetFilter existingFilter = getFilter(DeckSetFilter.class); diff --git a/forge-gui-desktop/src/main/java/forge/itemmanager/filters/DeckFormatFilter.java b/forge-gui-desktop/src/main/java/forge/itemmanager/filters/DeckFormatFilter.java index 891ca39bb0f..fb3de87acdb 100644 --- a/forge-gui-desktop/src/main/java/forge/itemmanager/filters/DeckFormatFilter.java +++ b/forge-gui-desktop/src/main/java/forge/itemmanager/filters/DeckFormatFilter.java @@ -6,6 +6,7 @@ import forge.game.GameFormat; import forge.deck.DeckProxy; import forge.itemmanager.ItemManager; import forge.itemmanager.SFilterUtil; +import forge.screens.home.quest.DialogChooseFormats; public class DeckFormatFilter extends FormatFilter { @@ -27,4 +28,16 @@ public class DeckFormatFilter extends FormatFilter { protected final Predicate buildPredicate() { return DeckProxy.createPredicate(SFilterUtil.buildFormatFilter(this.formats, this.allowReprints)); } + + public void edit() { + final DialogChooseFormats dialog = new DialogChooseFormats(this.formats); + dialog.setOkCallback(new Runnable() { + @Override + public void run() { + allowReprints = dialog.getWantReprints(); + formats.clear(); + formats.addAll(dialog.getSelectedFormats()); + } + }); + } } diff --git a/forge-gui-desktop/src/main/java/forge/itemmanager/filters/FormatFilter.java b/forge-gui-desktop/src/main/java/forge/itemmanager/filters/FormatFilter.java index a5c104eca30..114437e9d3c 100644 --- a/forge-gui-desktop/src/main/java/forge/itemmanager/filters/FormatFilter.java +++ b/forge-gui-desktop/src/main/java/forge/itemmanager/filters/FormatFilter.java @@ -27,6 +27,7 @@ public abstract class FormatFilter extends ListLabelFil protected String getTooltip() { Set sets = new HashSet(); Set bannedCards = new HashSet(); + Set additionalCards = new HashSet<>(); for (GameFormat format : this.formats) { List formatSets = format.getAllowedSetCodes(); @@ -37,6 +38,10 @@ public abstract class FormatFilter extends ListLabelFil if (formatBannedCards != null) { bannedCards.addAll(formatBannedCards); } + List formatAdditionalCards = format.getAdditionalCards(); + if (formatAdditionalCards != null) { + additionalCards.addAll(formatAdditionalCards); + } } //use HTML tooltips so we can insert line breaks @@ -58,7 +63,9 @@ public abstract class FormatFilter extends ListLabelFil } CardEdition edition = editions.get(code); - tooltip.append(" ").append(edition.getName()).append(" (").append(code).append("),"); + if(edition!=null) { + tooltip.append(" ").append(edition.getName()).append(" (").append(code).append("),"); + } lineLen = tooltip.length() - lastLen; } @@ -90,6 +97,27 @@ public abstract class FormatFilter extends ListLabelFil // chop off last semicolon tooltip.delete(tooltip.length() - 1, tooltip.length()); } + + if (!additionalCards.isEmpty()) { + tooltip.append("

Additional:"); + lastLen += lineLen; + lineLen = 0; + + for (String cardName : additionalCards) { + // don't let a single line get too long + if (50 < lineLen) { + tooltip.append("
"); + lastLen += lineLen; + lineLen = 0; + } + + tooltip.append(" ").append(cardName).append(";"); + lineLen = tooltip.length() - lastLen; + } + + // chop off last semicolon + tooltip.delete(tooltip.length() - 1, tooltip.length()); + } tooltip.append(""); return tooltip.toString(); } diff --git a/forge-gui-desktop/src/main/java/forge/screens/home/quest/CSubmenuQuestData.java b/forge-gui-desktop/src/main/java/forge/screens/home/quest/CSubmenuQuestData.java index 24a7a9b7d15..a7cfb424db2 100644 --- a/forge-gui-desktop/src/main/java/forge/screens/home/quest/CSubmenuQuestData.java +++ b/forge-gui-desktop/src/main/java/forge/screens/home/quest/CSubmenuQuestData.java @@ -90,6 +90,24 @@ public enum CSubmenuQuestData implements ICDoc { } }); + view.getBtnSelectFormat().setCommand(new UiCommand() { + @Override + public void run() { + final DialogChooseFormats dialog = new DialogChooseFormats(); + dialog.setOkCallback(new Runnable() { + @Override + public void run() { + customFormatCodes.clear(); + Set sets = new HashSet(); + for(GameFormat format:dialog.getSelectedFormats()){ + sets.addAll(format.getAllowedSetCodes()); + } + customFormatCodes.addAll(sets); + } + }); + } + }); + view.getBtnPrizeCustomFormat().setCommand(new UiCommand() { @Override public void run() { @@ -104,6 +122,24 @@ public enum CSubmenuQuestData implements ICDoc { } }); + view.getBtnPrizeSelectFormat().setCommand(new UiCommand() { + @Override + public void run() { + final DialogChooseFormats dialog = new DialogChooseFormats(); + dialog.setOkCallback(new Runnable() { + @Override + public void run() { + customPrizeFormatCodes.clear(); + Set sets = new HashSet(); + for(GameFormat format:dialog.getSelectedFormats()){ + sets.addAll(format.getAllowedSetCodes()); + } + customPrizeFormatCodes.addAll(sets); + } + }); + } + }); + view.getBtnPreferredColors().setCommand(new UiCommand() { @Override public void run() { @@ -197,10 +233,11 @@ public enum CSubmenuQuestData implements ICDoc { if (worldFormat == null) { switch(view.getStartingPoolType()) { - case Rotating: + case Sanctioned: fmtStartPool = view.getRotatingFormat(); break; + case Casual: case CustomFormat: if (customFormatCodes.isEmpty()) { if (!FOptionPane.showConfirmDialog("You have defined a custom format that doesn't contain any sets.\nThis will start a game without restriction.\n\nContinue?")) { @@ -257,6 +294,7 @@ public enum CSubmenuQuestData implements ICDoc { case Complete: fmtPrizes = null; break; + case Casual: case CustomFormat: if (customPrizeFormatCodes.isEmpty()) { if (!FOptionPane.showConfirmDialog("You have defined custom format as containing no sets.\nThis will choose all editions without restriction as prizes.\n\nContinue?")) { @@ -265,7 +303,7 @@ public enum CSubmenuQuestData implements ICDoc { } fmtPrizes = customPrizeFormatCodes.isEmpty() ? null : new GameFormat("Custom Prizes", customPrizeFormatCodes, null); // chosen sets and no banned cards break; - case Rotating: + case Sanctioned: fmtPrizes = view.getPrizedRotatingFormat(); break; default: diff --git a/forge-gui-desktop/src/main/java/forge/screens/home/quest/DialogChooseFormats.java b/forge-gui-desktop/src/main/java/forge/screens/home/quest/DialogChooseFormats.java new file mode 100644 index 00000000000..37577c55809 --- /dev/null +++ b/forge-gui-desktop/src/main/java/forge/screens/home/quest/DialogChooseFormats.java @@ -0,0 +1,160 @@ +package forge.screens.home.quest; + +import forge.assets.FSkinProp; +import forge.card.CardEdition; +import forge.game.GameFormat; +import forge.gui.SOverlayUtils; +import forge.model.FModel; +import forge.toolbox.*; +import forge.util.TextUtil; +import net.miginfocom.swing.MigLayout; + +import javax.swing.*; +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; +import java.util.*; + +public class DialogChooseFormats { + + private List selectedFormats = new ArrayList<>() ; + private boolean wantReprints = true; + private Runnable okCallback; + + private final List choices = new ArrayList<>(); + private final FCheckBox cbWantReprints = new FCheckBox("Allow compatible reprints from other sets"); + + public DialogChooseFormats(){ + this(null); + } + + public DialogChooseFormats(Set preselectedFormats) { + + List sanctioned = new ArrayList<>(); + List casual = new ArrayList<>(); + List historic = new ArrayList<>(); + + for (GameFormat format : FModel.getFormats().getOrderedList()){ + FCheckBox box = new FCheckBox(format.getName()); + box.setName(format.getName()); + switch (format.getFormatType()){ + case Sanctioned: + sanctioned.add(box); + break; + case Historic: + historic.add(box); + break; + case Custom: + case Casual: + case Digital: + default: + casual.add(box); + break; + + } + box.setSelected(null != preselectedFormats && preselectedFormats.contains(format)); + } + + FPanel panel = new FPanel(new MigLayout("insets 0, gap 0, center, wrap 3")); + panel.setOpaque(false); + panel.setBackgroundTexture(FSkin.getIcon(FSkinProp.BG_TEXTURE)); + + panel.add(new FLabel.Builder().text("Choose formats").fontSize(18).build(), "center, span, wrap, gaptop 10"); + + String constraints = "aligny top"; + panel.add(makeCheckBoxList(sanctioned, "Sanctioned", true), constraints); + panel.add(makeCheckBoxList(casual, "Other", false), constraints); + panel.add(makeCheckBoxList(historic, "Historic", false), constraints); + + final JPanel overlay = FOverlay.SINGLETON_INSTANCE.getPanel(); + overlay.setLayout(new MigLayout("insets 0, gap 0, wrap, ax center, ay center")); + + final Runnable cleanup = new Runnable() { + @Override + public void run() { + SOverlayUtils.hideOverlay(); + } + }; + + FButton btnOk = new FButton("OK"); + btnOk.addActionListener(new ActionListener() { + @Override + public void actionPerformed(ActionEvent arg0) { + cleanup.run(); + handleOk(); + } + }); + + FButton btnCancel = new FButton("Cancel"); + btnCancel.addActionListener(new ActionListener() { + @Override + public void actionPerformed(ActionEvent e) { + cleanup.run(); + } + }); + + JPanel southPanel = new JPanel(new MigLayout("insets 10, gap 20, ax center")); + southPanel.setOpaque(false); + southPanel.add(cbWantReprints, "center, span, wrap"); + southPanel.add(btnOk, "center, w 40%, h 20!"); + southPanel.add(btnCancel, "center, w 40%, h 20!"); + + panel.add(southPanel, "dock south, gapBottom 10"); + + overlay.add(panel); + panel.getRootPane().setDefaultButton(btnOk); + SOverlayUtils.showOverlay(); + + } + + public void setOkCallback(Runnable onOk) { + okCallback = onOk; + } + + public List getSelectedFormats() { + return selectedFormats; + } + + public boolean getWantReprints() { + return wantReprints; + } + + private JPanel makeCheckBoxList(List formats, String title, boolean focused) { + + choices.addAll(formats); + final FCheckBoxList cbl = new FCheckBoxList<>(false); + cbl.setListData(formats.toArray(new FCheckBox[formats.size()])); + cbl.setVisibleRowCount(Math.min(20, formats.size())); + + if (focused) { + SwingUtilities.invokeLater(new Runnable() { + @Override + public void run() { + cbl.requestFocusInWindow(); + } + }); + } + + JPanel pnl = new JPanel(new MigLayout("center, wrap")); + pnl.setOpaque(false); + pnl.add(new FLabel.Builder().text(title).build()); + pnl.add(new FScrollPane(cbl, true)); + return pnl; + + } + + private void handleOk() { + + for (FCheckBox box : choices) { + if (box.isSelected()) { + selectedFormats.add(FModel.getFormats().getFormat(box.getName())); + } + wantReprints = cbWantReprints.isSelected(); + } + + if (null != okCallback) { + okCallback.run(); + } + + } + +} diff --git a/forge-gui-desktop/src/main/java/forge/screens/home/quest/VSubmenuQuestData.java b/forge-gui-desktop/src/main/java/forge/screens/home/quest/VSubmenuQuestData.java index be2cb46e223..9eee9e58ca3 100644 --- a/forge-gui-desktop/src/main/java/forge/screens/home/quest/VSubmenuQuestData.java +++ b/forge-gui-desktop/src/main/java/forge/screens/home/quest/VSubmenuQuestData.java @@ -82,6 +82,8 @@ public enum VSubmenuQuestData implements IVSubmenu { private final FComboBoxWrapper cbxCustomDeck = new FComboBoxWrapper<>(); private final FLabel btnDefineCustomFormat = new FLabel.Builder().opaque(true).hoverable(true).text("Define custom format").build(); + private final FLabel btnSelectFormat = new FLabel.Builder().opaque(true).hoverable(true).text("Select format").build(); + private final FCheckBox boxCompleteSet = new FCheckBox("Start with all cards in selected sets"); private final FCheckBox boxAllowDuplicates = new FCheckBox("Allow duplicate cards"); @@ -91,6 +93,8 @@ public enum VSubmenuQuestData implements IVSubmenu { private final FLabel btnPrizeDefineCustomFormat = new FLabel.Builder().opaque(true).hoverable(true).text("Define custom format").build(); + private final FLabel btnPrizeSelectFormat = new FLabel.Builder().opaque(true).hoverable(true).text("Select format").build(); + private final FLabel lblPrizedCards = new FLabel.Builder().text("Prized cards:").build(); private final FComboBoxWrapper cbxPrizedCards = new FComboBoxWrapper<>(); @@ -116,10 +120,11 @@ public enum VSubmenuQuestData implements IVSubmenu { lblPreconDeck.setVisible(newVal == StartingPoolType.Precon); cbxPreconDeck.setVisible(newVal == StartingPoolType.Precon); - lblFormat.setVisible(newVal == StartingPoolType.Rotating); - cbxFormat.setVisible(newVal == StartingPoolType.Rotating); + lblFormat.setVisible(newVal == StartingPoolType.Sanctioned); + cbxFormat.setVisible(newVal == StartingPoolType.Sanctioned); btnDefineCustomFormat.setVisible(newVal == StartingPoolType.CustomFormat); + btnSelectFormat.setVisible(newVal == StartingPoolType.Casual); final boolean usesDeckList = newVal == StartingPoolType.SealedDeck || newVal == StartingPoolType.DraftDeck || newVal == StartingPoolType.Cube; @@ -152,9 +157,10 @@ public enum VSubmenuQuestData implements IVSubmenu { lblPrizeUnrestricted.setVisible(newVal == StartingPoolType.Complete); cboAllowUnlocks.setVisible(newVal != StartingPoolType.Complete); - lblPrizeFormat.setVisible(newVal == StartingPoolType.Rotating); - cbxPrizeFormat.setVisible(newVal == StartingPoolType.Rotating); + lblPrizeFormat.setVisible(newVal == StartingPoolType.Sanctioned); + cbxPrizeFormat.setVisible(newVal == StartingPoolType.Sanctioned); btnPrizeDefineCustomFormat.setVisible(newVal == StartingPoolType.CustomFormat); + btnPrizeSelectFormat.setVisible(newVal == StartingPoolType.Casual); lblPrizeSameAsStarting.setVisible(newVal == null); } }; @@ -200,7 +206,8 @@ public enum VSubmenuQuestData implements IVSubmenu { boxAllowDuplicates.setToolTipText("When your starting pool is generated, duplicates of cards may be included."); cbxStartingPool.addItem(StartingPoolType.Complete); - cbxStartingPool.addItem(StartingPoolType.Rotating); + cbxStartingPool.addItem(StartingPoolType.Sanctioned); + cbxStartingPool.addItem(StartingPoolType.Casual); cbxStartingPool.addItem(StartingPoolType.CustomFormat); cbxStartingPool.addItem(StartingPoolType.Precon); cbxStartingPool.addItem(StartingPoolType.DraftDeck); @@ -214,11 +221,12 @@ public enum VSubmenuQuestData implements IVSubmenu { cbxPrizedCards.addItem("Same as starting pool"); cbxPrizedCards.addItem(StartingPoolType.Complete); - cbxPrizedCards.addItem(StartingPoolType.Rotating); + cbxPrizedCards.addItem(StartingPoolType.Sanctioned); + cbxPrizedCards.addItem(StartingPoolType.Casual); cbxPrizedCards.addItem(StartingPoolType.CustomFormat); cbxPrizedCards.addActionListener(alPrizesPool); - for (final GameFormat gf : FModel.getFormats().getOrderedList()) { + for (final GameFormat gf : FModel.getFormats().getSanctionedList()) { cbxFormat.addItem(gf); cbxPrizeFormat.addItem(gf); } @@ -311,6 +319,7 @@ public enum VSubmenuQuestData implements IVSubmenu { cbxFormat.addTo(pnlRestrictions, constraints + cboWidthStart + " cell 1 1"); pnlRestrictions.add(btnDefineCustomFormat, btnStartingCustomFormatWidth + constraints + hidemode + " cell 1 1"); + pnlRestrictions.add(btnSelectFormat, btnStartingCustomFormatWidth + constraints + hidemode + " cell 1 1"); pnlRestrictions.add(boxAllowDuplicates, "h 15px!, cell 1 2"); pnlRestrictions.add(boxCompleteSet, "h 15px!, cell 1 3"); @@ -325,6 +334,7 @@ public enum VSubmenuQuestData implements IVSubmenu { pnlRestrictions.add(lblPrizeFormat, constraints + hidemode + "cell 0 6"); cbxPrizeFormat.addTo(pnlRestrictions, constraints + cboWidthStart + "cell 1 6"); // , skip 1 pnlRestrictions.add(btnPrizeDefineCustomFormat, btnStartingCustomFormatWidth + constraints + hidemode + "cell 1 6"); + pnlRestrictions.add(btnPrizeSelectFormat, btnStartingCustomFormatWidth + constraints + hidemode + "cell 1 6"); pnlRestrictions.add(lblPrizeSameAsStarting, constraints + hidemode + "cell 1 6"); pnlRestrictions.add(lblPrizeUnrestricted, constraints + hidemode + "cell 1 6"); @@ -498,9 +508,23 @@ public enum VSubmenuQuestData implements IVSubmenu { return cbxPrizeFormat.getSelectedItem(); } + public GameFormat getCasualFormat() { + return cbxFormat.getSelectedItem(); + } + + public GameFormat getPrizedCasualFormat() { + return cbxPrizeFormat.getSelectedItem(); + } + public FLabel getBtnCustomFormat() { return btnDefineCustomFormat; } + public FLabel getBtnSelectFormat() { + return btnSelectFormat; + } + public FLabel getBtnPrizeSelectFormat() { + return btnPrizeSelectFormat; + } public FLabel getBtnPrizeCustomFormat() { return btnPrizeDefineCustomFormat; } diff --git a/forge-gui-desktop/src/main/java/forge/screens/home/settings/CSubmenuPreferences.java b/forge-gui-desktop/src/main/java/forge/screens/home/settings/CSubmenuPreferences.java index 21c5ba5e069..ce2281920f5 100644 --- a/forge-gui-desktop/src/main/java/forge/screens/home/settings/CSubmenuPreferences.java +++ b/forge-gui-desktop/src/main/java/forge/screens/home/settings/CSubmenuPreferences.java @@ -134,6 +134,9 @@ public enum CSubmenuPreferences implements ICDoc { lstControls.add(Pair.of(view.getCbLoadCardsLazily(), FPref.LOAD_CARD_SCRIPTS_LAZILY)); + lstControls.add(Pair.of(view.getCbLoadHistoricFormats(), FPref.LOAD_HISTORIC_FORMATS)); + + for(final Pair kv : lstControls) { kv.getKey().addItemListener(new ItemListener() { @Override diff --git a/forge-gui-desktop/src/main/java/forge/screens/home/settings/VSubmenuPreferences.java b/forge-gui-desktop/src/main/java/forge/screens/home/settings/VSubmenuPreferences.java index 5c5052c4d7b..7fe08183eb2 100644 --- a/forge-gui-desktop/src/main/java/forge/screens/home/settings/VSubmenuPreferences.java +++ b/forge-gui-desktop/src/main/java/forge/screens/home/settings/VSubmenuPreferences.java @@ -65,6 +65,7 @@ public enum VSubmenuPreferences implements IVSubmenu { private final JCheckBox cbManaLostPrompt = new OptionsCheckBox("Prompt Mana Pool Emptying"); private final JCheckBox cbDevMode = new OptionsCheckBox("Developer Mode"); private final JCheckBox cbLoadCardsLazily = new OptionsCheckBox("Load Card Scripts Lazily"); + private final JCheckBox cbLoadHistoricFormats = new OptionsCheckBox("Load Historic Formats"); private final JCheckBox cbWorkshopSyntax = new OptionsCheckBox("Workshop Syntax Checker"); private final JCheckBox cbEnforceDeckLegality = new OptionsCheckBox("Deck Conformance"); private final JCheckBox cbImageFetcher = new OptionsCheckBox("Automatically Download Missing Card Art"); @@ -239,6 +240,9 @@ public enum VSubmenuPreferences implements IVSubmenu { pnlPrefs.add(cbLoadCardsLazily, titleConstraints); pnlPrefs.add(new NoteLabel("If turned on, Forge will load card scripts as they're needed instead of at start up. (Warning: Experimental)"), descriptionConstraints); + pnlPrefs.add(cbLoadHistoricFormats, titleConstraints); + pnlPrefs.add(new NoteLabel("If turned on, Forge will load all historic format definitions, this may take slightly longer to load at startup."), descriptionConstraints); + // Graphic Options pnlPrefs.add(new SectionLabel("Graphic Options"), sectionConstraints + ", gaptop 2%"); @@ -586,6 +590,11 @@ public enum VSubmenuPreferences implements IVSubmenu { return cbLoadCardsLazily; } + /** @return {@link javax.swing.JCheckBox} */ + public JCheckBox getCbLoadHistoricFormats() { + return cbLoadHistoricFormats; + } + public JCheckBox getCbWorkshopSyntax() { return cbWorkshopSyntax; } diff --git a/forge-gui-mobile/src/forge/itemmanager/filters/FormatFilter.java b/forge-gui-mobile/src/forge/itemmanager/filters/FormatFilter.java index 1d96edf1dc1..711d5966cb2 100644 --- a/forge-gui-mobile/src/forge/itemmanager/filters/FormatFilter.java +++ b/forge-gui-mobile/src/forge/itemmanager/filters/FormatFilter.java @@ -22,11 +22,7 @@ import forge.util.Callback; import forge.util.TextUtil; import forge.util.Utils; -import java.util.ArrayList; -import java.util.Collections; -import java.util.HashSet; -import java.util.List; -import java.util.Set; +import java.util.*; import com.badlogic.gdx.graphics.g2d.BitmapFont.HAlignment; @@ -42,9 +38,10 @@ public abstract class FormatFilter extends ItemFilter extends ItemFilter lstFormats = add(new FGroupList()); + private final Set historicSubTypes = new HashSet<>(Arrays.asList(GameFormat.FormatSubType.Block, + GameFormat.FormatSubType.Standard,GameFormat.FormatSubType.Extended,GameFormat.FormatSubType.Modern, + GameFormat.FormatSubType.Legacy, GameFormat.FormatSubType.Vintage)); + + private Runnable onCloseCallBack; + + public HistoricFormatSelect() { + super("Choose Format"); + for (GameFormat.FormatType group:GameFormat.FormatType.values()){ + if (group == GameFormat.FormatType.Historic){ + for (GameFormat.FormatSubType subgroup:GameFormat.FormatSubType.values()){ + if (historicSubTypes.contains(subgroup)){ + lstFormats.addGroup(group.name() + "-" + subgroup.name()); + } + } + }else { + lstFormats.addGroup(group.name()); + } + } + for (GameFormat format: FModel.getFormats().getOrderedList()){ + switch(format.getFormatType()){ + case Sanctioned: + lstFormats.addItem(format, 0); + break; + case Casual: + lstFormats.addItem(format, 1); + break; + case Historic: + switch (format.getFormatSubType()){ + case Block: + lstFormats.addItem(format, 2); + break; + case Standard: + lstFormats.addItem(format, 3); + break; + case Extended: + lstFormats.addItem(format, 4); + break; + case Modern: + lstFormats.addItem(format, 5); + break; + case Legacy: + lstFormats.addItem(format, 6); + break; + case Vintage: + lstFormats.addItem(format, 7); + break; + + } + break; + case Digital: + lstFormats.addItem(format, 8); + break; + case Custom: + lstFormats.addItem(format, 9); + } + } + lstFormats.setListItemRenderer(new FormatRenderer()); + } + + public GameFormat getSelectedFormat() { + return selectedFormat; + } + + public void setOnCloseCallBack(Runnable onCloseCallBack) { + this.onCloseCallBack = onCloseCallBack; + } + + @Override + public void onClose(Callback canCloseCallback) { + if (selectedFormat != null) { + if (onCloseCallBack != null) { + onCloseCallBack.run(); + } + } + super.onClose(canCloseCallback); + } + + @Override + protected void doLayout(float startY, float width, float height) { + lstFormats.setBounds(0, startY, width, height - startY); + } + + private class FormatRenderer extends FList.ListItemRenderer{ + @Override + public float getItemHeight() { + return Utils.AVG_FINGER_HEIGHT; + } + + @Override + public boolean tap(Integer index, GameFormat value, float x, float y, int count) { + selectedFormat=value; + Forge.back(); + return true; + } + + @Override + public void drawValue(Graphics g, Integer index, GameFormat value, FSkinFont font, FSkinColor foreColor, FSkinColor backColor, boolean pressed, float x, float y, float w, float h) { + float offset = SettingsScreen.getInsets(w) - FList.PADDING; //increase padding for settings items + x += offset; + y += offset; + w -= 2 * offset; + h -= 2 * offset; + + float textHeight = h; + h *= 0.66f; + + g.drawText(value.toString(), font, foreColor, x, y, w - h - FList.PADDING, textHeight, false, BitmapFont.HAlignment.LEFT, true); + + x += w - h; + y += (textHeight - h) / 2; + } + } +} diff --git a/forge-gui-mobile/src/forge/screens/quest/NewQuestScreen.java b/forge-gui-mobile/src/forge/screens/quest/NewQuestScreen.java index f14b461b470..856a6a11508 100644 --- a/forge-gui-mobile/src/forge/screens/quest/NewQuestScreen.java +++ b/forge-gui-mobile/src/forge/screens/quest/NewQuestScreen.java @@ -3,6 +3,7 @@ package forge.screens.quest; import com.badlogic.gdx.graphics.g2d.BitmapFont.HAlignment; import forge.FThreads; +import forge.Forge; import forge.UiCommand; import forge.assets.FSkinFont; import forge.assets.FSkinImage; @@ -13,6 +14,7 @@ import forge.deck.DeckSection; import forge.game.GameFormat; import forge.item.PaperCard; import forge.item.PreconDeck; +import forge.itemmanager.filters.HistoricFormatSelect; import forge.model.CardCollections; import forge.model.FModel; import forge.properties.ForgeConstants; @@ -123,13 +125,13 @@ public class NewQuestScreen extends FScreen { private final FLabel lblPreconDeck = scroller.add(new FLabel.Builder().text("Starter/Event deck:").build()); private final FComboBox cbxPreconDeck = scroller.add(new FComboBox()); - private final FLabel lblFormat = scroller.add(new FLabel.Builder().text("Sanctioned format:").build()); + private final FLabel lblFormat = scroller.add(new FLabel.Builder().text("Select format:").build()); private final FComboBox cbxFormat = scroller.add(new FComboBox()); private final FLabel lblCustomDeck = scroller.add(new FLabel.Builder().text("Custom deck:").build()); private final FComboBox cbxCustomDeck = scroller.add(new FComboBox()); - private final FLabel btnDefineCustomFormat = scroller.add(new FLabel.ButtonBuilder().text("Define custom format").build()); + private final FLabel btnSelectFormat = scroller.add(new FLabel.ButtonBuilder().text("Choose format").build()); private final FLabel lblPoolDistribution = scroller.add(new FLabel.Builder().text("Starting pool distribution:").build()); private final FRadioButton radBalanced = scroller.add(new FRadioButton("Balanced")); @@ -155,12 +157,12 @@ public class NewQuestScreen extends FScreen { private final FLabel lblPrizedCards = scroller.add(new FLabel.Builder().text("Prized cards:").build()); private final FComboBox cbxPrizedCards = scroller.add(new FComboBox<>()); - private final FLabel lblPrizeFormat = scroller.add(new FLabel.Builder().text("Sanctioned format:").build()); + private final FLabel lblPrizeFormat = scroller.add(new FLabel.Builder().text("Defined format:").build()); private final FComboBox cbxPrizeFormat = scroller.add(new FComboBox()); private final FLabel lblPrizeUnrestricted = scroller.add(new FLabel.Builder().align(HAlignment.RIGHT).font(FSkinFont.get(12)).text("All cards will be available to win.").build()); private final FLabel lblPrizeSameAsStarting = scroller.add(new FLabel.Builder().align(HAlignment.RIGHT).font(FSkinFont.get(12)).text("Only sets found in starting pool will be available.").build()); - private final FLabel btnPrizeDefineCustomFormat = scroller.add(new FLabel.ButtonBuilder().text("Define custom format").build()); + private final FLabel btnPrizeSelectFormat = scroller.add(new FLabel.ButtonBuilder().text("Choose format").build()); private final FCheckBox cbAllowUnlocks = scroller.add(new FCheckBox("Allow unlock of additional editions")); private final FCheckBox cbFantasy = scroller.add(new FCheckBox("Fantasy Mode")); @@ -183,8 +185,8 @@ public class NewQuestScreen extends FScreen { super(null, NewGameMenu.getMenu()); cbxStartingPool.addItem(StartingPoolType.Complete); - cbxStartingPool.addItem(StartingPoolType.Rotating); - cbxStartingPool.addItem(StartingPoolType.CustomFormat); + cbxStartingPool.addItem(StartingPoolType.Sanctioned); + cbxStartingPool.addItem(StartingPoolType.Casual); cbxStartingPool.addItem(StartingPoolType.Precon); cbxStartingPool.addItem(StartingPoolType.DraftDeck); cbxStartingPool.addItem(StartingPoolType.SealedDeck); @@ -199,8 +201,8 @@ public class NewQuestScreen extends FScreen { cbxPrizedCards.addItem("Same as starting pool"); cbxPrizedCards.addItem(StartingPoolType.Complete); - cbxPrizedCards.addItem(StartingPoolType.Rotating); - cbxPrizedCards.addItem(StartingPoolType.CustomFormat); + cbxPrizedCards.addItem(StartingPoolType.Sanctioned); + cbxPrizedCards.addItem(StartingPoolType.Casual); cbxPrizedCards.setChangedHandler(new FEventHandler() { @Override public void handleEvent(FEvent e) { @@ -209,7 +211,7 @@ public class NewQuestScreen extends FScreen { } }); - for (GameFormat gf : FModel.getFormats().getOrderedList()) { + for (GameFormat gf : FModel.getFormats().getSanctionedList()) { cbxFormat.addItem(gf); cbxPrizeFormat.addItem(gf); } @@ -275,10 +277,6 @@ public class NewQuestScreen extends FScreen { preconDescriptions.put(name, description); } - //TODO: Support defining custom format - btnDefineCustomFormat.setEnabled(false); - btnPrizeDefineCustomFormat.setEnabled(false); - // disable the very powerful sets -- they can be unlocked later for a high price final List unselectableSets = new ArrayList<>(); unselectableSets.add("LEA"); @@ -288,31 +286,45 @@ public class NewQuestScreen extends FScreen { unselectableSets.add("ARC"); unselectableSets.add("PC2"); - btnDefineCustomFormat.setCommand(new FEventHandler() { + btnSelectFormat.setCommand(new FEventHandler() { @Override public void handleEvent(FEvent e) { - /*final DialogChooseSets dialog = new DialogChooseSets(customFormatCodes, unselectableSets, false); - dialog.setOkCallback(new Runnable() { + HistoricFormatSelect historicFormatSelect = new HistoricFormatSelect(); + historicFormatSelect.setOnCloseCallBack(new Runnable() { @Override public void run() { customFormatCodes.clear(); - customFormatCodes.addAll(dialog.getSelectedSets()); + btnSelectFormat.setText(historicFormatSelect.getSelectedFormat().getName()); + List setsToAdd = historicFormatSelect.getSelectedFormat().getAllowedSetCodes(); + for (String setName:setsToAdd){ + if(!unselectableSets.contains(setName)){ + customFormatCodes.add(setName); + } + } } - });*/ + }); + Forge.openScreen(historicFormatSelect); } }); - btnPrizeDefineCustomFormat.setCommand(new FEventHandler() { + btnPrizeSelectFormat.setCommand(new FEventHandler() { @Override public void handleEvent(FEvent e) { - /*final DialogChooseSets dialog = new DialogChooseSets(customPrizeFormatCodes, unselectableSets, false); - dialog.setOkCallback(new Runnable() { + HistoricFormatSelect historicFormatSelect = new HistoricFormatSelect(); + historicFormatSelect.setOnCloseCallBack(new Runnable() { @Override public void run() { customPrizeFormatCodes.clear(); - customPrizeFormatCodes.addAll(dialog.getSelectedSets()); + btnPrizeSelectFormat.setText(historicFormatSelect.getSelectedFormat().getName()); + List setsToAdd = historicFormatSelect.getSelectedFormat().getAllowedSetCodes(); + for (String setName:setsToAdd){ + if(!unselectableSets.contains(setName)){ + customPrizeFormatCodes.add(setName); + } + } } - });*/ + }); + Forge.openScreen(historicFormatSelect); } }); @@ -329,10 +341,10 @@ public class NewQuestScreen extends FScreen { lblPreconDeck.setVisible(newVal == StartingPoolType.Precon); cbxPreconDeck.setVisible(newVal == StartingPoolType.Precon); - lblFormat.setVisible(newVal == StartingPoolType.Rotating); - cbxFormat.setVisible(newVal == StartingPoolType.Rotating); + lblFormat.setVisible(newVal == StartingPoolType.Sanctioned); + cbxFormat.setVisible(newVal == StartingPoolType.Sanctioned); - btnDefineCustomFormat.setVisible(newVal == StartingPoolType.CustomFormat); + btnSelectFormat.setVisible(newVal == StartingPoolType.Casual); boolean usesDeckList = newVal == StartingPoolType.SealedDeck || newVal == StartingPoolType.DraftDeck || newVal == StartingPoolType.Cube; lblCustomDeck.setVisible(usesDeckList); @@ -368,9 +380,9 @@ public class NewQuestScreen extends FScreen { lblPrizeUnrestricted.setVisible(newVal == StartingPoolType.Complete); cbAllowUnlocks.setVisible(newVal != StartingPoolType.Complete); - lblPrizeFormat.setVisible(newVal == StartingPoolType.Rotating); - cbxPrizeFormat.setVisible(newVal == StartingPoolType.Rotating); - btnPrizeDefineCustomFormat.setVisible(newVal == StartingPoolType.CustomFormat); + lblPrizeFormat.setVisible(newVal == StartingPoolType.Sanctioned); + cbxPrizeFormat.setVisible(newVal == StartingPoolType.Sanctioned); + btnPrizeSelectFormat.setVisible(newVal == StartingPoolType.Casual); lblPrizeSameAsStarting.setVisible(newVal == null); scroller.revalidate(); @@ -385,6 +397,8 @@ public class NewQuestScreen extends FScreen { cbxStartingPool.setEnabled(qw.getFormat() == null); cbxFormat.setEnabled(qw.getFormat() == null); cbxCustomDeck.setEnabled(qw.getFormat() == null); + btnSelectFormat.setEnabled(qw.getFormat() == null); + // Do NOT disable the following... // cbxPrizeFormat.setEnabled(qw.getFormat() == null); // cboAllowUnlocks.setEnabled(qw.getFormat() == null); @@ -478,7 +492,7 @@ public class NewQuestScreen extends FScreen { } - public GameFormat getRotatingFormat() { + public GameFormat getSanctionedFormat() { return cbxFormat.getSelectedItem(); } @@ -503,10 +517,11 @@ public class NewQuestScreen extends FScreen { if (worldFormat == null) { switch(getStartingPoolType()) { - case Rotating: - fmtStartPool = getRotatingFormat(); + case Sanctioned: + fmtStartPool = getSanctionedFormat(); break; + case Casual: case CustomFormat: if (customFormatCodes.isEmpty()) { if (!SOptionPane.showConfirmDialog( @@ -567,6 +582,7 @@ public class NewQuestScreen extends FScreen { case Complete: fmtPrizes = null; break; + case Casual: case CustomFormat: if (customPrizeFormatCodes.isEmpty()) { if (!SOptionPane.showConfirmDialog( @@ -576,7 +592,7 @@ public class NewQuestScreen extends FScreen { } fmtPrizes = customPrizeFormatCodes.isEmpty() ? null : new GameFormat("Custom Prizes", customPrizeFormatCodes, null); // chosen sets and no banned cards break; - case Rotating: + case Sanctioned: fmtPrizes = getPrizedRotatingFormat(); break; default: diff --git a/forge-gui-mobile/src/forge/screens/settings/SettingsPage.java b/forge-gui-mobile/src/forge/screens/settings/SettingsPage.java index de4d2714c4f..2523ad9a144 100644 --- a/forge-gui-mobile/src/forge/screens/settings/SettingsPage.java +++ b/forge-gui-mobile/src/forge/screens/settings/SettingsPage.java @@ -187,6 +187,9 @@ public class SettingsPage extends TabPage { lstSettings.addItem(new BooleanSetting(FPref.LOAD_CARD_SCRIPTS_LAZILY, "Load Card Scripts Lazily", "If turned on, Forge will load card scripts as they're needed instead of at start up. (Warning: Experimental)"), 3); + lstSettings.addItem(new BooleanSetting(FPref.LOAD_HISTORIC_FORMATS, + "Load Historic Formats", + "If turned on, Forge will load all historic format definitions, this may take slightly longer to load at startup."), 3); //Graphic Options lstSettings.addItem(new BooleanSetting(FPref.UI_OVERLAY_FOIL_EFFECT, diff --git a/forge-gui/res/formats/Block/Amonkhet Block.txt b/forge-gui/res/formats/Block/Amonkhet Block.txt new file mode 100644 index 00000000000..61f8b45bf3b --- /dev/null +++ b/forge-gui/res/formats/Block/Amonkhet Block.txt @@ -0,0 +1,6 @@ +[format] +Name:Amonkhet Block +Type:Historic +Subtype:Block +Order:112 +Sets:HOU, AKH diff --git a/forge-gui/res/formats/Block/Battle for Zendikar Block.txt b/forge-gui/res/formats/Block/Battle for Zendikar Block.txt new file mode 100644 index 00000000000..cafe11d2e4b --- /dev/null +++ b/forge-gui/res/formats/Block/Battle for Zendikar Block.txt @@ -0,0 +1,6 @@ +[format] +Name:Battle for Zendikar Block +Type:Historic +Subtype:Block +Order:115 +Sets:OGW, BFZ diff --git a/forge-gui/res/formats/Block/Ice Age Block.txt b/forge-gui/res/formats/Block/Ice Age Block.txt new file mode 100644 index 00000000000..c01f532dd8b --- /dev/null +++ b/forge-gui/res/formats/Block/Ice Age Block.txt @@ -0,0 +1,7 @@ +[format] +Name:Ice Age Block +Type:Historic +Subtype:Block +Order:135 +Sets:CSP, ALL, ICE +Banned:Amulet of Quoz; Thawing Glaciers; Zuran Orb diff --git a/forge-gui/res/formats/Block/Innistrad-Avacyn Restored Block.txt b/forge-gui/res/formats/Block/Innistrad-Avacyn Restored Block.txt new file mode 100644 index 00000000000..d6d46e619ef --- /dev/null +++ b/forge-gui/res/formats/Block/Innistrad-Avacyn Restored Block.txt @@ -0,0 +1,7 @@ +[format] +Name:Innistrad-Avacyn Restored Block +Type:Historic +Subtype:Block +Order:119 +Sets:ISD, AVR, DKA +Banned:Intangible Virtue; Lingering Souls diff --git a/forge-gui/res/formats/Block/Invasion Block.txt b/forge-gui/res/formats/Block/Invasion Block.txt new file mode 100644 index 00000000000..b46581418fc --- /dev/null +++ b/forge-gui/res/formats/Block/Invasion Block.txt @@ -0,0 +1,6 @@ +[format] +Name:Invasion Block +Type:Historic +Subtype:Block +Order:130 +Sets:APC, PLS, INV diff --git a/forge-gui/res/formats/Block/Ixalan Block.txt b/forge-gui/res/formats/Block/Ixalan Block.txt new file mode 100644 index 00000000000..caaeba30bd6 --- /dev/null +++ b/forge-gui/res/formats/Block/Ixalan Block.txt @@ -0,0 +1,6 @@ +[format] +Name:Ixalan Block +Type:Historic +Subtype:Block +Order:111 +Sets:XLN, RIX diff --git a/forge-gui/res/formats/Kaladesh_Block.txt b/forge-gui/res/formats/Block/Kaladesh Block.txt similarity index 53% rename from forge-gui/res/formats/Kaladesh_Block.txt rename to forge-gui/res/formats/Block/Kaladesh Block.txt index a35c4c93c7c..8d4dc5468ca 100644 --- a/forge-gui/res/formats/Kaladesh_Block.txt +++ b/forge-gui/res/formats/Block/Kaladesh Block.txt @@ -1,5 +1,6 @@ [format] Name:Kaladesh Block Type:Historic -Order:109 -Sets:KLD, AER \ No newline at end of file +Subtype:Block +Order:113 +Sets:AER, KLD diff --git a/forge-gui/res/formats/Block/Kamigawa Block.txt b/forge-gui/res/formats/Block/Kamigawa Block.txt new file mode 100644 index 00000000000..d6403d6f0f7 --- /dev/null +++ b/forge-gui/res/formats/Block/Kamigawa Block.txt @@ -0,0 +1,6 @@ +[format] +Name:Kamigawa Block +Type:Historic +Subtype:Block +Order:126 +Sets:SOK, BOK, CHK diff --git a/forge-gui/res/formats/Block/Khans of Tarkir Block.txt b/forge-gui/res/formats/Block/Khans of Tarkir Block.txt new file mode 100644 index 00000000000..a4ea2448a4a --- /dev/null +++ b/forge-gui/res/formats/Block/Khans of Tarkir Block.txt @@ -0,0 +1,6 @@ +[format] +Name:Khans of Tarkir Block +Type:Historic +Subtype:Block +Order:116 +Sets:DTK, FRF, KTK diff --git a/forge-gui/res/formats/Block/Lorwyn-Shadowmoor Block.txt b/forge-gui/res/formats/Block/Lorwyn-Shadowmoor Block.txt new file mode 100644 index 00000000000..35abf4e9483 --- /dev/null +++ b/forge-gui/res/formats/Block/Lorwyn-Shadowmoor Block.txt @@ -0,0 +1,6 @@ +[format] +Name:Lorwyn-Shadowmoor Block +Type:Historic +Subtype:Block +Order:123 +Sets:EVE, SHM, MOR, LRW diff --git a/forge-gui/res/formats/Block/Masques Block.txt b/forge-gui/res/formats/Block/Masques Block.txt new file mode 100644 index 00000000000..43da27e6094 --- /dev/null +++ b/forge-gui/res/formats/Block/Masques Block.txt @@ -0,0 +1,7 @@ +[format] +Name:Masques Block +Type:Historic +Subtype:Block +Order:131 +Sets:PCY, NMS, MMA +Banned:Lin Sivvi, Defiant Hero; Rishadan Port diff --git a/forge-gui/res/formats/Block/Mirage Block.txt b/forge-gui/res/formats/Block/Mirage Block.txt new file mode 100644 index 00000000000..10c705f59e5 --- /dev/null +++ b/forge-gui/res/formats/Block/Mirage Block.txt @@ -0,0 +1,7 @@ +[format] +Name:Mirage Block +Type:Historic +Subtype:Block +Order:134 +Sets:VIS, WTH, MIR +Banned:Squandered Resources diff --git a/forge-gui/res/formats/Block/Mirrodin Block.txt b/forge-gui/res/formats/Block/Mirrodin Block.txt new file mode 100644 index 00000000000..6f3722f065d --- /dev/null +++ b/forge-gui/res/formats/Block/Mirrodin Block.txt @@ -0,0 +1,7 @@ +[format] +Name:Mirrodin Block +Type:Historic +Subtype:Block +Order:127 +Sets:5DN, DST, MRD +Banned:Aether Vial; Ancient Den; Arcbound Ravager; Darksteel Citadel; Disciple of the Vault; Great Furnace; Seat of the Synod; Tree of Tales; Vault of Whispers; Skullclamp diff --git a/forge-gui/res/formats/Block/Odyssey Block.txt b/forge-gui/res/formats/Block/Odyssey Block.txt new file mode 100644 index 00000000000..5a1292ea3e5 --- /dev/null +++ b/forge-gui/res/formats/Block/Odyssey Block.txt @@ -0,0 +1,6 @@ +[format] +Name:Odyssey Block +Type:Historic +Subtype:Block +Order:129 +Sets:JUD, TOR, ODY diff --git a/forge-gui/res/formats/Block/Onslaught Block.txt b/forge-gui/res/formats/Block/Onslaught Block.txt new file mode 100644 index 00000000000..4437e82f513 --- /dev/null +++ b/forge-gui/res/formats/Block/Onslaught Block.txt @@ -0,0 +1,6 @@ +[format] +Name:Onslaught Block +Type:Historic +Subtype:Block +Order:128 +Sets:SCG, LGN, ONS diff --git a/forge-gui/res/formats/Block/Ravnica Block.txt b/forge-gui/res/formats/Block/Ravnica Block.txt new file mode 100644 index 00000000000..a4b9fda820f --- /dev/null +++ b/forge-gui/res/formats/Block/Ravnica Block.txt @@ -0,0 +1,6 @@ +[format] +Name:Ravnica Block +Type:Historic +Subtype:Block +Order:125 +Sets:DIS, GPT, RAV diff --git a/forge-gui/res/formats/Block/Return to Ravnica Block.txt b/forge-gui/res/formats/Block/Return to Ravnica Block.txt new file mode 100644 index 00000000000..679579598da --- /dev/null +++ b/forge-gui/res/formats/Block/Return to Ravnica Block.txt @@ -0,0 +1,6 @@ +[format] +Name:Return to Ravnica Block +Type:Historic +Subtype:Block +Order:118 +Sets:DGM, GTC, RTR diff --git a/forge-gui/res/formats/Block/Scars of Mirrodin Block.txt b/forge-gui/res/formats/Block/Scars of Mirrodin Block.txt new file mode 100644 index 00000000000..cdf17911108 --- /dev/null +++ b/forge-gui/res/formats/Block/Scars of Mirrodin Block.txt @@ -0,0 +1,6 @@ +[format] +Name:Scars of Mirrodin Block +Type:Historic +Subtype:Block +Order:120 +Sets:NPH, MBS, SOM diff --git a/forge-gui/res/formats/Block/Shadows over Innistrad Block.txt b/forge-gui/res/formats/Block/Shadows over Innistrad Block.txt new file mode 100644 index 00000000000..813dd282227 --- /dev/null +++ b/forge-gui/res/formats/Block/Shadows over Innistrad Block.txt @@ -0,0 +1,6 @@ +[format] +Name:Shadows over Innistrad Block +Type:Historic +Subtype:Block +Order:114 +Sets:EMN, SOI diff --git a/forge-gui/res/formats/Block/Shards of Alara Block.txt b/forge-gui/res/formats/Block/Shards of Alara Block.txt new file mode 100644 index 00000000000..53e8ecfa8fe --- /dev/null +++ b/forge-gui/res/formats/Block/Shards of Alara Block.txt @@ -0,0 +1,6 @@ +[format] +Name:Shards of Alara Block +Type:Historic +Subtype:Block +Order:122 +Sets:ARB, CFX, ALA diff --git a/forge-gui/res/formats/Block/Tempest Block.txt b/forge-gui/res/formats/Block/Tempest Block.txt new file mode 100644 index 00000000000..3576fbdd8ad --- /dev/null +++ b/forge-gui/res/formats/Block/Tempest Block.txt @@ -0,0 +1,7 @@ +[format] +Name:Tempest Block +Type:Historic +Subtype:Block +Order:133 +Sets:EXO, STH, TMP +Banned:Cursed Scroll diff --git a/forge-gui/res/formats/Block/Theros Block.txt b/forge-gui/res/formats/Block/Theros Block.txt new file mode 100644 index 00000000000..6c293080263 --- /dev/null +++ b/forge-gui/res/formats/Block/Theros Block.txt @@ -0,0 +1,6 @@ +[format] +Name:Theros Block +Type:Historic +Subtype:Block +Order:117 +Sets:JOU, BNG, THS diff --git a/forge-gui/res/formats/Block/Time Spiral Block.txt b/forge-gui/res/formats/Block/Time Spiral Block.txt new file mode 100644 index 00000000000..c0d7b66d34a --- /dev/null +++ b/forge-gui/res/formats/Block/Time Spiral Block.txt @@ -0,0 +1,6 @@ +[format] +Name:Time Spiral Block +Type:Historic +Subtype:Block +Order:124 +Sets:FUT, PLC, TSP, TSB diff --git a/forge-gui/res/formats/Block/Urza Block.txt b/forge-gui/res/formats/Block/Urza Block.txt new file mode 100644 index 00000000000..227b8f6a43b --- /dev/null +++ b/forge-gui/res/formats/Block/Urza Block.txt @@ -0,0 +1,7 @@ +[format] +Name:Urza Block +Type:Historic +Subtype:Block +Order:132 +Sets:UDS, ULG, USG +Banned:Gaea's Cradle; Memory Jar; Serra's Sanctum; Time Spiral; Tolarian Academy; Voltaic Key; Windfall diff --git a/forge-gui/res/formats/Block/Zendikar Block.txt b/forge-gui/res/formats/Block/Zendikar Block.txt new file mode 100644 index 00000000000..e68d8bd9749 --- /dev/null +++ b/forge-gui/res/formats/Block/Zendikar Block.txt @@ -0,0 +1,6 @@ +[format] +Name:Zendikar Block +Type:Historic +Subtype:Block +Order:121 +Sets:ROE, WWK, ZEN diff --git a/forge-gui/res/formats/Commander.txt b/forge-gui/res/formats/Casual/Commander.txt similarity index 85% rename from forge-gui/res/formats/Commander.txt rename to forge-gui/res/formats/Casual/Commander.txt index f3b47d8cc61..7acf4e48b7f 100644 --- a/forge-gui/res/formats/Commander.txt +++ b/forge-gui/res/formats/Casual/Commander.txt @@ -1,5 +1,6 @@ [format] Name:Commander Type:Casual -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 +Subtype:Commander +Order:137 +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; Sundering Titan; Sway of the Stars; Sylvan Primordial; Time Vault; Time Walk; Tinker; Tolarian Academy; Trace Secrets; Upheaval; Worldfire; Yawgmoth's Bargain diff --git a/forge-gui/res/formats/Casual/Conspiracy.txt b/forge-gui/res/formats/Casual/Conspiracy.txt new file mode 100644 index 00000000000..08ba8371dbf --- /dev/null +++ b/forge-gui/res/formats/Casual/Conspiracy.txt @@ -0,0 +1,6 @@ +[format] +Name:Conspiracy +Type:Historic +Subtype:Custom +Order:138 +Sets:CNS, CN2 diff --git a/forge-gui/res/formats/Casual/Un-Sets.txt b/forge-gui/res/formats/Casual/Un-Sets.txt new file mode 100644 index 00000000000..9aaf64ca169 --- /dev/null +++ b/forge-gui/res/formats/Casual/Un-Sets.txt @@ -0,0 +1,6 @@ +[format] +Name:Un-Sets +Type:Historic +Subtype:Custom +Order:136 +Sets:UST, UNH, UGL diff --git a/forge-gui/res/formats/pauper.txt b/forge-gui/res/formats/Casual/pauper.txt similarity index 59% rename from forge-gui/res/formats/pauper.txt rename to forge-gui/res/formats/Casual/pauper.txt index 83e6ba3dbc7..b1d4f6fbba7 100644 --- a/forge-gui/res/formats/pauper.txt +++ b/forge-gui/res/formats/Casual/pauper.txt @@ -1,5 +1,6 @@ [format] Name:Pauper Order:108 +Subtype:Custom Type:Casual -Rarities:L, C \ No newline at end of file +Rarities:L, C diff --git a/forge-gui/res/formats/Digital/Duels.txt b/forge-gui/res/formats/Digital/Duels.txt new file mode 100644 index 00000000000..ec24948d28f --- /dev/null +++ b/forge-gui/res/formats/Digital/Duels.txt @@ -0,0 +1,6 @@ +[format] +Name:Duels +Type:Digital +Subtype:Videogame +Order:140 +Sets:ORI, BFZ, OGW, SOI, EMN, KLD, AER, AKH diff --git a/forge-gui/res/formats/Digital/MTGO.txt b/forge-gui/res/formats/Digital/MTGO.txt new file mode 100644 index 00000000000..eb3304e3c38 --- /dev/null +++ b/forge-gui/res/formats/Digital/MTGO.txt @@ -0,0 +1,6 @@ +[format] +Name:MTGO +Type:Digital +Subtype:MTGO +Order:139 +Sets:ALL, MIR, VIS, WTH, TMP, STH, EXO, USG, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, MED, LRW, MOR, SHM, EVE, ME2, ALA, CFX, ARB, M10, TD0, FVE, ME3, ZEN, WWK, ROE, M11, SOM, TD1, MBED, ME4, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, TD2, GTC, DGM, M14, THS, BNG, JOU, VMA, M15, KTK, FRF, DTK, TPR, MM2, ORI, BFZ, OGW, PZ1, OGW, EMA, EMN, PZ2, YMC, AER, MM3, AKH, HOU, XLN diff --git a/forge-gui/res/formats/Digital/MicroProse.txt b/forge-gui/res/formats/Digital/MicroProse.txt new file mode 100644 index 00000000000..c277a880211 --- /dev/null +++ b/forge-gui/res/formats/Digital/MicroProse.txt @@ -0,0 +1,8 @@ +[format] +Name:MicroProse +Type:Digital +Subtype:Videogame +Order:110 +Sets:MTG, STA, AST, DOTP, MTG_R, STA_R, DOTP_R +Banned:Channel; Mind Twist; Bronze Tablet; Contract from Below; Darkpact; Demonic Attorney; Jeweled Bird; Rebirth; Tempest Efreet +Restricted:Ancestral Recall; Balance; Berserk; Black Lotus; Black Vise; Braingeyser; Demonic Tutor; Fastbond; Fork; Ivory Tower; Library of Alexandria; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Regrowth; Sol Ring; Time Walk; Timetwister; Wheel of Fortune diff --git a/forge-gui/res/formats/Historic/.gitkeep b/forge-gui/res/formats/Historic/.gitkeep new file mode 100644 index 00000000000..e69de29bb2d diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Ice Age-Homelands-Alliances/1995-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Ice Age-Homelands-Alliances/1995-10-01.txt new file mode 100644 index 00000000000..efdee0425a3 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Ice Age-Homelands-Alliances/1995-10-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Ice Age, 10/01/95 +Type:Historic +Subtype:Block +Effective:1995-10-01 +Sets:ICE +Restricted:Zuran Orb +Banned:Amulet of Quoz \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Ice Age-Homelands-Alliances/1996-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Ice Age-Homelands-Alliances/1996-10-01.txt new file mode 100644 index 00000000000..ad54a0c70c2 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Ice Age-Homelands-Alliances/1996-10-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Ice Age/Alliances, 10/01/96 +Type:Historic +Subtype:Block +Effective:1996-10-01 +Sets:ICE, ALL +Restricted:Zuran Orb +Banned:Amulet of Quoz \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Ice Age-Homelands-Alliances/1997-05-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Ice Age-Homelands-Alliances/1997-05-01.txt new file mode 100644 index 00000000000..fc6b950646a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Ice Age-Homelands-Alliances/1997-05-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Ice Age, 05/01/97 +Type:Historic +Subtype:Block +Effective:1997-05-01 +Sets:ICE +Banned:Amulet of Quoz, Thawing Glaciers, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Ice Age-Homelands-Alliances/1997-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Ice Age-Homelands-Alliances/1997-07-01.txt new file mode 100644 index 00000000000..da4530c1fb0 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Ice Age-Homelands-Alliances/1997-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Ice Age/Homelands/Alliances, 07/01/97 +Type:Historic +Subtype:Block +Effective:1997-07-01 +Sets:ICE, HML, ALL +Banned:Amulet of Quoz, Thawing Glaciers, Timmerian Fiends, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Invasion/2000-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Invasion/2000-11-01.txt new file mode 100644 index 00000000000..d5cdcec5de8 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Invasion/2000-11-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Invasion Block, Invasion +Type:Historic +Subtype:Block +Effective:2000-11-01 +Sets:INV \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Invasion/2001-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Invasion/2001-03-01.txt new file mode 100644 index 00000000000..60ecdb58210 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Invasion/2001-03-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Invasion Block, Planeshift +Type:Historic +Subtype:Block +Effective:2001-03-01 +Sets:INV, PLS \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Invasion/2001-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Invasion/2001-07-01.txt new file mode 100644 index 00000000000..3d528178c09 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Invasion/2001-07-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Invasion Block, Apocalypse +Type:Historic +Subtype:Block +Effective:2001-07-01 +Sets:INV, PLS, APC \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Kamigawa/2004-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Kamigawa/2004-10-20.txt new file mode 100644 index 00000000000..402423a8366 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Kamigawa/2004-10-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Kamigawa Block, Champions of Kamigawa +Type:Historic +Subtype:Block +Effective:2004-10-20 +Sets:CHK \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Kamigawa/2005-02-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Kamigawa/2005-02-20.txt new file mode 100644 index 00000000000..ab9ecf316cb --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Kamigawa/2005-02-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Kamigawa Block, Betrayers of Kamigawa +Type:Historic +Subtype:Block +Effective:2005-02-20 +Sets:CHK, BOK \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Kamigawa/2005-06-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Kamigawa/2005-06-20.txt new file mode 100644 index 00000000000..c81b68619cb --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Kamigawa/2005-06-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Kamigawa Block, Saviors of Kamigawa +Type:Historic +Subtype:Block +Effective:2005-06-20 +Sets:CHK, BOK, SOK \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Masques/1999-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Masques/1999-11-01.txt new file mode 100644 index 00000000000..111de352392 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Masques/1999-11-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Masques Block, Mercadian Masques +Type:Historic +Subtype:Block +Effective:1999-11-01 +Sets:MMQ \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Masques/2000-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Masques/2000-03-01.txt new file mode 100644 index 00000000000..cee0996b460 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Masques/2000-03-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Masques Block, Nemesis +Type:Historic +Subtype:Block +Effective:2000-03-01 +Sets:MMQ, NMS \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Masques/2000-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Masques/2000-07-01.txt new file mode 100644 index 00000000000..b601e58e3af --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Masques/2000-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Masques Block, Prophecy +Type:Historic +Subtype:Block +Effective:2000-07-01 +Sets:MMQ, NMS, PCY +Banned:Lin Sivvi, Defiant Hero; Rishadan Port \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Mirage-Visions-Weatherlight/1997-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Mirage-Visions-Weatherlight/1997-07-01.txt new file mode 100644 index 00000000000..e94cc3d7db7 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Mirage-Visions-Weatherlight/1997-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Mirage/Visions/Weatherlight Block, Weatherlight +Type:Historic +Subtype:Block +Effective:1997-07-01 +Sets:MIR, VIS, WTH +Banned:Squandered Resources \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Mirrodin/2003-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Mirrodin/2003-10-20.txt new file mode 100644 index 00000000000..5583ca8e794 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Mirrodin/2003-10-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Mirrodin Block, Mirrodin +Type:Historic +Subtype:Block +Effective:2003-10-20 +Sets:MRD \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Mirrodin/2004-02-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Mirrodin/2004-02-20.txt new file mode 100644 index 00000000000..1ce6f9e3fff --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Mirrodin/2004-02-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Mirrodin Block, Darksteel +Type:Historic +Subtype:Block +Effective:2004-02-20 +Sets:MRD, DST \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Mirrodin/2004-06-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Mirrodin/2004-06-20.txt new file mode 100644 index 00000000000..b4d7fade1bb --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Mirrodin/2004-06-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Mirrodin Block, Fifth Dawn +Type:Historic +Subtype:Block +Effective:2004-06-20 +Sets:MRD, DST, 5DN +Banned:Skullclamp \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Odyssey/2001-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Odyssey/2001-11-01.txt new file mode 100644 index 00000000000..157e02e0152 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Odyssey/2001-11-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Odyssey Block, Odyssey +Type:Historic +Subtype:Block +Effective:2001-11-01 +Sets:ODY \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Odyssey/2002-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Odyssey/2002-03-01.txt new file mode 100644 index 00000000000..4b4ffa2c852 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Odyssey/2002-03-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Odyssey Block, Torment +Type:Historic +Subtype:Block +Effective:2002-03-01 +Sets:ODY, TOR \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Odyssey/2002-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Odyssey/2002-07-01.txt new file mode 100644 index 00000000000..e6706e195e3 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Odyssey/2002-07-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Odyssey Block, Judgment +Type:Historic +Subtype:Block +Effective:2002-07-01 +Sets:ODY, TOR, JUD \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Onslaught/2002-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Onslaught/2002-11-01.txt new file mode 100644 index 00000000000..b126b4f252d --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Onslaught/2002-11-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Onslaught Block, Onslaught +Type:Historic +Subtype:Block +Effective:2002-11-01 +Sets:ONS \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Onslaught/2003-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Onslaught/2003-03-01.txt new file mode 100644 index 00000000000..5f151369ab7 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Onslaught/2003-03-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Onslaught Block, Legions +Type:Historic +Subtype:Block +Effective:2003-03-01 +Sets:ONS, LGN \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Onslaught/2003-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Onslaught/2003-07-01.txt new file mode 100644 index 00000000000..d7b0d6347ae --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Onslaught/2003-07-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Onslaught Block, Scourge +Type:Historic +Subtype:Block +Effective:2003-07-01 +Sets:ONS, LGN, SCG \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Rath Cycle/1997-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Rath Cycle/1997-11-01.txt new file mode 100644 index 00000000000..f7e3a9420c9 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Rath Cycle/1997-11-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Tempest Block, Tempest +Type:Historic +Subtype:Block +Effective:1997-11-01 +Sets:TMP \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Rath Cycle/1998-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Rath Cycle/1998-04-01.txt new file mode 100644 index 00000000000..8f22304c218 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Rath Cycle/1998-04-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Tempest/Stronghold Block, Stronghold +Type:Historic +Subtype:Block +Effective:1998-04-01 +Sets:TMP, STH \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Rath Cycle/1998-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Rath Cycle/1998-07-01.txt new file mode 100644 index 00000000000..2934abff532 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Rath Cycle/1998-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Tempest/Stronghold/Exodus Block, Exodus +Type:Historic +Subtype:Block +Effective:1998-07-01 +Sets:TMP, STH, EXO +Banned:Cursed Scroll \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Ravnica/2005-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Ravnica/2005-10-20.txt new file mode 100644 index 00000000000..bbe38062814 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Ravnica/2005-10-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Ravnica Block, Ravnica: City of Guilds +Type:Historic +Subtype:Block +Effective:2005-10-20 +Sets:RAV \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Urza/1999-01-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Urza/1999-01-01.txt new file mode 100644 index 00000000000..f0f99b7ffdb --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Urza/1999-01-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Urza's Saga Standalone, 01/01/99 +Type:Historic +Subtype:Block +Effective:1999-01-01 +Sets:USG \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Urza/1999-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Urza/1999-03-01.txt new file mode 100644 index 00000000000..d44926ce9a4 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Urza/1999-03-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Urza's Saga/Urza's Legacy Standalone, Urza's Legacy +Type:Historic +Subtype:Block +Effective:1999-03-01 +Sets:USG, ULG \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Urza/1999-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Urza/1999-04-01.txt new file mode 100644 index 00000000000..5bd87422ffd --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Urza/1999-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Urza Block, 04/01/99 +Type:Historic +Subtype:Block +Effective:1999-04-01 +Sets:USG, ULG +Banned:Memory Jar, Time Spiral, Windfall \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Urza/1999-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Urza/1999-07-01.txt new file mode 100644 index 00000000000..d1e65eb170f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Block/Urza/1999-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Urza Block, Urza's Destiny +Type:Historic +Subtype:Block +Effective:1999-07-01 +Sets:USG, ULG, UDS +Banned:Gaea's Cradle, Memory Jar, Serra's Sanctum, Time Spiral, Tolarian Academy, Voltaic Key, Windfall \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1997-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1997-07-01.txt new file mode 100644 index 00000000000..43c60762049 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1997-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Weatherlight +Type:Historic +Subtype:Extended +Effective:1997-07-01 +Sets:3ED, 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, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Ivory Tower, Jeweled Bird, Juggernaut, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1997-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1997-10-01.txt new file mode 100644 index 00000000000..af4c20431ea --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1997-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, 10/01/97 +Type:Historic +Subtype:Extended +Effective:1997-10-01 +Sets:3ED, 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, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Hypnotic Specter, Ivory Tower, Jeweled Bird, Juggernaut, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1997-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1997-11-01.txt new file mode 100644 index 00000000000..576ed32d576 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1997-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Tempest +Type:Historic +Subtype:Extended +Effective:1997-11-01 +Sets: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, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Hypnotic Specter, Ivory Tower, Jeweled Bird, Juggernaut, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1998-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1998-04-01.txt new file mode 100644 index 00000000000..ad9b6803c35 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1998-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Stronghold +Type:Historic +Subtype:Extended +Effective:1998-04-01 +Sets: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, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Hypnotic Specter, Ivory Tower, Jeweled Bird, Juggernaut, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1998-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1998-07-01.txt new file mode 100644 index 00000000000..b478e9bcea6 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1998-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Exodus +Type:Historic +Subtype:Extended +Effective:1998-07-01 +Sets: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, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Hypnotic Specter, Ivory Tower, Jeweled Bird, Kird Ape, Land Tax, Mana Crypt, Maze of Ith, Mind Twist, Rebirth, Regrowth, Serendib Efreet, Sol Ring, Strip Mine, Tempest Efreet, Timmerian Fiends, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1998-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1998-11-01.txt new file mode 100644 index 00000000000..82279362fd9 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1998-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Urza's Saga +Type:Historic +Subtype:Extended +Effective:1998-11-01 +Sets: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, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Hypnotic Specter, Ivory Tower, Jeweled Bird, Kird Ape, Land Tax, Mana Crypt, Maze of Ith, Mind Twist, Rebirth, Regrowth, Serendib Efreet, Sol Ring, Strip Mine, Tempest Efreet, Timmerian Fiends, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-01-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-01-01.txt new file mode 100644 index 00000000000..e02433ec132 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-01-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, 01/01/99 +Type:Historic +Subtype:Extended +Effective:1999-01-01 +Sets: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, Bronze Tablet, Channel, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Hypnotic Specter, Ivory Tower, Jeweled Bird, Kird Ape, Land Tax, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-03-01.txt new file mode 100644 index 00000000000..c4b01f022a4 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-03-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Urza's Legacy +Type:Historic +Subtype:Extended +Effective:1999-03-01 +Sets: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, Bronze Tablet, Channel, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Hypnotic Specter, Ivory Tower, Jeweled Bird, Kird Ape, Land Tax, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-04-01.txt new file mode 100644 index 00000000000..d679f3634d6 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, 04/01/99 +Type:Historic +Subtype:Extended +Effective:1999-04-01 +Sets: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, Bronze Tablet, Channel, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Hypnotic Specter, Ivory Tower, Jeweled Bird, Kird Ape, Land Tax, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-06-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-06-01.txt new file mode 100644 index 00000000000..659b6a75f22 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-06-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Classic Sixth Edition +Type:Historic +Subtype:Extended +Effective:1999-06-01 +Sets: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, Bronze Tablet, Channel, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Hypnotic Specter, Ivory Tower, Jeweled Bird, Kird Ape, Land Tax, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-07-01.txt new file mode 100644 index 00000000000..b7418cc712d --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Urza's Destiny +Type:Historic +Subtype:Extended +Effective:1999-07-01 +Sets: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, Bronze Tablet, Channel, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Hypnotic Specter, Ivory Tower, Jeweled Bird, Kird Ape, Land Tax, Mana Crypt, Maze of Ith, Memory Jar, Mind Twist, Rebirth, Regrowth, Serendib Efreet, Sol Ring, Strip Mine, Tempest Efreet, Time Spiral, Timmerian Fiends, Tolarian Academy, Wheel of Fortune, Windfall, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-08-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-08-01.txt new file mode 100644 index 00000000000..9f98e832ef6 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-08-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, 08/01/99 +Type:Historic +Subtype:Extended +Effective:1999-08-01 +Sets: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, Bronze Tablet, Channel, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Hypnotic Specter, Ivory Tower, Jeweled Bird, Kird Ape, Land Tax, Mana Crypt, Maze of Ith, Memory Jar, Mind Twist, Rebirth, Regrowth, Serendib Efreet, Sol Ring, Strip Mine, Tempest Efreet, Time Spiral, Timmerian Fiends, Tolarian Academy, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-10-01.txt new file mode 100644 index 00000000000..645cfed7975 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-10-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Extended, 10/01/99 +Type:Historic +Subtype:Extended +Effective:1999-10-01 +Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS +Banned:Amulet of Quoz, 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 +Additional:Badlands, Bayou, Plateau, Savannah, Scrubland, Taiga, Tropical Island, Tundra, Underground Sea, Volcanic Island \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-11-01.txt new file mode 100644 index 00000000000..227b3a20205 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/1999-11-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Extended, Mercadian Masques +Type:Historic +Subtype:Extended +Effective:1999-11-01 +Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ +Banned:Amulet of Quoz, 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 +Additional:Badlands, Bayou, Plateau, Savannah, Scrubland, Taiga, Tropical Island, Tundra, Underground Sea, Volcanic Island \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2000-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2000-03-01.txt new file mode 100644 index 00000000000..614ce01714a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2000-03-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Extended, Nemesis +Type:Historic +Subtype:Extended +Effective:2000-03-01 +Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS +Banned:Amulet of Quoz, 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 +Additional:Badlands, Bayou, Plateau, Savannah, Scrubland, Taiga, Tropical Island, Tundra, Underground Sea, Volcanic Island \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2000-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2000-04-01.txt new file mode 100644 index 00000000000..389fc9ffe7e --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2000-04-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Extended, 04/01/00 +Type:Historic +Subtype:Extended +Effective:2000-04-01 +Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS +Banned:Amulet of Quoz, Dark Ritual, Dream Halls, Earthcraft, Lotus Petal, Mana Vault, Memory Jar, Mind Over Matter, Time Spiral, Timmerian Fiends, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb +Additional:Badlands, Bayou, Plateau, Savannah, Scrubland, Taiga, Tropical Island, Tundra, Underground Sea, Volcanic Island \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2000-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2000-07-01.txt new file mode 100644 index 00000000000..6b5edca3f8e --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2000-07-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Extended, Prophecy +Type:Historic +Subtype:Extended +Effective:2000-07-01 +Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY +Banned:Amulet of Quoz, Dark Ritual, Dream Halls, Earthcraft, Lotus Petal, Mana Vault, Memory Jar, Mind Over Matter, Time Spiral, Timmerian Fiends, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb +Additional:Badlands, Bayou, Plateau, Savannah, Scrubland, Taiga, Tropical Island, Tundra, Underground Sea, Volcanic Island \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2000-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2000-11-01.txt new file mode 100644 index 00000000000..55f9be59645 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2000-11-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Extended, Invasion +Type:Historic +Subtype:Extended +Effective:2000-11-01 +Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV +Banned:Amulet of Quoz, Dark Ritual, Dream Halls, Earthcraft, Lotus Petal, Mana Vault, Memory Jar, Mind Over Matter, Time Spiral, Timmerian Fiends, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb +Additional:Badlands, Bayou, Plateau, Savannah, Scrubland, Taiga, Tropical Island, Tundra, Underground Sea, Volcanic Island \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2001-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2001-03-01.txt new file mode 100644 index 00000000000..2fddc1ed468 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2001-03-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Extended, Planeshift +Type:Historic +Subtype:Extended +Effective:2001-03-01 +Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS +Banned:Amulet of Quoz, Dark Ritual, Dream Halls, Earthcraft, Lotus Petal, Mana Vault, Memory Jar, Mind Over Matter, Time Spiral, Timmerian Fiends, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb +Additional:Badlands, Bayou, Plateau, Savannah, Scrubland, Taiga, Tropical Island, Tundra, Underground Sea, Volcanic Island \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2001-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2001-04-01.txt new file mode 100644 index 00000000000..81b2fde02b6 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2001-04-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Extended, 04/01/01 +Type:Historic +Subtype:Extended +Effective:2001-04-01 +Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS +Banned:Amulet of Quoz, Dark Ritual, Demonic Consultation, Dream Halls, Earthcraft, Lotus Petal, Mana Vault, Memory Jar, Mind Over Matter, Necropotence, Replenish, Survival of the Fittest, Time Spiral, Timmerian Fiends, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb +Additional:Badlands, Bayou, Plateau, Savannah, Scrubland, Taiga, Tropical Island, Tundra, Underground Sea, Volcanic Island \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2001-05-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2001-05-01.txt new file mode 100644 index 00000000000..5598261995e --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2001-05-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Extended, Seventh Edition +Type:Historic +Subtype:Extended +Effective:2001-05-01 +Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED +Banned:Amulet of Quoz, Dark Ritual, Demonic Consultation, Dream Halls, Earthcraft, Lotus Petal, Mana Vault, Memory Jar, Mind Over Matter, Necropotence, Replenish, Survival of the Fittest, Time Spiral, Timmerian Fiends, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb +Additional:Badlands, Bayou, Plateau, Savannah, Scrubland, Taiga, Tropical Island, Tundra, Underground Sea, Volcanic Island \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2001-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2001-07-01.txt new file mode 100644 index 00000000000..23063f397e9 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2001-07-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Extended, Apocalypse +Type:Historic +Subtype:Extended +Effective:2001-07-01 +Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC +Banned:Amulet of Quoz, Dark Ritual, Demonic Consultation, Dream Halls, Earthcraft, Lotus Petal, Mana Vault, Memory Jar, Mind Over Matter, Necropotence, Replenish, Survival of the Fittest, Time Spiral, Timmerian Fiends, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb +Additional:Badlands, Bayou, Plateau, Savannah, Scrubland, Taiga, Tropical Island, Tundra, Underground Sea, Volcanic Island \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2001-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2001-11-01.txt new file mode 100644 index 00000000000..d0a13d66143 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2001-11-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Extended, Odyssey +Type:Historic +Subtype:Extended +Effective:2001-11-01 +Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY +Banned:Amulet of Quoz, Dark Ritual, Demonic Consultation, Dream Halls, Earthcraft, Lotus Petal, Mana Vault, Memory Jar, Mind Over Matter, Necropotence, Replenish, Survival of the Fittest, Time Spiral, Timmerian Fiends, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb +Additional:Badlands, Bayou, Plateau, Savannah, Scrubland, Taiga, Tropical Island, Tundra, Underground Sea, Volcanic Island \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2002-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2002-03-01.txt new file mode 100644 index 00000000000..f7339bd3153 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2002-03-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Extended, Torment +Type:Historic +Subtype:Extended +Effective:2002-03-01 +Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR +Banned:Amulet of Quoz, Dark Ritual, Demonic Consultation, Dream Halls, Earthcraft, Lotus Petal, Mana Vault, Memory Jar, Mind Over Matter, Necropotence, Replenish, Survival of the Fittest, Time Spiral, Timmerian Fiends, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb +Additional:Badlands, Bayou, Plateau, Savannah, Scrubland, Taiga, Tropical Island, Tundra, Underground Sea, Volcanic Island \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2002-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2002-07-01.txt new file mode 100644 index 00000000000..5947182db88 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2002-07-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Extended, Judgment +Type:Historic +Subtype:Extended +Effective:2002-07-01 +Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD +Banned:Amulet of Quoz, Dark Ritual, Demonic Consultation, Dream Halls, Earthcraft, Lotus Petal, Mana Vault, Memory Jar, Mind Over Matter, Necropotence, Replenish, Survival of the Fittest, Time Spiral, Timmerian Fiends, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb +Additional:Badlands, Bayou, Plateau, Savannah, Scrubland, Taiga, Tropical Island, Tundra, Underground Sea, Volcanic Island \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2002-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2002-11-01.txt new file mode 100644 index 00000000000..39d838fe43c --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2002-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Onslaught +Type:Historic +Subtype:Extended +Effective:2002-11-01 +Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2003-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2003-03-01.txt new file mode 100644 index 00000000000..e924df0f3d6 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2003-03-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Legions +Type:Historic +Subtype:Extended +Effective:2003-03-01 +Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS, MMQ, NMS, PCY, INV, PLS, 7ED, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2003-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2003-07-01.txt new file mode 100644 index 00000000000..e431262c546 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2003-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Scourge +Type:Historic +Subtype:Extended +Effective:2003-07-01 +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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2003-09-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2003-09-01.txt new file mode 100644 index 00000000000..d6070fb7e08 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2003-09-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Eighth Edition +Type:Historic +Subtype:Extended +Effective:2003-09-01 +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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2003-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2003-10-01.txt new file mode 100644 index 00000000000..b9e818a9513 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2003-10-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, 10/01/03 +Subtype:Extended +Effective:2003-10-01 +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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2003-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2003-10-20.txt new file mode 100644 index 00000000000..0c8ca8facfc --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2003-10-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, Mirrodin +Subtype:Extended +Effective:2003-10-20 +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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2004-01-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2004-01-01.txt new file mode 100644 index 00000000000..c2aee24370d --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2004-01-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, 01/01/04 +Subtype:Extended +Effective:2004-01-01 +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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2004-02-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2004-02-20.txt new file mode 100644 index 00000000000..2f2bfee3fcb --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2004-02-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, Darksteel +Subtype:Extended +Effective:2004-02-20 +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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2004-06-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2004-06-20.txt new file mode 100644 index 00000000000..f46b8634960 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2004-06-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, Fifth Dawn +Subtype:Extended +Effective:2004-06-20 +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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2004-09-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2004-09-20.txt new file mode 100644 index 00000000000..43bf4ff89e2 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2004-09-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, 09/20/04 +Subtype:Extended +Effective:2004-09-20 +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, Metalworker, Memory Jar, Mind Over Matter, Oath of Druids, Replenish, Skullclamp, Survival of the Fittest, Time Spiral, Tinker, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2004-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2004-10-20.txt new file mode 100644 index 00000000000..95cc9af78e9 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2004-10-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, Champions of Kamigawa +Subtype:Extended +Effective:2004-10-20 +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, Metalworker, Memory Jar, Mind Over Matter, Oath of Druids, Replenish, Skullclamp, Survival of the Fittest, Time Spiral, Tinker, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2005-02-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2005-02-20.txt new file mode 100644 index 00000000000..7b6f4a7bae3 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2005-02-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, Betrayers of Kamigawa +Subtype:Extended +Effective:2005-02-20 +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, Metalworker, Memory Jar, Mind Over Matter, Oath of Druids, Replenish, Skullclamp, Survival of the Fittest, Time Spiral, Tinker, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2005-06-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2005-06-20.txt new file mode 100644 index 00000000000..8f11cabb372 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2005-06-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, Saviors of Kamigawa +Subtype:Extended +Effective:2005-06-20 +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, Metalworker, Memory Jar, Mind Over Matter, Oath of Druids, Replenish, Skullclamp, Survival of the Fittest, Time Spiral, Tinker, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2005-08-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2005-08-20.txt new file mode 100644 index 00000000000..7cef3d07b1f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2005-08-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, Ninth Edition +Subtype:Extended +Effective:2005-08-20 +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, Metalworker, Memory Jar, Mind Over Matter, Oath of Druids, Replenish, Skullclamp, Survival of the Fittest, Time Spiral, Tinker, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2005-09-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2005-09-20.txt new file mode 100644 index 00000000000..17bee2f6150 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2005-09-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, 09/20/05 +Subtype:Extended +Effective:2005-09-20 +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, Metalworker, Memory Jar, Mind Over Matter, Oath of Druids, Replenish, Skullclamp, Survival of the Fittest, Time Spiral, Tinker, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2005-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2005-10-20.txt new file mode 100644 index 00000000000..ec6260c7378 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/2005-10-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, Ravnica: City of Guilds +Subtype:Extended +Effective:2005-10-20 +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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/1997-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/1997-07-01.txt new file mode 100644 index 00000000000..365ca4809fb --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/1997-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Weatherlight +Type:Historic +Subtype:Extended +Effective:1997-07-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Blaze of Glory, Braingeyser, Channel, Chaos Orb, Consecrate Land, Contract from Below, Copper Tablet, Counterspell, Cyclopean Tomb, Darkpact, Demonic Attorney, Demonic Tutor, Dwarven Demolition Team, Fastbond, Forcefield, Gauntlet of Might, Ice Storm, Invisibility, Jade Statue, Juggernaut, Lich, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Psionic Blast, Regrowth, Sinkhole, Sol Ring, Time Vault, Time Walk, Timetwister, Two-Headed Giant of Foriys, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/1997-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/1997-10-01.txt new file mode 100644 index 00000000000..de82b4294d9 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/1997-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, 10/01/97 +Type:Historic +Subtype:Extended +Effective:1997-10-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Blaze of Glory, Braingeyser, Channel, Chaos Orb, Consecrate Land, Contract from Below, Copper Tablet, Counterspell, Cyclopean Tomb, Darkpact, Demonic Attorney, Demonic Tutor, Dwarven Demolition Team, Fastbond, Forcefield, Gauntlet of Might, Hypnotic Specter, Ice Storm, Invisibility, Jade Statue, Juggernaut, Lich, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Psionic Blast, Regrowth, Sinkhole, Sol Ring, Time Vault, Time Walk, Timetwister, Two-Headed Giant of Foriys, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/1998-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/1998-07-01.txt new file mode 100644 index 00000000000..9a232cf4a52 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/1998-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Exodus +Type:Historic +Subtype:Extended +Effective:1998-07-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Blaze of Glory, Braingeyser, Channel, Chaos Orb, Consecrate Land, Contract from Below, Copper Tablet, Counterspell, Cyclopean Tomb, Darkpact, Demonic Attorney, Demonic Tutor, Dwarven Demolition Team, Fastbond, Forcefield, Gauntlet of Might, Hypnotic Specter, Ice Storm, Invisibility, Jade Statue, Lich, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Psionic Blast, Regrowth, Sinkhole, Sol Ring, Time Vault, Time Walk, Timetwister, Two-Headed Giant of Foriys, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/1999-01-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/1999-01-01.txt new file mode 100644 index 00000000000..8c5aa52f503 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/1999-01-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, 01/01/99 +Type:Historic +Subtype:Extended +Effective:1999-01-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Blaze of Glory, Channel, Chaos Orb, Consecrate Land, Contract from Below, Copper Tablet, Counterspell, Cyclopean Tomb, Darkpact, Demonic Attorney, Demonic Tutor, Dwarven Demolition Team, Fastbond, Forcefield, Gauntlet of Might, Hypnotic Specter, Ice Storm, Invisibility, Jade Statue, Lich, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Psionic Blast, Regrowth, Sinkhole, Sol Ring, Time Vault, Time Walk, Timetwister, Two-Headed Giant of Foriys, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/1999-06-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/1999-06-01.txt new file mode 100644 index 00000000000..7ab00e6a927 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/1999-06-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Classic Sixth Edition +Type:Historic +Subtype:Extended +Effective:1999-06-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Blaze of Glory, Channel, Chaos Orb, Consecrate Land, Contract from Below, Copper Tablet, Cyclopean Tomb, Darkpact, Demonic Attorney, Demonic Tutor, Dwarven Demolition Team, Fastbond, Forcefield, Gauntlet of Might, Hypnotic Specter, Ice Storm, Invisibility, Jade Statue, Lich, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Psionic Blast, Regrowth, Sinkhole, Sol Ring, Time Vault, Time Walk, Timetwister, Two-Headed Giant of Foriys, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/1999-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/1999-10-01.txt new file mode 100644 index 00000000000..4335bba203e --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/1999-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, 10/01/99 +Type:Historic +Subtype:Extended +Effective:1999-10-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Balance, Basalt Monolith, Berserk, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clone, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cyclopean Tomb, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dwarven Demolition Team, Earth Elemental, Earthbind, Farmstead, Fastbond, Forcefield, Fork, Gaea's Liege, Gauntlet of Might, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Ice Storm, Invisibility, Jade Statue, Juggernaut, Jump, Kormus Bell, Kudzu, Lance, Lich, Lifelace, Lightning Bolt, Living Wall, Mahamoti Djinn, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Northern Paladin, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Roc of Kher Ridges, Rock Hydra, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Sengir Vampire, Serra Angel, Simulacrum, Sinkhole, Siren's Call, Sol Ring, Sunglasses of Urza, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tunnel, Twiddle, Two-Headed Giant of Foriys, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2000-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2000-04-01.txt new file mode 100644 index 00000000000..bbf5103425f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2000-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, 04/01/00 +Type:Historic +Subtype:Extended +Effective:2000-04-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Balance, Basalt Monolith, Berserk, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clone, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cyclopean Tomb, Dark Ritual, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dwarven Demolition Team, Earth Elemental, Earthbind, Farmstead, Fastbond, Forcefield, Fork, Gaea's Liege, Gauntlet of Might, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Ice Storm, Invisibility, Jade Statue, Juggernaut, Jump, Kormus Bell, Kudzu, Lance, Lich, Lifelace, Lightning Bolt, Living Wall, Mahamoti Djinn, Mana Vault, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Northern Paladin, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Roc of Kher Ridges, Rock Hydra, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Sengir Vampire, Serra Angel, Simulacrum, Sinkhole, Siren's Call, Sol Ring, Sunglasses of Urza, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tunnel, Twiddle, Two-Headed Giant of Foriys, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2001-05-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2001-05-01.txt new file mode 100644 index 00000000000..799f1f3248a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2001-05-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Seventh Edition +Type:Historic +Subtype:Extended +Effective:2001-05-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Balance, Basalt Monolith, Berserk, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clone, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cyclopean Tomb, Dark Ritual, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dwarven Demolition Team, Earth Elemental, Earthbind, Farmstead, Fastbond, Forcefield, Fork, Gaea's Liege, Gauntlet of Might, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Ice Storm, Invisibility, Jade Statue, Juggernaut, Jump, Kormus Bell, Kudzu, Lance, Lich, Lifelace, Lightning Bolt, Living Wall, Mana Vault, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Roc of Kher Ridges, Rock Hydra, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Sengir Vampire, Simulacrum, Sinkhole, Siren's Call, Sol Ring, Sunglasses of Urza, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tunnel, Two-Headed Giant of Foriys, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2002-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2002-03-01.txt new file mode 100644 index 00000000000..736e4b35cba --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2002-03-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Torment +Type:Historic +Subtype:Extended +Effective:2002-03-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Balance, Basalt Monolith, Berserk, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clone, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cyclopean Tomb, Dark Ritual, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dwarven Demolition Team, Earth Elemental, Earthbind, Farmstead, Fastbond, Forcefield, Fork, Gaea's Liege, Gauntlet of Might, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Ice Storm, Invisibility, Jade Statue, Juggernaut, Jump, Kormus Bell, Kudzu, Lance, Lich, Lifelace, Lightning Bolt, Living Wall, Mana Vault, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Roc of Kher Ridges, Rock Hydra, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sol Ring, Sunglasses of Urza, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tunnel, Two-Headed Giant of Foriys, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2002-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2002-11-01.txt new file mode 100644 index 00000000000..d1dc8dbf73f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2002-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Onslaught +Type:Historic +Subtype:Extended +Effective:2002-11-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Wall, Aspect of Wolf, Bad Moon, Badlands, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Craw Wurm, Creature Bond, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Death Ward, Deathgrip, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Demolition Team, Dwarven Warriors, Earth Elemental, Earthbind, Evil Presence, Farmstead, Fastbond, Feedback, Fireball, Force of Nature, Forcefield, Fork, Frozen Shade, Fungusaur, Gaea's Liege, Gauntlet of Might, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Icy Manipulator, Instill Energy, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Statue, Juggernaut, Jump, Karma, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Paralyze, Pearled Unicorn, Personal Incarnation, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Roc of Kher Ridges, Rock Hydra, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Undergroung Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Stone, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Knight, White Ward, Will-o'-the-Wisp, Winter Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2003-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2003-03-01.txt new file mode 100644 index 00000000000..b6c7224da02 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2003-03-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Legions +Type:Historic +Subtype:Extended +Effective:2003-03-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Wall, Aspect of Wolf, Bad Moon, Badlands, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Craw Wurm, Creature Bond, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Death Ward, Deathgrip, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Demolition Team, Dwarven Warriors, Earth Elemental, Earthbind, Evil Presence, Farmstead, Fastbond, Feedback, Fireball, Force of Nature, Forcefield, Fork, Frozen Shade, Fungusaur, Gaea's Liege, Gauntlet of Might, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Icy Manipulator, Instill Energy, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Statue, Juggernaut, Jump, Karma, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Paralyze, Pearled Unicorn, Personal Incarnation, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Roc of Kher Ridges, Rock Hydra, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Undergroung Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Stone, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Winter Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2003-09-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2003-09-01.txt new file mode 100644 index 00000000000..bd5c5a44cea --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2003-09-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Eighth Edition +Type:Historic +Subtype:Extended +Effective:2003-09-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Wall, Aspect of Wolf, Bad Moon, Badlands, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Death Ward, Deathgrip, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Warriors, Earth Elemental, Earthbind, Evil Presence, Farmstead, Fastbond, Feedback, Fireball, Force of Nature, Forcefield, Fork, Frozen Shade, Gaea's Liege, Gauntlet of Might, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Icy Manipulator, Instill Energy, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Statue, Juggernaut, Jump, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Paralyze, Pearled Unicorn, Personal Incarnation, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Roc of Kher Ridges, Rock Hydra, Sacrifice, Savannah, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Undergroung Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Winter Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2003-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2003-10-20.txt new file mode 100644 index 00000000000..3b23cf19024 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2003-10-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Mirrodin +Type:Historic +Subtype:Extended +Effective:2003-10-20 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Wall, Aspect of Wolf, Bad Moon, Badlands, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Death Ward, Deathgrip, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Warriors, Earth Elemental, Earthbind, Evil Presence, Farmstead, Fastbond, Feedback, Fireball, Force of Nature, Forcefield, Fork, Frozen Shade, Gaea's Liege, Gauntlet of Might, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Instill Energy, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Statue, Juggernaut, Jump, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Paralyze, Pearled Unicorn, Personal Incarnation, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Roc of Kher Ridges, Rock Hydra, Sacrifice, Savannah, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Undergroung Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Winter Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2004-02-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2004-02-20.txt new file mode 100644 index 00000000000..133a0ec0cba --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2004-02-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Darksteel +Type:Historic +Subtype:Extended +Effective:2004-02-20 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Wall, Aspect of Wolf, Bad Moon, Badlands, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Death Ward, Deathgrip, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Warriors, Earth Elemental, Earthbind, Evil Presence, Farmstead, Fastbond, Feedback, Force of Nature, Forcefield, Fork, Frozen Shade, Gaea's Liege, Gauntlet of Might, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Instill Energy, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Statue, Jump, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Paralyze, Pearled Unicorn, Personal Incarnation, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Roc of Kher Ridges, Rock Hydra, Sacrifice, Savannah, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Undergroung Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Winter Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2005-08-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2005-08-20.txt new file mode 100644 index 00000000000..f770516c575 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2005-08-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Ninth Edition +Type:Historic +Subtype:Extended +Effective:2005-08-20 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Wall, Aspect of Wolf, Bad Moon, Badlands, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Death Ward, Deathgrip, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Warriors, Earth Elemental, Earthbind, Evil Presence, Farmstead, Fastbond, Feedback, Forcefield, Fork, Frozen Shade, Gaea's Liege, Gauntlet of Might, Gloom, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Holy Armor, Hurloon Minotaur, Ice Storm, Instill Energy, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jump, Keldon Warlord, Kormus Bell, Kudzu, Lance, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Paralyze, Pearled Unicorn, Personal Incarnation, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Roc of Kher Ridges, Rock Hydra, Sacrifice, Savannah, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Undergroung Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Wheel of Fortune, White Ward, Winter Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2005-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2005-10-20.txt new file mode 100644 index 00000000000..9605db080cf --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Extended/Alpha/2005-10-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Ravnica: City of Guilds +Type:Historic +Subtype:Extended +Effective:2005-10-20 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Bad Moon, Badlands, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Crusade, Cursed Land, Cyclopean Tomb, Dark Ritual, Dark Ritual, Darkpact, Death Ward, Deathgrip, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Warriors, Earth Elemental, Earthbind, Evil Presence, Farmstead, Fastbond, Feedback, Forcefield, Fork, Frozen Shade, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, The Hive, Holy Armor, Hurloon Minotaur, Ice Storm, Instill Energy, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jump, Keldon Warlord, Kormus Bell, Kudzu, Lance, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Manabarbs, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Obsianus Golem, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantasmal Terrain, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Psionic Blast, Psychic Venom, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Roc of Kher Ridges, Rock Hydra, Sacrifice, Savannah, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Spell Blast, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Thicket Basilisk, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Undergroung Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Wheel of Fortune, White Ward, Winter Orb, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1996-05-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1996-05-01.txt new file mode 100644 index 00000000000..92bcade8003 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1996-05-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I.5, 05/01/96 +Type:Historic +Subtype:Legacy +Effective:1996-05-01 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Bronze Tablet, Braingeyser, Bronze Tablet, Candelabra of Tawnos, Channel, Chaos Orb, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Divine Intervention, Falling Star, Feldon's Cane, Fork, Ivory Tower, Jeweled Bird, 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, Tempest Efreet, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1996-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1996-07-01.txt new file mode 100644 index 00000000000..f7e30314961 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1996-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I.5, 07/01/96 +Type:Historic +Subtype:Legacy +Effective:1996-07-01 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML +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, 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 Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1996-07-10.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1996-07-10.txt new file mode 100644 index 00000000000..cd6af4e1cc3 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1996-07-10.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I.5, 07/10/96 +Type:Historic +Subtype:Legacy +Effective:1996-07-10 +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, 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 Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1996-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1996-10-01.txt new file mode 100644 index 00000000000..8b687c1d28f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1996-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I.5, 10/01/96 +Type:Historic +Subtype:Legacy +Effective:1996-10-01 +Sets: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, 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 Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1996-11-08.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1996-11-08.txt new file mode 100644 index 00000000000..9250711079d --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1996-11-08.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I.5, Mirage +Type:Historic +Subtype:Legacy +Effective:1996-11-08 +Sets: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 Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-01-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-01-01.txt new file mode 100644 index 00000000000..11f65e06506 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-01-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I.5, 01/01/1997 +Type:Historic +Subtype:Legacy +Effective:1997-01-01 +Sets: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 Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Timetwister, Time Walk, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-03-03.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-03-03.txt new file mode 100644 index 00000000000..b7e3a9d858a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-03-03.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I.5, Visions +Type:Historic +Subtype:Legacy +Effective:1997-03-03 +Sets: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 Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Sol Ring, Shahrazad, Strip Mine, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-04-01.txt new file mode 100644 index 00000000000..b39e742cb4a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I.5, 04/01/97 +Type:Historic +Subtype:Legacy +Effective:1997-04-01 +Sets: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, 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, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-04-24.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-04-24.txt new file mode 100644 index 00000000000..651b63ad8b0 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-04-24.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I.5, Fifth Edition +Type:Historic +Subtype:Legacy +Effective:1997-04-24 +Sets: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, 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, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-07-01.txt new file mode 100644 index 00000000000..98172144c4d --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Classic-Restricted, Weatherlight +Type:Historic +Subtype:Legacy +Effective:1997-07-01 +Sets: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, Ancestral Recall, Balance, Berserk, Black Lotus, 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, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-10-01.txt new file mode 100644 index 00000000000..1fcdb7a7cd0 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Classic-Restricted, 10/01/97 +Type:Historic +Subtype:Legacy +Effective:1997-10-01 +Sets: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, Ancestral Recall, Balance, Berserk, Black Lotus, 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, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-11-01.txt new file mode 100644 index 00000000000..501c517b95d --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1997-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Classic-Restricted, Tempest +Type:Historic +Subtype:Legacy +Effective:1997-11-01 +Sets:LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, 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, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1998-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1998-04-01.txt new file mode 100644 index 00000000000..29bae19149f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1998-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Classic-Restricted, Stronghold +Type:Historic +Subtype:Legacy +Effective:1998-04-01 +Sets:LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML, ALL, MIR, VIS, 5ED, WTH, TMP, STH +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, 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, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1998-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1998-07-01.txt new file mode 100644 index 00000000000..59530042875 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1998-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Classic-Restricted, Exodus +Type:Historic +Subtype:Legacy +Effective:1998-07-01 +Sets: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 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, 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, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1998-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1998-11-01.txt new file mode 100644 index 00000000000..b3170e48e21 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1998-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Classic-Restricted, Urza's Saga +Type:Historic +Subtype:Legacy +Effective:1998-11-01 +Sets: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 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, 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, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-01-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-01-01.txt new file mode 100644 index 00000000000..363887e09e8 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-01-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Classic-Restricted, 01/01/99 +Type:Historic +Subtype:Legacy +Effective:1999-01-01 +Sets: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 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Candelabra of Tawnos, Channel, Chaos Orb, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Divine Intervention, Falling Star, Fastbond, Fork, Ivory Tower, Jeweled Bird, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Tolarian Academy, Underworld Dreams, Wheel of Fortune, Windfall, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-03-01.txt new file mode 100644 index 00000000000..fd0a77bc86f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-03-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Classic-Restricted, Urza's Legacy +Type:Historic +Subtype:Legacy +Effective:1999-03-01 +Sets: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 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Candelabra of Tawnos, Channel, Chaos Orb, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Divine Intervention, Falling Star, Fastbond, Fork, Ivory Tower, Jeweled Bird, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Tolarian Academy, Underworld Dreams, Wheel of Fortune, Windfall, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-04-01.txt new file mode 100644 index 00000000000..ab57037e620 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Classic-Restricted, 04/01/99 +Type:Historic +Subtype:Legacy +Effective:1999-04-01 +Sets: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 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Divine Intervention, Falling Star, Fastbond, Fork, Ivory Tower, Jeweled Bird, Library of Alexandria, Memory Jar, Mind Twist, Mirror Universe, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tolarian Academy, Underworld Dreams, Wheel of Fortune, Windfall, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-06-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-06-01.txt new file mode 100644 index 00000000000..a571ba8c9b3 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-06-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Classic-Restricted, Classic Sixth Edition +Type:Historic +Subtype:Legacy +Effective:1999-06-01 +Sets: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 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Divine Intervention, Falling Star, Fastbond, Fork, Ivory Tower, Jeweled Bird, Library of Alexandria, Memory Jar, Mind Twist, Mirror Universe, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tolarian Academy, Underworld Dreams, Wheel of Fortune, Windfall, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-07-01.txt new file mode 100644 index 00000000000..cf98bb14e8a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Classic-Restricted, Urza's Destiny +Type:Historic +Subtype:Legacy +Effective:1999-07-01 +Sets: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 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Divine Intervention, Falling Star, Fastbond, Fork, Ivory Tower, Jeweled Bird, Library of Alexandria, Memory Jar, Mind Twist, Mirror Universe, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tolarian Academy, Underworld Dreams, Wheel of Fortune, Windfall, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-10-01.txt new file mode 100644 index 00000000000..03fda3a834a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, 10/01/99 +Type:Historic +Subtype:Legacy +Effective:1999-10-01 +Sets: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 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Rebirth, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-11-01.txt new file mode 100644 index 00000000000..24466badb3f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/1999-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, Mercadian Masques +Type:Historic +Subtype:Legacy +Effective:1999-11-01 +Sets: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, MMQ +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Rebirth, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2000-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2000-03-01.txt new file mode 100644 index 00000000000..c6e32a73316 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2000-03-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, Nemesis +Type:Historic +Subtype:Legacy +Effective:2000-03-01 +Sets: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, MMQ, NMS +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Rebirth, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2000-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2000-07-01.txt new file mode 100644 index 00000000000..38174d58b1a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2000-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, Prophecy +Type:Historic +Subtype:Legacy +Effective:2000-07-01 +Sets: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, MMQ, NMS, PCY +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Rebirth, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2000-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2000-10-01.txt new file mode 100644 index 00000000000..714f2f2aee2 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2000-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, 10/01/00 +Type:Historic +Subtype:Legacy +Effective:2000-10-01 +Sets: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, MMQ, NMS, PCY +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2000-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2000-11-01.txt new file mode 100644 index 00000000000..fb69111f710 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2000-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, 11/01/00 +Type:Historic +Subtype:Legacy +Effective:2000-11-01 +Sets: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, MMQ, NMS, PCY, INV +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2001-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2001-03-01.txt new file mode 100644 index 00000000000..07cd9101c5d --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2001-03-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, Planeshift +Type:Historic +Subtype:Legacy +Effective:2001-03-01 +Sets: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, MMQ, NMS, PCY, INV, PLS +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2001-05-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2001-05-01.txt new file mode 100644 index 00000000000..b868d95ce5d --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2001-05-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, Seventh Edition +Type:Historic +Subtype:Legacy +Effective:2001-05-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2001-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2001-07-01.txt new file mode 100644 index 00000000000..a8d348e3e38 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2001-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, Apocalypse +Type:Historic +Subtype:Legacy +Effective:2001-07-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2001-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2001-11-01.txt new file mode 100644 index 00000000000..fab5e7be276 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2001-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, Odyssey +Type:Historic +Subtype:Legacy +Effective:2001-11-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2002-01-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2002-01-01.txt new file mode 100644 index 00000000000..204c0387f35 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2002-01-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, 01/01/02 +Type:Historic +Subtype:Legacy +Effective:2002-01-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fact or Fiction, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2002-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2002-03-01.txt new file mode 100644 index 00000000000..ce9fddd3427 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2002-03-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, Torment +Type:Historic +Subtype:Legacy +Effective:2002-03-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fact or Fiction, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2002-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2002-07-01.txt new file mode 100644 index 00000000000..0d8047761e4 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2002-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, Judgment +Type:Historic +Subtype:Legacy +Effective:2002-07-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fact or Fiction, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2002-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2002-11-01.txt new file mode 100644 index 00000000000..d36074b2f30 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2002-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, Onslaught +Type:Historic +Subtype:Legacy +Effective:2002-11-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fact or Fiction, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2003-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2003-03-01.txt new file mode 100644 index 00000000000..4f44e7f7412 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2003-03-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, Legions +Type:Historic +Subtype:Legacy +Effective:2003-03-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fact or Fiction, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2003-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2003-04-01.txt new file mode 100644 index 00000000000..783aaed7a18 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2003-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, 04/01/03 +Type:Historic +Subtype:Legacy +Effective:2003-04-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN +Banned:Amulet of Quoz, Ancestral Recall, Balance, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2003-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2003-07-01.txt new file mode 100644 index 00000000000..07e900aacb1 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2003-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, Scourge +Type:Historic +Subtype:Legacy +Effective:2003-07-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG +Banned:Amulet of Quoz, Ancestral Recall, Balance, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Gush, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2003-09-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2003-09-01.txt new file mode 100644 index 00000000000..c5265cfb505 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2003-09-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, Eighth Edition +Type:Historic +Subtype:Legacy +Effective:2003-09-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED +Banned:Amulet of Quoz, Ancestral Recall, Balance, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Gush, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2003-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2003-10-20.txt new file mode 100644 index 00000000000..80b265dbf6a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2003-10-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, Mirrodin +Type:Historic +Subtype:Legacy +Effective:2003-10-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD +Banned:Amulet of Quoz, Ancestral Recall, Balance, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Gush, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2004-01-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2004-01-01.txt new file mode 100644 index 00000000000..697e0f057e3 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2004-01-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, 01/01/04 +Type:Historic +Subtype:Legacy +Effective:2004-01-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD +Banned:Amulet of Quoz, Ancestral Recall, Balance, Black Lotus, Braingeyser, Bronze Tablet, Burning Wish, Channel, Chaos Orb, Chrome Mox, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Gush, Jeweled Bird, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2004-02-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2004-02-20.txt new file mode 100644 index 00000000000..e3e55097ba3 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2004-02-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, Darksteel +Type:Historic +Subtype:Legacy +Effective:2004-02-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST +Banned:Amulet of Quoz, Ancestral Recall, Balance, Black Lotus, Braingeyser, Bronze Tablet, Burning Wish, Channel, Chaos Orb, Chrome Mox, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Gush, Jeweled Bird, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2004-06-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2004-06-20.txt new file mode 100644 index 00000000000..17ef87b5dbc --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2004-06-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5, Fifth Dawn +Type:Historic +Subtype:Legacy +Effective:2004-06-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN +Banned:Amulet of Quoz, Ancestral Recall, Balance, Black Lotus, Braingeyser, Bronze Tablet, Burning Wish, Channel, Chaos Orb, Chrome Mox, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Gush, Jeweled Bird, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2004-09-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2004-09-20.txt new file mode 100644 index 00000000000..d1a621ae302 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2004-09-20.txt @@ -0,0 +1,7 @@ +[format] +Name:"Type 1.5", 09/20/04 +Type:Historic +Subtype:Legacy +Effective:2004-09-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN +Banned:Amulet of Quoz, Ancestral Recall, Balance, Bazaar of Baghdad, Black Lotus, Black Vise, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Dream Halls, Earthcraft, Entomb, Falling Star, Fastbond, Frantic Search, Goblin Recruiter, Grim Monolith, Gush, Hermit Druid, Illusionary Mask, Jeweled Bird, Land Tax, Library of Alexandria, Mana Crypt, Mana Drain, Mana Vault, Memory Jar, Metalworker, Mind Over Matter, Mind Twist, Mind's Desire, Mishra's Workshop, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Necropotence, Oath of Druids, Rebirth, Replenish, Skullclamp, Sol Ring, Strip Mine, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Wheel of Fortune, Windfall, Worldgorger Dragon, Yawgmoth's Bargain, Yawgmoth's Will \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2004-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2004-10-20.txt new file mode 100644 index 00000000000..bfbbf0b8dae --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2004-10-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Champions of Kamigawa +Type:Historic +Subtype:Legacy +Effective:2004-10-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK +Banned:Amulet of Quoz, Ancestral Recall, Balance, Bazaar of Baghdad, Black Lotus, Black Vise, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Dream Halls, Earthcraft, Entomb, Falling Star, Fastbond, Frantic Search, Goblin Recruiter, Grim Monolith, Gush, Hermit Druid, Illusionary Mask, Jeweled Bird, Land Tax, Library of Alexandria, Mana Crypt, Mana Drain, Mana Vault, Memory Jar, Metalworker, Mind Over Matter, Mind Twist, Mind's Desire, Mishra's Workshop, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Necropotence, Oath of Druids, Rebirth, Replenish, Skullclamp, Sol Ring, Strip Mine, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Wheel of Fortune, Windfall, Worldgorger Dragon, Yawgmoth's Bargain, Yawgmoth's Will \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2005-02-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2005-02-20.txt new file mode 100644 index 00000000000..8dbb0f4de4d --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2005-02-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Betrayers of Kamigawa +Type:Historic +Subtype:Legacy +Effective:2005-02-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK +Banned:Amulet of Quoz, Ancestral Recall, Balance, Bazaar of Baghdad, Black Lotus, Black Vise, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Dream Halls, Earthcraft, Entomb, Falling Star, Fastbond, Frantic Search, Goblin Recruiter, Grim Monolith, Gush, Hermit Druid, Illusionary Mask, Jeweled Bird, Land Tax, Library of Alexandria, Mana Crypt, Mana Drain, Mana Vault, Memory Jar, Metalworker, Mind Over Matter, Mind Twist, Mind's Desire, Mishra's Workshop, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Necropotence, Oath of Druids, Rebirth, Replenish, Skullclamp, Sol Ring, Strip Mine, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Wheel of Fortune, Windfall, Worldgorger Dragon, Yawgmoth's Bargain, Yawgmoth's Will \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2005-06-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2005-06-20.txt new file mode 100644 index 00000000000..ce7feddec30 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2005-06-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Saviors of Kamigawa +Type:Historic +Subtype:Legacy +Effective:2005-06-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK +Banned:Amulet of Quoz, Ancestral Recall, Balance, Bazaar of Baghdad, Black Lotus, Black Vise, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Dream Halls, Earthcraft, Entomb, Falling Star, Fastbond, Frantic Search, Goblin Recruiter, Grim Monolith, Gush, Hermit Druid, Illusionary Mask, Jeweled Bird, Land Tax, Library of Alexandria, Mana Crypt, Mana Drain, Mana Vault, Memory Jar, Metalworker, Mind Over Matter, Mind Twist, Mind's Desire, Mishra's Workshop, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Necropotence, Oath of Druids, Rebirth, Replenish, Skullclamp, Sol Ring, Strip Mine, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Wheel of Fortune, Windfall, Worldgorger Dragon, Yawgmoth's Bargain, Yawgmoth's Will \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2005-08-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2005-08-20.txt new file mode 100644 index 00000000000..edc8a06c6cb --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2005-08-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Ninth Edition +Type:Historic +Subtype:Legacy +Effective:2005-08-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED +Banned:Amulet of Quoz, Ancestral Recall, Balance, Bazaar of Baghdad, Black Lotus, Black Vise, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Dream Halls, Earthcraft, Entomb, Falling Star, Fastbond, Frantic Search, Goblin Recruiter, Grim Monolith, Gush, Hermit Druid, Illusionary Mask, Jeweled Bird, Land Tax, Library of Alexandria, Mana Crypt, Mana Drain, Mana Vault, Memory Jar, Metalworker, Mind Over Matter, Mind Twist, Mind's Desire, Mishra's Workshop, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Necropotence, Oath of Druids, Rebirth, Replenish, Skullclamp, Sol Ring, Strip Mine, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Wheel of Fortune, Windfall, Worldgorger Dragon, Yawgmoth's Bargain, Yawgmoth's Will \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2005-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2005-10-20.txt new file mode 100644 index 00000000000..59d67687ef9 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/2005-10-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Ravnica: City of Guilds +Type:Historic +Subtype:Legacy +Effective:2005-10-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, POR, PO2, PTK, S99, S00, RAV +Banned:Amulet of Quoz, Ancestral Recall, Balance, Bazaar of Baghdad, Black Lotus, Black Vise, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Dream Halls, Earthcraft, Entomb, Falling Star, Fastbond, Frantic Search, Goblin Recruiter, Grim Monolith, Gush, Hermit Druid, Illusionary Mask, Imperial Seal, Jeweled Bird, Land Tax, Library of Alexandria, Mana Crypt, Mana Drain, Mana Vault, Memory Jar, Metalworker, Mind Over Matter, Mind Twist, Mind's Desire, Mishra's Workshop, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Necropotence, Oath of Druids, Rebirth, Replenish, Skullclamp, Sol Ring, Strip Mine, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Wheel of Fortune, Windfall, Worldgorger Dragon, Yawgmoth's Bargain, Yawgmoth's Will \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/1996-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/1996-10-01.txt new file mode 100644 index 00000000000..5308d82c348 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/1996-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I.5 Alpha, 10/01/96 +Type:Historic +Subtype:Legacy +Effective:1996-10-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Channel, Chaos Orb, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Fork, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Time Walk, Timetwister, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/1996-11-08.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/1996-11-08.txt new file mode 100644 index 00000000000..db956fec2c3 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/1996-11-08.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I.5 Alpha, 11/08/96 +Type:Historic +Subtype:Legacy +Effective:1996-11-08 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Channel, Chaos Orb, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Fork, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Time Walk, Timetwister, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/1997-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/1997-04-01.txt new file mode 100644 index 00000000000..8cfad5cd670 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/1997-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I.5 Alpha, 04/01/97 +Type:Historic +Subtype:Legacy +Effective:1997-04-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Channel, Chaos Orb, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Fork, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Time Walk, Timetwister, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/1999-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/1999-04-01.txt new file mode 100644 index 00000000000..fd1c54cff73 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/1999-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Classic-Restricted Alpha, 04/01/99 +Type:Historic +Subtype:Legacy +Effective:1999-04-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Fork, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Time Walk, Timetwister, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/1999-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/1999-10-01.txt new file mode 100644 index 00000000000..fd4cdc53072 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/1999-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5 Alpha, 10/01/99 +Type:Historic +Subtype:Legacy +Effective:1999-10-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Fork, Mana Vault, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Time Walk, Timetwister, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/2003-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/2003-04-01.txt new file mode 100644 index 00000000000..e2df520cbed --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/2003-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5 Alpha, 04/01/03 +Type:Historic +Subtype:Legacy +Effective:2003-04-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Black Lotus, Braingeyser, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Fork, Mana Vault, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Time Walk, Timetwister, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/2004-09-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/2004-09-20.txt new file mode 100644 index 00000000000..3d52b4c5a34 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Legacy/Alpha/2004-09-20.txt @@ -0,0 +1,7 @@ +[format] +Name:"Type 1.5" Alpha, 09/20/04 +Type:Historic +Subtype:Legacy +Effective:2004-09-20 +Sets:LEA +Banned:Ancestral Recall, Balance, Black Lotus, Black Vise, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Mana Vault, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Sol Ring, Time Walk, Timetwister, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1995-01-10.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1995-01-10.txt new file mode 100644 index 00000000000..e7efb1ed63e --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1995-01-10.txt @@ -0,0 +1,8 @@ +[format] +Name:Type II, 1/10/95 +Type:Historic +Subtype:Standard +Effective:1995-01-10 +Sets:3ED, DRK, FEM +Restricted:Braingeyser, Channel, Copy Artifact, Demonic Tutor, Ivory Tower, Maze of Ith, Mind Twist, Regrowth, Sol Ring, Wheel of Fortune +Banned:Contract from Below, Darkpact, Demonic Attorney, Rebirth \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1995-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1995-01.txt new file mode 100644 index 00000000000..829c2697d08 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1995-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type II, Fourth Edition +Type:Historic +Subtype:Standard +Effective:1995-01 +Sets:DRK, FEM, 4ED +Restricted:Balance, Channel, Ivory Tower, Maze of Ith, Mind Twist +Banned:Bronze Tablet, Rebirth, Tempest Efreet diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1995-06.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1995-06.txt new file mode 100644 index 00000000000..d98c8964212 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1995-06.txt @@ -0,0 +1,8 @@ +[format] +Name:Type II, Ice Age +Type:Historic +Subtype:Standard +Effective:1995-06 +Sets:FEM, 4ED, ICE +Restricted:Balance, Channel, Ivory Tower, Maze of Ith, Mind Twist +Banned:Bronze Tablet, Rebirth, Tempest Efreet diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1995-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1995-10-01.txt new file mode 100644 index 00000000000..6d304c8cc56 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1995-10-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type II, October 1, 1995 +Type:Historic +Subtype:Standard +Effective:1995-10-01 +Sets:FEM, 4ED, ICE, CHR +Restricted:Balance, Channel, Feldon's Cane, Ivory Tower, Mind Twist, Recall +Banned:Amulet of Quoz, Bronze Tablet, Rebirth, Tempest Efreet diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1995-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1995-11-01.txt new file mode 100644 index 00000000000..6099cdeb2e0 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1995-11-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type II, 11/01/95 +Type:Historic +Subtype:Standard +Effective:1995-11-01 +Sets:FEM, 4ED, ICE, CHR +Restricted:Balance, Feldon's Cane, Ivory Tower, Mind Twist, Recall, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Rebirth, Tempest Efreet diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1995-11-13.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1995-11-13.txt new file mode 100644 index 00000000000..291b39f8882 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1995-11-13.txt @@ -0,0 +1,8 @@ +[format] +Name:Type II, Homelands +Type:Historic +Subtype:Standard +Effective:1995-11-13 +Sets:FEM, 4ED, ICE, CHR, HML +Restricted:Balance, Feldon's Cane, Ivory Tower, Mind Twist, Recall, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Rebirth, Tempest Efreet diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1996-02-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1996-02-01.txt new file mode 100644 index 00000000000..e6dd4023686 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1996-02-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type II, 02/01/96 +Type:Historic +Subtype:Standard +Effective:1996-02-01 +Sets:FEM, 4ED, ICE, CHR, HML +Restricted:Balance, Black Vise, Feldon's Cane, Ivory Tower, Recall, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Mind Twist, Rebirth, Tempest Efreet diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1996-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1996-04-01.txt new file mode 100644 index 00000000000..c7ad0f9c83e --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1996-04-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type II, 04/01/96 +Type:Historic +Subtype:Standard +Effective:1996-04-01 +Sets:FEM, 4ED, ICE, CHR, HML +Restricted:Balance, Black Vise, Ivory Tower, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Mind Twist, Rebirth, Tempest Efreet diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1996-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1996-07-01.txt new file mode 100644 index 00000000000..e0c3c8fb859 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1996-07-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type II, 07/01/96 +Type:Historic +Subtype:Standard +Effective:1996-07-01 +Sets:FEM, 4ED, ICE, CHR, HML, ALL +Restricted:Balance, Black Vise, Ivory Tower, Land Tax, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Jeweled Bird, Mind Twist, Rebirth, Tempest Efreet, Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1996-07-10.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1996-07-10.txt new file mode 100644 index 00000000000..6444ba50054 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1996-07-10.txt @@ -0,0 +1,8 @@ +[format] +Name:Type II, Alliances +Type:Historic +Subtype:Standard +Effective:1996-07-10 +Sets:FEM, 4ED, ICE, CHR, HML, ALL +Restricted:Balance, Black Vise, Ivory Tower, Land Tax, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Jeweled Bird, Mind Twist, Rebirth, Tempest Efreet, Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1996-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1996-10-01.txt new file mode 100644 index 00000000000..be0cdc2d578 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1996-10-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type II, 10/01/96 +Type:Historic +Subtype:Standard +Effective:1996-10-01 +Sets:FEM, 4ED, ICE, CHR, HML, ALL +Restricted:Balance, Black Vise, Hymn to Tourach, Ivory Tower, Land Tax, Strip Mine, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Jeweled Bird, Mind Twist, Rebirth, Tempest Efreet, Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1996-11-08.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1996-11-08.txt new file mode 100644 index 00000000000..2b5e387536b --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1996-11-08.txt @@ -0,0 +1,8 @@ +[format] +Name:Type II, Mirage +Type:Historic +Subtype:Standard +Effective:1996-11-08 +Sets:FEM, 4ED, ICE, CHR, HML, ALL, MIR +Restricted:Balance, Black Vise, Hymn to Tourach, Ivory Tower, Land Tax, Strip Mine, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Jeweled Bird, Mind Twist, Rebirth, Tempest Efreet, Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1997-01-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1997-01-01.txt new file mode 100644 index 00000000000..5b77e708b59 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1997-01-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type II, 01/01/97 +Type:Historic +Subtype:Standard +Effective:1997-01-01 +Sets:4ED, CHR, HML, ALL, MIR +Banned:Balance, Black Vise, Bronze Tablet, Channel, Ivory Tower, Jeweled Bird, Land Tax, Mind Twist, Rebirth, Strip Mine, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1997-03-03.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1997-03-03.txt new file mode 100644 index 00000000000..22a2ab5c92d --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1997-03-03.txt @@ -0,0 +1,7 @@ +[format] +Name:Type II, Visions +Type:Historic +Subtype:Standard +Effective:1997-03-03 +Sets:4ED, CHR, ALL, MIR, VIS +Banned:Balance, Black Vise, Bronze Tablet, Channel, Ivory Tower, Jeweled Bird, Land Tax, Mind Twist, Rebirth, Strip Mine, Tempest Efreet \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1997-04-24.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1997-04-24.txt new file mode 100644 index 00000000000..cf7c75cd2ba --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1997-04-24.txt @@ -0,0 +1,6 @@ +[format] +Name:Type II, Fifth Edition +Type:Historic +Subtype:Standard +Effective:1997-04-24 +Sets:ALL, MIR, VIS, 5ED \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1997-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1997-07-01.txt new file mode 100644 index 00000000000..c11ccdb9214 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1997-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Weatherlight +Type:Historic +Subtype:Standard +Effective:1997-07-01 +Sets:ICE, HML, ALL, MIR, VIS, 5ED, WTH +Banned:Amulet of Quoz, Timmerian Fiends, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1997-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1997-11-01.txt new file mode 100644 index 00000000000..055e8064294 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1997-11-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Tempest +Type:Historic +Subtype:Standard +Effective:1997-11-01 +Sets:MIR, VIS, 5ED, WTH, TMP \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1998-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1998-04-01.txt new file mode 100644 index 00000000000..7feb290255c --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1998-04-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Stronghold +Type:Historic +Subtype:Standard +Effective:1998-04-01 +Sets:MIR, VIS, 5ED, WTH, TMP, STH \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1998-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1998-07-01.txt new file mode 100644 index 00000000000..2057850cb39 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1998-07-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Exodus +Type:Historic +Subtype:Standard +Effective:1998-07-01 +Sets:MIR, VIS, 5ED, WTH, TMP, STH, EXO \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1998-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1998-11-01.txt new file mode 100644 index 00000000000..1880a9530c0 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1998-11-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Urza's Saga +Type:Historic +Subtype:Standard +Effective:1998-11-01 +Sets:5ED, TMP, STH, EXO, USG \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1999-01-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1999-01-01.txt new file mode 100644 index 00000000000..a0da86969d8 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1999-01-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, 01/01/99 +Type:Historic +Subtype:Standard +Effective:1999-01-01 +Sets:5ED, TMP, STH, EXO, USG +Banned:Tolarian Academy, Windfall \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1999-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1999-03-01.txt new file mode 100644 index 00000000000..f94f2793253 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1999-03-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Urza's Legacy +Type:Historic +Subtype:Standard +Effective:1999-03-01 +Sets:5ED, TMP, STH, EXO, USG, ULG +Banned:Tolarian Academy, Windfall \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1999-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1999-04-01.txt new file mode 100644 index 00000000000..c45dc654446 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1999-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, 04/01/99 +Type:Historic +Subtype:Standard +Effective:1999-04-01 +Sets:5ED, TMP, STH, EXO, USG, ULG +Banned:Dream Halls, Earthcraft, Fluctuator, Lotus Petal, Memory Jar, Recurring Nightmare, Time Spiral, Tolarian Academy, Windfall \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1999-06-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1999-06-01.txt new file mode 100644 index 00000000000..f70261b5695 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1999-06-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Classic Sixth Edition +Type:Historic +Subtype:Standard +Effective:1999-06-01 +Sets:TMP, STH, EXO, USG, ULG, 6ED +Banned:Dream Halls, Earthcraft, Fluctuator, Lotus Petal, Memory Jar, Recurring Nightmare, Time Spiral, Tolarian Academy, Windfall \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1999-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1999-07-01.txt new file mode 100644 index 00000000000..06924a1191f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1999-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Urza's Destiny +Type:Historic +Subtype:Standard +Effective:1999-07-01 +Sets:TMP, STH, EXO, USG, ULG, 6ED, UDS +Banned:Dream Halls, Earthcraft, Fluctuator, Lotus Petal, Memory Jar, Mind Over Matter, Recurring Nightmare, Time Spiral, Tolarian Academy, Windfall \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1999-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1999-11-01.txt new file mode 100644 index 00000000000..a00ae360809 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/1999-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Mercadian Masques +Type:Historic +Subtype:Standard +Effective:1999-11-01 +Sets:USG, ULG, 6ED, UDS, MMQ +Banned:Fluctuator, Memory Jar, Time Spiral, Tolarian Academy, Windfall \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2000-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2000-03-01.txt new file mode 100644 index 00000000000..897aea93054 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2000-03-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Nemesis +Type:Historic +Subtype:Standard +Effective:2000-03-01 +Sets:USG, ULG, 6ED, UDS, MMQ, NMS +Banned:Fluctuator, Memory Jar, Time Spiral, Tolarian Academy, Windfall \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2000-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2000-07-01.txt new file mode 100644 index 00000000000..e49b2689abe --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2000-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Prophecy +Type:Historic +Subtype:Standard +Effective:2000-07-01 +Sets:USG, ULG, 6ED, UDS, MMQ, NMS, PCY +Banned:Fluctuator, Memory Jar, Time Spiral, Tolarian Academy, Windfall \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2000-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2000-11-01.txt new file mode 100644 index 00000000000..e692f56e761 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2000-11-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Invasion +Type:Historic +Subtype:Standard +Effective:2000-11-01 +Sets:6ED, MMQ, NMS, PCY, INV \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2001-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2001-03-01.txt new file mode 100644 index 00000000000..8b17118d415 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2001-03-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Planeshift +Type:Historic +Subtype:Standard +Effective:2001-03-01 +Sets:6ED, MMQ, NMS, PCY, INV, PLS \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2001-05-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2001-05-01.txt new file mode 100644 index 00000000000..39ce4305df5 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2001-05-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Seventh Edition +Type:Historic +Subtype:Standard +Effective:2001-05-01 +Sets:MMQ, NMS, PCY, INV, PLS, 7ED \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2001-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2001-07-01.txt new file mode 100644 index 00000000000..26f5e76d451 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2001-07-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Apocalypse +Type:Historic +Subtype:Standard +Effective:2001-07-01 +Sets:MMQ, NMS, PCY, INV, PLS, 7ED, APC \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2001-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2001-11-01.txt new file mode 100644 index 00000000000..322864ce946 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2001-11-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Odyssey +Type:Historic +Subtype:Standard +Effective:2001-11-01 +Sets:INV, PLS, 7ED, APC, ODY \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2002-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2002-03-01.txt new file mode 100644 index 00000000000..608e14482c8 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2002-03-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Torment +Type:Historic +Subtype:Standard +Effective:2002-03-01 +Sets:INV, PLS, 7ED, APC, ODY, TOR \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2002-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2002-07-01.txt new file mode 100644 index 00000000000..0d89e3fbe12 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2002-07-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Judgment +Type:Historic +Subtype:Standard +Effective:2002-07-01 +Sets:INV, PLS, 7ED, APC, ODY, TOR, JUD \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2002-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2002-11-01.txt new file mode 100644 index 00000000000..763055fd816 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2002-11-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Onslaught +Type:Historic +Subtype:Standard +Effective:2002-11-01 +Sets:7ED, ODY, TOR, JUD, ONS \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2003-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2003-03-01.txt new file mode 100644 index 00000000000..d7178b28a0d --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2003-03-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Legions +Type:Historic +Subtype:Standard +Effective:2003-03-01 +Sets:7ED, ODY, TOR, JUD, ONS, LGN \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2003-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2003-07-01.txt new file mode 100644 index 00000000000..c1499925e26 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2003-07-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Scourge +Type:Historic +Subtype:Standard +Effective:2003-07-01 +Sets:7ED, ODY, TOR, JUD, ONS, LGN, SCG \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2003-09-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2003-09-01.txt new file mode 100644 index 00000000000..400f8449129 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2003-09-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Eighth Edition +Type:Historic +Subtype:Standard +Effective:2003-09-01 +Sets:ODY, TOR, JUD, ONS, LGN, SCG, 8ED \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2003-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2003-10-20.txt new file mode 100644 index 00000000000..c201c33f5f0 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2003-10-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Mirrodin +Type:Historic +Subtype:Standard +Effective:2003-10-20 +Sets:ONS, LGN, SCG, 8ED, MRD \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2004-02-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2004-02-20.txt new file mode 100644 index 00000000000..742ff26c04b --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2004-02-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Darksteel +Type:Historic +Subtype:Standard +Effective:2004-02-20 +Sets:ONS, LGN, SCG, 8ED, MRD, DST \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2004-06-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2004-06-20.txt new file mode 100644 index 00000000000..1b8e4219e1b --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2004-06-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Fifth Dawn +Type:Historic +Subtype:Standard +Effective:2004-06-20 +Sets:ONS, LGN, SCG, 8ED, MRD, DST, 5DN +Banned:Skullclamp \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2004-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2004-10-20.txt new file mode 100644 index 00000000000..aac0bfe2e49 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2004-10-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Champions of Kamigawa +Type:Historic +Subtype:Standard +Effective:2004-10-20 +Sets:8ED, MRD, DST, 5DN, CHK +Banned:Skullclamp \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2005-02-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2005-02-20.txt new file mode 100644 index 00000000000..24c3cd0bed4 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2005-02-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Betrayers of Kamigawa +Type:Historic +Subtype:Standard +Effective:2005-02-20 +Sets:8ED, MRD, DST, 5DN, CHK, BOK +Banned:Skullclamp \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2005-03-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2005-03-20.txt new file mode 100644 index 00000000000..79a15eb33cd --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2005-03-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, 03/20/05 +Type:Historic +Subtype:Standard +Effective:2005-03-20 +Sets:8ED, MRD, DST, 5DN, CHK, BOK +Banned:Ancient Den, Arcbound Ravager, Darksteel Citadel, Disciple of the Vault, Great Furnace, Seat of the Synod, Skullclamp, Tree of Tales, Vault of Whispers \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2005-06-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2005-06-20.txt new file mode 100644 index 00000000000..68f32ef733a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2005-06-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Saviors of Kamigawa +Type:Historic +Subtype:Standard +Effective:2005-06-20 +Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK +Banned:Ancient Den, Arcbound Ravager, Darksteel Citadel, Disciple of the Vault, Great Furnace, Seat of the Synod, Skullclamp, Tree of Tales, Vault of Whispers \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2005-08-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2005-08-20.txt new file mode 100644 index 00000000000..24143de738f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2005-08-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Ninth Edition +Type:Historic +Subtype:Standard +Effective:2005-08-20 +Sets:MRD, DST, 5DN, CHK, BOK, SOK, 9ED +Banned:Ancient Den, Arcbound Ravager, Darksteel Citadel, Disciple of the Vault, Great Furnace, Seat of the Synod, Skullclamp, Tree of Tales, Vault of Whispers \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2005-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2005-10-20.txt new file mode 100644 index 00000000000..9e647f35485 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/2005-10-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Ravnica: City of Guilds +Type:Historic +Subtype:Standard +Effective:2005-08-20 +Sets:CHK, BOK, SOK, 9ED, RAV \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1996-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1996-10-01.txt new file mode 100644 index 00000000000..e268f2400c4 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1996-10-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type II Alpha, 10/01/96 +Type:Historic +Subtype:Standard +Effective:1996-10-01 +Sets:LEA +Restricted:Balance, Black Vise +Banned:Ancestral Recall, Badlands, Basalt Monolith, Bayou, Berserk, Black Lotus, Blaze of Glory, Braingeyser, Camouflage, Channel, Chaos Orb, Clone, Consecrate Land, Contract from Below, Copper Tablet, Copy Artifact, Cyclopean Tomb, Darkpact, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dwarven Demolition Team, Earthbind, False Orders, Farmstead, Fastbond, Fog, Forcefield, Fork, Gauntlet of Might, Granite Gargoyle, Guardian Angel, Ice Storm, Illusionary Mask, Invisibility, Jade Statue, Juggernaut, Kudzu, Lance, Lich, Living Wall, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Plateau, Psionic Blast, Raging River, Regrowth, Resurrection, Rock Hydra, Roc of Kher Ridges, Sacrifice, Savannah, Scrubland, Sedge Troll, Sinkhole, Sol Ring, Taiga, Timetwister, Time Vault, Time Walk, Tropical Island, Tundra, Two-Headed Giant of Foriys, Underground Sea, Vesuvan Doppelganger, Veteran Bodyguard, Wheel of Fortune, Word of Command \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1996-11-08.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1996-11-08.txt new file mode 100644 index 00000000000..2a772666bad --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1996-11-08.txt @@ -0,0 +1,8 @@ +[format] +Name:Type II Alpha, Mirage +Type:Historic +Subtype:Standard +Effective:1996-11-08 +Sets:LEA +Restricted:Balance, Black Vise +Banned:Ancestral Recall, Badlands, Basalt Monolith, Bayou, Berserk, Black Lotus, Blaze of Glory, Braingeyser, Camouflage, Channel, Chaos Orb, Clone, Consecrate Land, Contract from Below, Copper Tablet, Copy Artifact, Cyclopean Tomb, Darkpact, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dwarven Demolition Team, Earthbind, False Orders, Farmstead, Fastbond, Forcefield, Fork, Gauntlet of Might, Granite Gargoyle, Guardian Angel, Ice Storm, Illusionary Mask, Invisibility, Jade Statue, Juggernaut, Kudzu, Lance, Lich, Living Wall, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Plateau, Psionic Blast, Raging River, Regrowth, Resurrection, Rock Hydra, Roc of Kher Ridges, Sacrifice, Savannah, Scrubland, Sedge Troll, Sinkhole, Sol Ring, Taiga, Timetwister, Time Vault, Time Walk, Tropical Island, Tundra, Two-Headed Giant of Foriys, Underground Sea, Vesuvan Doppelganger, Veteran Bodyguard, Wheel of Fortune, Word of Command \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1997-04-24.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1997-04-24.txt new file mode 100644 index 00000000000..2b95d989050 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1997-04-24.txt @@ -0,0 +1,7 @@ +[format] +Name:Type II Alpha, Fifth Edition +Type:Historic +Subtype:Standard +Effective:1997-04-24 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Badlands, Balance, Basalt Monolith, Bayou, Berserk, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clone, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cyclopean Tomb, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dwarven Demolition Team, Earthbind, Earth Elemental, False Orders, Farmstead, Fastbond, Fire Elemental, Forcefield, Fork, Gaea's Liege, Gauntlet of Might, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Jade Statue, Juggernaut, Jump, Kormus Bell, Kudzu, Lance, Lich, Lifelace, Lightning Bolt, Living Wall, Mahamoti Djinn, Mana Short, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Northern Paladin, Obsianus Golem, Orcish Oriflamme, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Rock Hydra, Roc of Kher Ridges, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Sedge Troll, Sengir Vampire, Serra Angel, Simulacrum, Sinkhole, Siren's Call, Sol Ring, Sunglasses of Urza, Swords to Plowshares, Taiga, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tundra, Tunnel, Two-Headed Giant of Foriys, Underground Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Water, Wall of Wood, Water Elemental, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Word of Command \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1997-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1997-07-01.txt new file mode 100644 index 00000000000..57379da6d62 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1997-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Weatherlight +Type:Historic +Subtype:Standard +Effective:1997-07-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Badlands, Balance, Basalt Monolith, Bayou, Berserk, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clone, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cyclopean Tomb, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dwarven Demolition Team, Earthbind, Earth Elemental, False Orders, Farmstead, Fastbond, Fire Elemental, Forcefield, Fork, Gaea's Liege, Gauntlet of Might, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Ice Storm, Illusionary Mask, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Jade Statue, Juggernaut, Jump, Kormus Bell, Kudzu, Lance, Lich, Lifelace, Lightning Bolt, Living Wall, Mahamoti Djinn, Mana Short, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Northern Paladin, Obsianus Golem, Orcish Oriflamme, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Rock Hydra, Roc of Kher Ridges, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Sedge Troll, Sengir Vampire, Serra Angel, Simulacrum, Sinkhole, Siren's Call, Sol Ring, Sunglasses of Urza, Taiga, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tundra, Tunnel, Two-Headed Giant of Foriys, Underground Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Water, Wall of Wood, Water Elemental, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Word of Command \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1997-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1997-11-01.txt new file mode 100644 index 00000000000..98ed8bbfc0a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1997-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Tempest +Type:Historic +Subtype:Standard +Effective:1997-11-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Badlands, Balance, Basalt Monolith, Bayou, Berserk, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clone, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cyclopean Tomb, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dwarven Demolition Team, Earthbind, Earth Elemental, Evil Presence, False Orders, Farmstead, Fastbond, Fire Elemental, Forcefield, Fork, Gaea's Liege, Gauntlet of Might, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Jade Statue, Juggernaut, Jump, Kormus Bell, Kudzu, Lance, Lich, Lifelace, Lightning Bolt, Living Wall, Mahamoti Djinn, Mana Short, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Northern Paladin, Obsianus Golem, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Rock Hydra, Roc of Kher Ridges, Rod of Ruin, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Sedge Troll, Sengir Vampire, Serra Angel, Simulacrum, Sinkhole, Siren's Call, Sol Ring, Sunglasses of Urza, Swords to Plowshares, Taiga, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tundra, Tunnel, Two-Headed Giant of Foriys, Underground Sea, 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, Word of Command \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1998-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1998-11-01.txt new file mode 100644 index 00000000000..c30d11af8c8 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1998-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Urza's Saga +Type:Historic +Subtype:Standard +Effective:1998-11-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Badlands, Balance, Basalt Monolith, Bayou, Berserk, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clone, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cyclopean Tomb, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dwarven Demolition Team, Earthbind, Earth Elemental, False Orders, Farmstead, Fastbond, Fire Elemental, Forcefield, Fork, Gaea's Liege, Gauntlet of Might, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Invisibility, Jade Statue, Juggernaut, Jump, Kormus Bell, Kudzu, Lance, Lich, Lifelace, Lightning Bolt, Living Wall, Mahamoti Djinn, Mana Short, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Northern Paladin, Obsianus Golem, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Rock Hydra, Roc of Kher Ridges, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Sedge Troll, Sengir Vampire, Serra Angel, Simulacrum, Sinkhole, Siren's Call, Sol Ring, Sunglasses of Urza, Swords to Plowshares, Taiga, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tundra, Tunnel, Two-Headed Giant of Foriys, Underground Sea, 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, Word of Command \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1999-06-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1999-06-01.txt new file mode 100644 index 00000000000..65fe312f307 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/1999-06-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Classic Sixth Edition +Type:Historic +Subtype:Standard +Effective:1999-06-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Clone, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Craw Wurm, Creature Bond, Cursed Land, Cyclopean Tomb, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Demolition Team, Dwarven Warriors, Earthbind, Earth Elemental, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fireball, Forcefield, Force of Nature, Fork, Frozen Shade, Fungusaur, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Hill Giant, The Hive, Holy Armor, Holy Strength, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Instill Energy, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Juggernaut, Jump, Karma, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Lord of the Pit, Magical Hack, Mahamoti Djinn, Mana Flare, Mana Vault, Manabarbs, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Northern Paladin, Obsianus Golem, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Rock Hydra, Roc of Kher Ridges, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Sengir Vampire, Serra Angel, Shivan Dragon, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Spell Blast, Stasis, Steal Artifact, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Terror, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tsunami, Tundra, Tunnel, Twiddle, Two-Headed Giant of Foriys, Underground Sea, Unholy Strength, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Bone, Wall of Brambles, Wall of Ice, Wall of Stone, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Knight, White Ward, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2001-05-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2001-05-01.txt new file mode 100644 index 00000000000..89fe6fcc75e --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2001-05-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Seventh Edition +Type:Historic +Subtype:Standard +Effective:2001-05-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Clone, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Craw Wurm, Creature Bond, Crusade, Cursed Land, Cyclopean Tomb, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Demolition Team, Dwarven Warriors, Earthbind, Earth Elemental, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fireball, Firebreathing, Flashfires, Forcefield, Force of Nature, Fork, Frozen Shade, Fungusaur, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Hill Giant, The Hive, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Instill Energy, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Juggernaut, Jump, Karma, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Manabarbs, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Obsianus Golem, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Rock Hydra, Roc of Kher Ridges, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Sengir Vampire, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Spell Blast, Stasis, Steal Artifact, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Terror, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Underground Sea, Unholy Strength, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Stone, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Knight, White Ward, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2001-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2001-11-01.txt new file mode 100644 index 00000000000..a0e0ebfcf39 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2001-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Odyssey +Type:Historic +Subtype:Standard +Effective:2001-11-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Clone, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Craw Wurm, Creature Bond, Crusade, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Demolition Team, Dwarven Warriors, Earthbind, Earth Elemental, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fireball, Firebreathing, Flashfires, Forcefield, Force of Nature, Fork, Frozen Shade, Fungusaur, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Hill Giant, The Hive, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Instill Energy, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Juggernaut, Jump, Karma, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Manabarbs, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Obsianus Golem, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Rock Hydra, Roc of Kher Ridges, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Sengir Vampire, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Spell Blast, Stasis, Steal Artifact, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Terror, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Underground Sea, Unholy Strength, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Stone, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Knight, White Ward, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2002-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2002-03-01.txt new file mode 100644 index 00000000000..2bf4761a98f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2002-03-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Torment +Type:Historic +Subtype:Standard +Effective:2002-03-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Clone, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Craw Wurm, Creature Bond, Crusade, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Demolition Team, Dwarven Warriors, Earthbind, Earth Elemental, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fireball, Firebreathing, Flashfires, Forcefield, Force of Nature, Fork, Frozen Shade, Fungusaur, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, The Hive, Helm of Chatzuk, Hill Giant, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Instill Energy, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Juggernaut, Jump, Karma, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Manabarbs, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Obsianus Golem, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Rock Hydra, Roc of Kher Ridges, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Spell Blast, Stasis, Steal Artifact, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Terror, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Underground Sea, Unholy Strength, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Stone, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Knight, White Ward, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2002-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2002-11-01.txt new file mode 100644 index 00000000000..9700678b040 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2002-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Onslaught +Type:Historic +Subtype:Standard +Effective:2002-11-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Craw Wurm, Creature Bond, Crusade, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Demolition Team, Dwarven Warriors, Earthbind, Earth Elemental, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fireball, Firebreathing, Flashfires, Forcefield, Force of Nature, Fork, Frozen Shade, Fungusaur, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Hill Giant, The Hive, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Instill Energy, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Juggernaut, Jump, Karma, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Manabarbs, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Obsianus Golem, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantasmal Terrain, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Rock Hydra, Roc of Kher Ridges, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Spell Blast, Stasis, Steal Artifact, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Terror, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Underground Sea, Unholy Strength, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Stone, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Knight, White Ward, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2003-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2003-03-01.txt new file mode 100644 index 00000000000..4820e8e9cd8 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2003-03-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Legions +Type:Historic +Subtype:Standard +Effective:2003-03-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Craw Wurm, Creature Bond, Crusade, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Demolition Team, Dwarven Warriors, Earthbind, Earth Elemental, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fireball, Firebreathing, Flashfires, Forcefield, Force of Nature, Fork, Frozen Shade, Fungusaur, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Hill Giant, The Hive, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Instill Energy, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Juggernaut, Jump, Karma, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Manabarbs, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Obsianus Golem, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantasmal Terrain, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Rock Hydra, Roc of Kher Ridges, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Spell Blast, Stasis, Steal Artifact, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Terror, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Underground Sea, Unholy Strength, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Stone, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2003-09-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2003-09-01.txt new file mode 100644 index 00000000000..6fef52e2eb5 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2003-09-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Eighth Edition +Type:Historic +Subtype:Standard +Effective:2003-09-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Castle, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Counterspell, Creature Bond, Crusade, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dingus Egg, Disenchant, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Warriors, Earthbind, Earth Elemental, Earthquake, Elvish Archers, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fire Elemental, Fireball, Firebreathing, Fog, Forcefield, Force of Nature, Fork, Frozen Shade, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, The Hive, Holy Armor, Howl from Beyond, Hurloon Minotaur, Hurricane, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Instill Energy, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Juggernaut, Jump, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Llanowar Elves, Lord of Atlantis, Lord of the Pit, Magical Hack, Mana Flare, Mana Short, Mana Vault, Manabarbs, Meekstone, Merfolk of the Pearl Trident, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Northern Paladin, Obsianus Golem, Orcish Oriflamme, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantasmal Terrain, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Prodigal Sorcerer, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Reverse Damage, Righteousness, Rock Hydra, Roc of Kher Ridges, Sacrifice, Savannah, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Shanodin Dryads, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Soul Net, Spell Blast, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Terror, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tranquility, Tropical Island, Tsunami, Tundra, Tunnel, Twiddle, Two-Headed Giant of Foriys, Underground Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Bone, Wall of Brambles, Wall of Fire, Wall of Ice, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Ward, Wild Growth, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2003-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2003-10-20.txt new file mode 100644 index 00000000000..64ee2ae14ad --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2003-10-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Mirrodin +Type:Historic +Subtype:Standard +Effective:2003-10-20 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Castle, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Counterspell, Creature Bond, Crusade, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dingus Egg, Disenchant, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Warriors, Earthbind, Earth Elemental, Earthquake, Elvish Archers, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fire Elemental, Fireball, Firebreathing, Fog, Forcefield, Force of Nature, Fork, Frozen Shade, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, The Hive, Holy Armor, Howl from Beyond, Hurloon Minotaur, Hurricane, Hypnotic Specter, Ice Storm, Illusionary Mask, Instill Energy, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Juggernaut, Jump, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Llanowar Elves, Lord of Atlantis, Lord of the Pit, Magical Hack, Mana Flare, Mana Short, Mana Vault, Manabarbs, Meekstone, Merfolk of the Pearl Trident, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Northern Paladin, Obsianus Golem, Orcish Oriflamme, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantasmal Terrain, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Prodigal Sorcerer, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Reverse Damage, Righteousness, Rock Hydra, Roc of Kher Ridges, Sacrifice, Savannah, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Sengir Vampire, Shanodin Dryads, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Soul Net, Spell Blast, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tranquility, Tropical Island, Tsunami, Tundra, Tunnel, Twiddle, Two-Headed Giant of Foriys, Underground Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Bone, Wall of Brambles, Wall of Fire, Wall of Ice, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Ward, Wild Growth, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2004-02-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2004-02-20.txt new file mode 100644 index 00000000000..f42c627ec73 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2004-02-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Darksteel +Type:Historic +Subtype:Standard +Effective:2004-02-20 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Castle, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Counterspell, Creature Bond, Crusade, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dingus Egg, Disenchant, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Warriors, Earthbind, Earth Elemental, Earthquake, Elvish Archers, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fire Elemental, Firebreathing, Fog, Forcefield, Force of Nature, Fork, Frozen Shade, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, The Hive, Holy Armor, Howl from Beyond, Hurloon Minotaur, Hurricane, Hypnotic Specter, Ice Storm, Illusionary Mask, Instill Energy, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Jump, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Llanowar Elves, Lord of Atlantis, Lord of the Pit, Magical Hack, Mana Flare, Mana Short, Mana Vault, Manabarbs, Meekstone, Merfolk of the Pearl Trident, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Northern Paladin, Obsianus Golem, Orcish Oriflamme, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantasmal Terrain, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Prodigal Sorcerer, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Reverse Damage, Righteousness, Rock Hydra, Roc of Kher Ridges, Sacrifice, Savannah, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Sengir Vampire, Shanodin Dryads, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Soul Net, Spell Blast, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tranquility, Tropical Island, Tsunami, Tundra, Tunnel, Twiddle, Two-Headed Giant of Foriys, Underground Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Bone, Wall of Brambles, Wall of Fire, Wall of Ice, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Ward, Wild Growth, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2004-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2004-10-20.txt new file mode 100644 index 00000000000..c4c6fedbaaf --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2004-10-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Champions of Kamigawa +Type:Historic +Subtype:Standard +Effective:2004-10-20 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Castle, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Clone, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Counterspell, Creature Bond, Crusade, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dingus Egg, Disenchant, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Warriors, Earthbind, Earth Elemental, Earthquake, Elvish Archers, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fire Elemental, Firebreathing, Fog, Forcefield, Force of Nature, Fork, Frozen Shade, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, The Hive, Holy Armor, Howl from Beyond, Hurloon Minotaur, Hurricane, Hypnotic Specter, Ice Storm, Illusionary Mask, Instill Energy, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Jump, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Llanowar Elves, Lord of Atlantis, Lord of the Pit, Magical Hack, Mana Flare, Mana Short, Mana Vault, Manabarbs, Meekstone, Merfolk of the Pearl Trident, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Northern Paladin, Obsianus Golem, Orcish Oriflamme, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantasmal Terrain, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Prodigal Sorcerer, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Reverse Damage, Righteousness, Rock Hydra, Roc of Kher Ridges, Sacrifice, Savannah, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Sengir Vampire, Shanodin Dryads, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Soul Net, Spell Blast, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tranquility, Tropical Island, Tsunami, Tundra, Tunnel, Twiddle, Two-Headed Giant of Foriys, Underground Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Bone, Wall of Brambles, Wall of Fire, Wall of Ice, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Knight, White Ward, Wild Growth, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2005-08-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2005-08-20.txt new file mode 100644 index 00000000000..3c259fb6307 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2005-08-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Ninth Edition +Type:Historic +Subtype:Standard +Effective:2005-08-20 +Sets:LEA +Banned:Abyssal Specter, Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Birds of Paradise, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Castle, Celestial Prism, Channel, Chaoslace, Chaos Orb, Circle of Protection: Blue, Circle of Protection: Green, Circle of Protection: White, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Counterspell, Creature Bond, Crusade, Crystal Rod, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dingus Egg, Disenchant, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Demolition Team, Dwarven Warriors, Earthbind, Earth Elemental, Earthquake, Elvish Archers, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fire Elemental, Fog, Forcefield, Fork, Frozen Shade, Fungusaur, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Healing Salve, Helm of Chatzuk, The Hive, Holy Armor, Howl from Beyond, Hurloon Minotaur, Hurricane, Ice Storm, Illusionary Mask, Instill Energy, Invisibility, Iron Star, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Ivory Cup, Jade Monolith, Jayemdae Tome, Jump, Karma, Keldon Warlord, Kormus Bell, Kudzu, Lance, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Lord of Atlantis, Lord of the Pit, Magical Hack, Mana Flare, Mana Short, Mana Vault, Manabarbs, Meekstone, Merfolk of the Pearl Trident, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Northern Paladin, Obsianus Golem, Orcish Oriflamme, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantasmal Terrain, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Prodigal Sorcerer, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Rock Hydra, Roc of Kher Ridges, Sacrifice, Savannah, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Shanodin Dryads, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Soul Net, Spell Blast, Stasis, Steal Artifact, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Thicket Basilisk, Thoughtlace, Throne of Bone, Timber Wolves, Timetwister, Time Vault, Time Walk, Tranquility, Tropical Island, Tsunami, Tundra, Tunnel, Twiddle, Two-Headed Giant of Foriys, Underground Sea, Unsummon, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Air, Wall of Bone, Wall of Brambles, Wall of Fire, Wall of Ice, Wall of Stone, Wall of Swords, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Wheel of Fortune, White Knight, White Ward, Wild Growth, Winter Orb, Wooden Sphere, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2005-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2005-10-20.txt new file mode 100644 index 00000000000..32d53eba197 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Standard/Alpha/2005-10-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Ravnica: City of Guilds +Type:Historic +Subtype:Standard +Effective:2005-10-20 +Sets:LEA +Banned:Abyssal Specter, Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Castle, Celestial Prism, Channel, Chaoslace, Chaos Orb, Circle of Protection: Blue, Circle of Protection: Green, Circle of Protection: White, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Counterspell, Creature Bond, Crusade, Crystal Rod, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dingus Egg, Disenchant, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Demolition Team, Dwarven Warriors, Earthbind, Earth Elemental, Earthquake, Elvish Archers, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fire Elemental, Fireball, Fog, Forcefield, Fork, Frozen Shade, Fungusaur, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Healing Salve, Helm of Chatzuk, The Hive, Holy Armor, Howl from Beyond, Hurloon Minotaur, Hurricane, Ice Storm, Illusionary Mask, Instill Energy, Invisibility, Iron Star, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Ivory Cup, Jade Monolith, Jayemdae Tome, Juggernaut, Jump, Karma, Keldon Warlord, Kormus Bell, Kudzu, Lance, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Lord of Atlantis, Lord of the Pit, Magical Hack, Mana Flare, Mana Short, Mana Vault, Manabarbs, Meekstone, Merfolk of the Pearl Trident, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Northern Paladin, Obsianus Golem, Orcish Oriflamme, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantasmal Terrain, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Prodigal Sorcerer, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Rock Hydra, Roc of Kher Ridges, Sacrifice, Savannah, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Shanodin Dryads, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Soul Net, Spell Blast, Stasis, Steal Artifact, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Terror, Thicket Basilisk, Thoughtlace, Throne of Bone, Timber Wolves, Timetwister, Time Vault, Time Walk, Tranquility, Tropical Island, Tsunami, Tundra, Tunnel, Twiddle, Two-Headed Giant of Foriys, Underground Sea, Unsummon, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Air, Wall of Bone, Wall of Brambles, Wall of Fire, Wall of Ice, Wall of Stone, Wall of Swords, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Wheel of Fortune, White Knight, White Ward, Wild Growth, Winter Orb, Wooden Sphere, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Two-Headed Giant/2005-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Two-Headed Giant/2005-10-20.txt new file mode 100644 index 00000000000..59d67687ef9 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Two-Headed Giant/2005-10-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Ravnica: City of Guilds +Type:Historic +Subtype:Legacy +Effective:2005-10-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, POR, PO2, PTK, S99, S00, RAV +Banned:Amulet of Quoz, Ancestral Recall, Balance, Bazaar of Baghdad, Black Lotus, Black Vise, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Dream Halls, Earthcraft, Entomb, Falling Star, Fastbond, Frantic Search, Goblin Recruiter, Grim Monolith, Gush, Hermit Druid, Illusionary Mask, Imperial Seal, Jeweled Bird, Land Tax, Library of Alexandria, Mana Crypt, Mana Drain, Mana Vault, Memory Jar, Metalworker, Mind Over Matter, Mind Twist, Mind's Desire, Mishra's Workshop, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Necropotence, Oath of Druids, Rebirth, Replenish, Skullclamp, Sol Ring, Strip Mine, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Wheel of Fortune, Windfall, Worldgorger Dragon, Yawgmoth's Bargain, Yawgmoth's Will \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-01-25.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-01-25.txt new file mode 100644 index 00000000000..6c0ace15bf4 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-01-25.txt @@ -0,0 +1,8 @@ +[format] +Name:Official Tournament Rules, 1st edition +Type:Historic +Subtype:Vintage +Effective:1994-01-25 +Sets:LEA, LEB, 2ED, ARN +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, Orcish Oriflamme, Rukh Egg, Sol Ring, Timetwister, Time Vault, Time Walk +Banned:Contract from Below, Darkpact, Demonic Attorney, Jeweled Bird, Shahrazad \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-02-23.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-02-23.txt new file mode 100644 index 00000000000..666df6646c4 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-02-23.txt @@ -0,0 +1,8 @@ +[format] +Name:Official Tournament Rules, revised 2/23/94 +Type:Historic +Subtype:Vintage +Effective:1994-02-23 +Sets:LEA, LEB, 2ED, ARN +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 +Banned:Contract from Below, Darkpact, Demonic Attorney, Jeweled Bird, Shahrazad \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-03-04.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-03-04.txt new file mode 100644 index 00000000000..d599c7268d1 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-03-04.txt @@ -0,0 +1,8 @@ +[format] +Name:Antiquities +Type:Historic +Subtype:Vintage +Effective:1994-03-04 +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 +Banned:Contract from Below; Darkpact; Demonic Attorney; Jeweled Bird; Shahrazad diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-03-23.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-03-23.txt new file mode 100644 index 00000000000..482384289b4 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-03-23.txt @@ -0,0 +1,8 @@ +[format] +Name:Official Tournament Rules, revised 3/23/94 +Type:Historic +Subtype:Vintage +Effective:1994-03-23 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ +Restricted:Ali from Cairo, Ancestral Recall, Berserk, Black Lotus, Braingeyser, Channel, Copy Artifact, Demonic Tutor, Dingus Egg, Gauntlet of Might, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Contract from Below, Darkpact, Demonic Attorney, Jeweled Bird, Shahrazad, Time Vault \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-04.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-04.txt new file mode 100644 index 00000000000..18ba612dfa6 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-04.txt @@ -0,0 +1,8 @@ +[format] +Name:DC, Revised Edition +Type:Historic +Subtype:Vintage +Effective:1994-04-01 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ +Restricted:Ali from Cairo, Ancestral Recall, Berserk, Black Lotus, Braingeyser, Channel, Copy Artifact, Demonic Tutor, Dingus Egg, Gauntlet of Might, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Contract from Below, Darkpact, Demonic Attorney, Jeweled Bird, Shahrazad, Time Vault \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-05.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-05.txt new file mode 100644 index 00000000000..b7c780d58b9 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-05.txt @@ -0,0 +1,8 @@ +[format] +Name:Official Tournament Rules, revised 5/94 +Type:Historic +Subtype:Vintage +Effective:1994-05 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED +Restricted:Ali from Cairo, Ancestral Recall, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Channel, Copy Artifact, Demonic Tutor, Feldon's Cane, Ivory Tower, Library of Alexandria, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Contract from Below, Darkpact, Demonic Attorney, Jeweled Bird, Shahrazad, Time Vault \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-06-10.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-06-10.txt new file mode 100644 index 00000000000..2c0becd7158 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-06-10.txt @@ -0,0 +1,9 @@ +[format] +Name:Legends +Type:Historic +Subtype:Vintage +Effective:1994-06-10 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG +RestrictedLegendary:true +Restricted:Ali from Cairo; Ancestral Recall; Berserk; Black Lotus; Braingeyser; Candelabra of Tawnos; Channel; Copy Artifact; Demonic Tutor; Feldon's Cane; Ivory Tower; Library of Alexandria; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Regrowth; Sol Ring; Timetwister; Time Walk; Wheel of Fortune +Banned:Contract from Below; Darkpact; Demonic Attorney; Jeweled Bird; Shahrazad; Time Vault diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-06-13.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-06-13.txt new file mode 100644 index 00000000000..b3e02f70ba1 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-06-13.txt @@ -0,0 +1,9 @@ +[format] +Name:Official Tournament Rules, 6/13/94 Version +Type:Historic +Subtype:Vintage +Effective:1994-06-13 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG +RestrictedLegendary:true +Restricted:Ali from Cairo, Ancestral Recall, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Channel, Copy Artifact, Demonic Tutor, Feldon's Cane, Ivory Tower, Library of Alexandria, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Bronze Tablet, Contract from Below, Darkpact, Demonic Attorney, Jeweled Bird, Shahrazad, Time Vault \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-08-02.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-08-02.txt new file mode 100644 index 00000000000..74ed7756d09 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-08-02.txt @@ -0,0 +1,9 @@ +[format] +Name:Official Tournament Rules, 8/2/94 Version, give or take +Type:Historic +Subtype:Vintage +Effective:1994-08-02 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG +RestrictedLegendary:true +Restricted:Ali from Cairo, Ancestral Recall, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Channel, Chaos Orb, Copy Artifact, Demonic Tutor, Falling Star, Feldon's Cane, Ivory Tower, Library of Alexandria, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Sword of the Ages, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune +Banned:Bronze Tablet, Contract from Below, Darkpact, Demonic Attorney, Jeweled Bird, Rebirth, Tempest Efreet, Divine Intervention, Shahrazad, Time Vault \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-08-10.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-08-10.txt new file mode 100644 index 00000000000..bf77d86c31c --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-08-10.txt @@ -0,0 +1,9 @@ +[format] +Name:The Dark +Type:Historic +Subtype:Vintage +Effective:1994-08-10 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK +RestrictedLegendary:true +Restricted:Ali from Cairo, Ancestral Recall, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Channel, Chaos Orb, Copy Artifact, Demonic Tutor, Falling Star, Feldon's Cane, Ivory Tower, Library of Alexandria, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Sword of the Ages, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune +Banned:Bronze Tablet, Contract from Below, Darkpact, Demonic Attorney, Jeweled Bird, Rebirth, Tempest Efreet, Divine Intervention, Shahrazad, Time Vault \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-10-10.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-10-10.txt new file mode 100644 index 00000000000..7f3b2619a72 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-10-10.txt @@ -0,0 +1,9 @@ +[format] +Name:Official Tournament Rules, 10/10/94 Version +Type:Historic +Subtype:Vintage +Effective:1994-10-10 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK +RestrictedLegendary:true +Restricted:Ali from Cairo, Ancestral Recall, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Channel, Chaos Orb, Copy Artifact, Demonic Tutor, Falling Star, Feldon's Cane, Ivory Tower, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Sword of the Ages, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune +Banned:Bronze Tablet, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Jeweled Bird, Rebirth, Shahrazad, Time Vault, Tempest Efreet \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-11-15.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-11-15.txt new file mode 100644 index 00000000000..a1895b457b0 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1994-11-15.txt @@ -0,0 +1,9 @@ +[format] +Name:Fallen Empires +Type:Historic +Subtype:Vintage +Effective:1994-11-15 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM +RestrictedLegendary:true +Restricted:Ali from Cairo, Ancestral Recall, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Channel, Chaos Orb, Copy Artifact, Demonic Tutor, Falling Star, Feldon's Cane, Ivory Tower, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Sword of the Ages, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune +Banned:Bronze Tablet, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Jeweled Bird, Rebirth, Shahrazad, Time Vault, Tempest Efreet \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1995-01-10.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1995-01-10.txt new file mode 100644 index 00000000000..c3f23429796 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1995-01-10.txt @@ -0,0 +1,9 @@ +[format] +Name:Type I, 1/10/95 +Type:Historic +Subtype:Vintage +Effective:1995-01-10 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM +RestrictedLegendary:true +Restricted:Ali from Cairo, Ancestral Recall, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Channel, Chaos Orb, Copy Artifact, Demonic Tutor, Falling Star, Feldon's Cane, Ivory Tower, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Sword of the Ages, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune +Banned:Bronze Tablet, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Jeweled Bird, Rebirth, Shahrazad, Time Vault, Tempest Efreet \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1995-04-19.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1995-04-19.txt new file mode 100644 index 00000000000..fbb3087af51 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1995-04-19.txt @@ -0,0 +1,8 @@ +[format] +Name:Type I, Fourth Edition +Type:Historic +Subtype:Vintage +Effective:1995-04-19 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED +Restricted:Ali from Cairo, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Channel, Chaos Orb, Copy Artifact, Demonic Tutor, Falling Star, Feldon's Cane, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Sword of the Ages, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune +Banned:Bronze Tablet, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Jeweled Bird, Rebirth, Shahrazad, Time Vault, Tempest Efreet \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1995-06.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1995-06.txt new file mode 100644 index 00000000000..a42085956b4 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1995-06.txt @@ -0,0 +1,8 @@ +[format] +Name:Type I, Ice Age +Type:Historic +Subtype:Vintage +Effective:1995-06 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE +Restricted:Ali from Cairo, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Channel, Chaos Orb, Copy Artifact, Demonic Tutor, Falling Star, Feldon's Cane, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Sword of the Ages, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune +Banned:Bronze Tablet, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Jeweled Bird, Rebirth, Shahrazad, Time Vault, Tempest Efreet \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1995-07-13.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1995-07-13.txt new file mode 100644 index 00000000000..54a672ad8c0 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1995-07-13.txt @@ -0,0 +1,8 @@ +[format] +Name:Type I, July 13, 1995 +Type:Historic +Subtype:Vintage +Effective:1995-07-13 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR +Restricted:Ali from Cairo, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Channel, Chaos Orb, Copy Artifact, Demonic Tutor, Falling Star, Feldon's Cane, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Sword of the Ages, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune +Banned:Amulet of Quoz, Bronze Tablet, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Jeweled Bird, Rebirth, Shahrazad, Time Vault, Tempest Efreet \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1995-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1995-11-01.txt new file mode 100644 index 00000000000..3ae65d19114 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1995-11-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type I, 11/01/95 +Type:Historic +Subtype:Vintage +Effective:1995-11-01 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR +Restricted:Ali from Cairo, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Copy Artifact, Demonic Tutor, Feldon's Cane, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Sword of the Ages, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Rebirth, Shahrazad, Time Vault, Tempest Efreet \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1995-11-13.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1995-11-13.txt new file mode 100644 index 00000000000..61f22dda3e1 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1995-11-13.txt @@ -0,0 +1,8 @@ +[format] +Name:Type I, Homelands +Type:Historic +Subtype:Vintage +Effective:1995-11-13 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML +Restricted:Ali from Cairo, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Copy Artifact, Demonic Tutor, Feldon's Cane, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Sword of the Ages, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Rebirth, Shahrazad, Time Vault, Tempest Efreet \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1996-02-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1996-02-01.txt new file mode 100644 index 00000000000..e06b411dbf4 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1996-02-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type I, 02/01/96 +Type:Historic +Subtype:Vintage +Effective:1996-02-01 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML +Restricted:Ali from Cairo, Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Candelabra of Tawnos, Copy Artifact, Demonic Tutor, 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, Sword of the Ages, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Time Vault, Tempest Efreet \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1996-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1996-04-01.txt new file mode 100644 index 00000000000..9355376bf54 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1996-04-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type I, 04/01/96 +Type:Historic +Subtype:Vintage +Effective:1996-04-01 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Copy Artifact, Demonic Tutor, 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 +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1996-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1996-07-01.txt new file mode 100644 index 00000000000..79ae1c01ed0 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1996-07-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type I, 07/01/96 +Type:Historic +Subtype:Vintage +Effective:1996-07-01 +Sets:LEA, LEB, 2ED, ARN, DRC94, ATQ, 3ED, LEG, DRK, ARENA, FEM, WW, SHC, FS, 4ED, ICE, CHR, HML +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Copy Artifact, Demonic Tutor, Feldon's Cane, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1996-07-10.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1996-07-10.txt new file mode 100644 index 00000000000..19c5f1dfd75 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1996-07-10.txt @@ -0,0 +1,8 @@ +[format] +Name:Type I, Alliances +Type:Historic +Subtype:Vintage +Effective:1996-07-10 +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, Feldon's Cane, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1996-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1996-10-01.txt new file mode 100644 index 00000000000..4940d57fb30 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1996-10-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type I, 10/01/96 +Type:Historic +Subtype:Vintage +Effective:1996-10-01 +Sets: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 Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1996-11-08.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1996-11-08.txt new file mode 100644 index 00000000000..84e9fcf2847 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1996-11-08.txt @@ -0,0 +1,8 @@ +[format] +Name:Type I, Mirage +Type:Historic +Subtype:Vintage +Effective:1996-11-08 +Sets: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 Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1997-03-03.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1997-03-03.txt new file mode 100644 index 00000000000..0a1de061da1 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1997-03-03.txt @@ -0,0 +1,8 @@ +[format] +Name:Type I, Visions +Type:Historic +Subtype:Vintage +Effective:1997-03-03 +Sets: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 Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1997-04-24.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1997-04-24.txt new file mode 100644 index 00000000000..8ad4b587bcd --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1997-04-24.txt @@ -0,0 +1,8 @@ +[format] +Name:Type I, Fifth Edition +Type:Historic +Subtype:Vintage +Effective:1997-04-24 +Sets: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 Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1997-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1997-07-01.txt new file mode 100644 index 00000000000..0d349d6751b --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1997-07-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Classic, Weatherlight +Type:Historic +Subtype:Vintage +Effective:1997-07-01 +Sets: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 Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1997-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1997-10-01.txt new file mode 100644 index 00000000000..372be203eb1 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1997-10-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Classic, 10/01/97 +Type:Historic +Subtype:Vintage +Effective:1997-10-01 +Sets: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, Demonic Tutor, Fastbond, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mirror Universe, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Strip Mine, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1997-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1997-11-01.txt new file mode 100644 index 00000000000..97b065d1217 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1997-11-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Classic, Tempest +Type:Historic +Subtype:Vintage +Effective:1997-11-01 +Sets: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 Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Strip Mine, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1998-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1998-04-01.txt new file mode 100644 index 00000000000..614368161de --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1998-04-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Classic, Stronghold +Type:Historic +Subtype:Vintage +Effective:1998-04-01 +Sets: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 Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Strip Mine, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1998-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1998-07-01.txt new file mode 100644 index 00000000000..0891c923832 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1998-07-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Classic, Exodus +Type:Historic +Subtype:Vintage +Effective:1998-07-01 +Sets: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 Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Strip Mine, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1998-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1998-11-01.txt new file mode 100644 index 00000000000..9f8c961ada9 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1998-11-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Classic, Urza's Saga +Type:Historic +Subtype:Vintage +Effective:1998-11-01 +Sets: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 Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Strip Mine, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-01-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-01-01.txt new file mode 100644 index 00000000000..869878838bf --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-01-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Classic, 01/01/99 +Type:Historic +Subtype:Vintage +Effective:1999-01-01 +Sets: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 Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Walk, Tolarian Academy, Underworld Dreams, Wheel of Fortune, Windfall +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-03-01.txt new file mode 100644 index 00000000000..6e8bb6341d5 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-03-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Classic, Urza's Legacy +Type:Historic +Subtype:Vintage +Effective:1999-03-01 +Sets: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 Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Walk, Tolarian Academy, Underworld Dreams, Wheel of Fortune, Windfall +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-04-01.txt new file mode 100644 index 00000000000..758d7509edc --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-04-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Classic, 04/01/99 +Type:Historic +Subtype:Vintage +Effective:1999-04-01 +Sets: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, Memory Jar, Mirror Universe, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tolarian Academy, Underworld Dreams, Wheel of Fortune, Windfall +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-06-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-06-01.txt new file mode 100644 index 00000000000..c566fbb61a8 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-06-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Classic, Classic Sixth Edition +Type:Historic +Subtype:Vintage +Effective:1999-06-01 +Sets: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, Memory Jar, Mirror Universe, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tolarian Academy, Underworld Dreams, Wheel of Fortune, Windfall +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-07-01.txt new file mode 100644 index 00000000000..6cf7db958b5 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-07-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Classic, Urza's Destiny +Type:Historic +Subtype:Vintage +Effective:1999-07-01 +Sets: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, Memory Jar, Mirror Universe, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tolarian Academy, Underworld Dreams, Wheel of Fortune, Windfall +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-10-01.txt new file mode 100644 index 00000000000..ea1520e9997 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-10-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, 10/01/99 +Type:Historic +Subtype:Vintage +Effective:1999-10-01 +Sets: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, Crop Rotation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-11-01.txt new file mode 100644 index 00000000000..d0976a8bbc5 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/1999-11-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, Mercadian Masques +Type:Historic +Subtype:Vintage +Effective:1999-10-01 +Sets: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, MMQ +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Crop Rotation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2000-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2000-03-01.txt new file mode 100644 index 00000000000..4bd5f526ec4 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2000-03-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, Nemesis +Type:Historic +Subtype:Vintage +Effective:2000-03-01 +Sets: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, MMQ, NMS +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Crop Rotation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2000-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2000-07-01.txt new file mode 100644 index 00000000000..f93972c634e --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2000-07-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, Prophecy +Type:Historic +Subtype:Vintage +Effective:2000-07-01 +Sets: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, MMQ, NMS, PCY +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Crop Rotation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2000-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2000-10-01.txt new file mode 100644 index 00000000000..c4d6eb7def2 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2000-10-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, 10/01/00 +Type:Historic +Subtype:Vintage +Effective:2000-10-01 +Sets: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, MMQ, NMS, PCY +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2000-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2000-11-01.txt new file mode 100644 index 00000000000..6f2a2984200 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2000-11-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, Invasion +Type:Historic +Subtype:Vintage +Effective:2000-11-01 +Sets: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, MMQ, NMS, PCY, INV +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2001-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2001-03-01.txt new file mode 100644 index 00000000000..27c7afdf0cf --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2001-03-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, Planeshift +Type:Historic +Subtype:Vintage +Effective:2001-03-01 +Sets: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, MMQ, NMS, PCY, INV, PLS +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2001-05-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2001-05-01.txt new file mode 100644 index 00000000000..7024995be24 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2001-05-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, Seventh Edition +Type:Historic +Subtype:Vintage +Effective:2001-05-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2001-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2001-07-01.txt new file mode 100644 index 00000000000..448cabacf8a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2001-07-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, Apocalypse +Type:Historic +Subtype:Vintage +Effective:2001-07-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2001-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2001-11-01.txt new file mode 100644 index 00000000000..01a4230ec50 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2001-11-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, Odyssey +Type:Historic +Subtype:Vintage +Effective:2001-11-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2002-01-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2002-01-01.txt new file mode 100644 index 00000000000..ed1b7901008 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2002-01-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, 01/01/02 +Type:Historic +Subtype:Vintage +Effective:2002-01-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fact or Fiction, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2002-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2002-03-01.txt new file mode 100644 index 00000000000..6196acc26ca --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2002-03-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, Torment +Type:Historic +Subtype:Vintage +Effective:2002-03-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fact or Fiction, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2002-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2002-07-01.txt new file mode 100644 index 00000000000..0359da7620c --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2002-07-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, Judgment +Type:Historic +Subtype:Vintage +Effective:2002-07-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fact or Fiction, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2002-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2002-11-01.txt new file mode 100644 index 00000000000..6d2926a2b85 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2002-11-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, Onslaught +Type:Historic +Subtype:Vintage +Effective:2002-11-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fact or Fiction, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2003-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2003-03-01.txt new file mode 100644 index 00000000000..db126d89cbf --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2003-03-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, Legions +Type:Historic +Subtype:Vintage +Effective:2003-03-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fact or Fiction, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2003-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2003-04-01.txt new file mode 100644 index 00000000000..397669a363a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2003-04-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, Legions +Type:Historic +Subtype:Vintage +Effective:2003-03-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Fork, Frantic Search, Grim Monolith, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2003-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2003-07-01.txt new file mode 100644 index 00000000000..e56eb98d056 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2003-07-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, Scourge +Type:Historic +Subtype:Vintage +Effective:2003-07-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Fork, Frantic Search, Grim Monolith, Gush, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2003-09-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2003-09-01.txt new file mode 100644 index 00000000000..3ce84ffccbd --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2003-09-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, Eighth Edition +Type:Historic +Subtype:Vintage +Effective:2003-09-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Fork, Frantic Search, Grim Monolith, Gush, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2003-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2003-11-01.txt new file mode 100644 index 00000000000..d7670fdfacf --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2003-11-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, Mirrodin +Type:Historic +Subtype:Vintage +Effective:2003-11-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Fork, Frantic Search, Grim Monolith, Gush, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2004-01-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2004-01-01.txt new file mode 100644 index 00000000000..bf228e1d7eb --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2004-01-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, 01/01/04 +Type:Historic +Subtype:Vintage +Effective:2004-01-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Braingeyser, Burning Wish, Channel, Chrome Mox, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Fork, Frantic Search, Grim Monolith, Gush, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2004-03-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2004-03-01.txt new file mode 100644 index 00000000000..829919e1599 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2004-03-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, Darksteel +Type:Historic +Subtype:Vintage +Effective:2004-03-01 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Braingeyser, Burning Wish, Channel, Chrome Mox, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Fork, Frantic Search, Grim Monolith, Gush, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2004-06-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2004-06-20.txt new file mode 100644 index 00000000000..602dedd10ac --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2004-06-20.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1, Fifth Dawn +Type:Historic +Subtype:Vintage +Effective:2004-06-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Braingeyser, Burning Wish, Channel, Chrome Mox, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Fork, Frantic Search, Grim Monolith, Gush, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2004-09-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2004-09-20.txt new file mode 100644 index 00000000000..9b4ebebd4aa --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2004-09-20.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, 09/20/04 +Type:Historic +Subtype:Vintage +Effective:2004-09-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Burning Wish, Channel, Chrome Mox, Crop Rotation, Demonic Consultation, Demonic Tutor, Dream Halls, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Frantic Search, Grim Monolith, Gush, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2004-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2004-10-20.txt new file mode 100644 index 00000000000..0f1ac625bbb --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2004-10-20.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Champions of Kamigawa +Type:Historic +Subtype:Vintage +Effective:2004-10-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Burning Wish, Channel, Chrome Mox, Crop Rotation, Demonic Consultation, Demonic Tutor, Dream Halls, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Frantic Search, Grim Monolith, Gush, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2004-12-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2004-12-20.txt new file mode 100644 index 00000000000..f14f7d9cb03 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2004-12-20.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, 12/20/04 +Type:Historic +Subtype:Vintage +Effective:2004-12-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Burning Wish, Channel, Chrome Mox, Crop Rotation, Demonic Consultation, Demonic Tutor, Dream Halls, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Frantic Search, Grim Monolith, Gush, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Stroke of Genius, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2005-02-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2005-02-20.txt new file mode 100644 index 00000000000..ab00170d240 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2005-02-20.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Betrayers of Kamigawa +Type:Historic +Subtype:Vintage +Effective:2005-02-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Burning Wish, Channel, Chrome Mox, Crop Rotation, Demonic Consultation, Demonic Tutor, Dream Halls, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Frantic Search, Grim Monolith, Gush, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Stroke of Genius, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2005-03-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2005-03-20.txt new file mode 100644 index 00000000000..f34298d3e74 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2005-03-20.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, 03/20/05 +Type:Historic +Subtype:Vintage +Effective:2005-03-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Burning Wish, Channel, Chrome Mox, Crop Rotation, Demonic Consultation, Demonic Tutor, Dream Halls, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Frantic Search, Grim Monolith, Gush, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Trinisphere, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Stroke of Genius, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2005-06-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2005-06-20.txt new file mode 100644 index 00000000000..fe9a55a9717 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2005-06-20.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Saviors of Kamigawa +Type:Historic +Subtype:Vintage +Effective:2005-06-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Burning Wish, Channel, Chrome Mox, Crop Rotation, Demonic Consultation, Demonic Tutor, Dream Halls, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Frantic Search, Grim Monolith, Gush, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Trinisphere, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Stroke of Genius, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2005-08-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2005-08-20.txt new file mode 100644 index 00000000000..98e16f45c4e --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2005-08-20.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Ninth Edition +Type:Historic +Subtype:Vintage +Effective:2005-08-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Burning Wish, Channel, Chrome Mox, Crop Rotation, Demonic Consultation, Demonic Tutor, Dream Halls, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Frantic Search, Grim Monolith, Gush, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Trinisphere, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Stroke of Genius, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2005-09-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2005-09-20.txt new file mode 100644 index 00000000000..d8904e2e1d5 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2005-09-20.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, 09/20/05 +Type:Historic +Subtype:Vintage +Effective:2005-09-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Burning Wish, Channel, Chrome Mox, Crop Rotation, Demonic Consultation, Demonic Tutor, Dream Halls, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Frantic Search, Grim Monolith, Gush, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Trinisphere, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Stroke of Genius, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2005-10-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2005-10-20.txt new file mode 100644 index 00000000000..29bf4734f77 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/2005-10-20.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Ravnica: City of Guilds +Type:Historic +Subtype:Vintage +Effective:2005-10-20 +Sets: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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, POR, PO2, PTK, S99, S00, RAV +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Burning Wish, Channel, Chrome Mox, Crop Rotation, Demonic Consultation, Demonic Tutor, Dream Halls, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Frantic Search, Grim Monolith, Gush, Imperial Seal, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Personal Tutor, Regrowth, Sol Ring, Strip Mine, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Trinisphere, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Stroke of Genius, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/Alpha/1996-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/Alpha/1996-10-01.txt new file mode 100644 index 00000000000..6041efff665 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/Alpha/1996-10-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type I Alpha, 10/01/96 +Type:Historic +Subtype:Vintage +Effective:1996-10-01 +Sets:LEA +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Copy Artifact, Demonic Tutor, Fastbond, Fork, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Mind Twist \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/Alpha/1997-07-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/Alpha/1997-07-01.txt new file mode 100644 index 00000000000..a67d4c2d457 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/Alpha/1997-07-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Classic Alpha, 07/01/97 +Type:Historic +Subtype:Vintage +Effective:1997-07-01 +Sets:LEA +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Copy Artifact, Demonic Tutor, Fastbond, Fork, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Mind Twist \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/Alpha/1998-11-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/Alpha/1998-11-01.txt new file mode 100644 index 00000000000..a75f5a5cfe6 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/Alpha/1998-11-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Classic Alpha, 11/01/98 +Type:Historic +Subtype:Vintage +Effective:1998-11-01 +Sets:LEA +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Demonic Tutor, Fastbond, Fork, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Mind Twist \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/Alpha/2000-10-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/Alpha/2000-10-01.txt new file mode 100644 index 00000000000..b75cf527269 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/Alpha/2000-10-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1 Alpha, 10/01/00 +Type:Historic +Subtype:Vintage +Effective:2000-10-01 +Sets:LEA +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Channel, Demonic Tutor, Fastbond, Fork, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Chaos Orb, Contract from Below, Darkpact, Demonic Attorney \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/Alpha/2003-04-01.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/Alpha/2003-04-01.txt new file mode 100644 index 00000000000..28d2a705231 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/Alpha/2003-04-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1 Alpha, 04/01/03 +Type:Historic +Subtype:Vintage +Effective:2003-04-01 +Sets:LEA +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Braingeyser, Channel, Demonic Tutor, Fastbond, Fork, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Chaos Orb, Contract from Below, Darkpact, Demonic Attorney \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/Alpha/2004-09-20.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/Alpha/2004-09-20.txt new file mode 100644 index 00000000000..36ef8ecd8dc --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/Vintage/Alpha/2004-09-20.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage Alpha, 09/20/04 +Type:Historic +Subtype:Vintage +Effective:2004-09-20 +Sets:LEA +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Channel, Demonic Tutor, Fastbond, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Chaos Orb, Contract from Below, Darkpact, Demonic Attorney \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Ice Age Block Constructed, Coldsnap.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Ice Age Block Constructed, Coldsnap.txt new file mode 100644 index 00000000000..b328003169a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Ice Age Block Constructed, Coldsnap.txt @@ -0,0 +1,7 @@ +[format] +Name:Ice Age Block Constructed, Coldsnap +Type:Historic +Subtype:Block +Order:390 +Sets:ICE, ALL, CSP +Banned:Amulet of Quoz; Thawing Glaciers; Zuran Orb diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Innistrad Block Constructed, April 2012.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Innistrad Block Constructed, April 2012.txt new file mode 100644 index 00000000000..a6b050a3ca0 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Innistrad Block Constructed, April 2012.txt @@ -0,0 +1,7 @@ +[format] +Name:Innistrad Block Constructed, April 2012 +Type:Historic +Subtype:Block +Order:521 +Sets:ISD, DKA +Banned:Intangible Virtue; Lingering Souls diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Innistrad Block Constructed, Avacyn Restored.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Innistrad Block Constructed, Avacyn Restored.txt new file mode 100644 index 00000000000..7559bb2237b --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Innistrad Block Constructed, Avacyn Restored.txt @@ -0,0 +1,7 @@ +[format] +Name:Innistrad Block Constructed, Avacyn Restored +Type:Historic +Subtype:Block +Order:522 +Sets:ISD, DKA, AVR +Banned:Intangible Virtue; Lingering Souls diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Innistrad Block Constructed, Dark Ascension.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Innistrad Block Constructed, Dark Ascension.txt new file mode 100644 index 00000000000..0c56a86ed62 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Innistrad Block Constructed, Dark Ascension.txt @@ -0,0 +1,6 @@ +[format] +Name:Innistrad Block Constructed, Dark Ascension +Type:Historic +Subtype:Block +Order:515 +Sets:ISD, DKA diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Innistrad Block Constructed, Innistrad.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Innistrad Block Constructed, Innistrad.txt new file mode 100644 index 00000000000..7fa44c40509 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Innistrad Block Constructed, Innistrad.txt @@ -0,0 +1,6 @@ +[format] +Name:Innistrad Block Constructed, Innistrad +Type:Historic +Subtype:Block +Order:505 +Sets:ISD diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Lorwyn Block Constructed, Lorwyn.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Lorwyn Block Constructed, Lorwyn.txt new file mode 100644 index 00000000000..3318a0e2bc8 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Lorwyn Block Constructed, Lorwyn.txt @@ -0,0 +1,6 @@ +[format] +Name:Lorwyn Block Constructed, Lorwyn +Type:Historic +Subtype:Block +Order:421 +Sets:LRW diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Lorwyn Block Constructed, Morningtide.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Lorwyn Block Constructed, Morningtide.txt new file mode 100644 index 00000000000..71b72943c16 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Lorwyn Block Constructed, Morningtide.txt @@ -0,0 +1,6 @@ +[format] +Name:Lorwyn Block Constructed, Morningtide +Type:Historic +Subtype:Block +Order:426 +Sets:LRW, MOR diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Lorwyn-Shadowmoor Block Constructed, Eventide.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Lorwyn-Shadowmoor Block Constructed, Eventide.txt new file mode 100644 index 00000000000..ba6db6ead3d --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Lorwyn-Shadowmoor Block Constructed, Eventide.txt @@ -0,0 +1,6 @@ +[format] +Name:Lorwyn-Shadowmoor Block Constructed, Eventide +Type:Historic +Subtype:Block +Order:437 +Sets:LRW, MOR, SHM, EVE diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Lorwyn-Shadowmoor Block Constructed, Shadowmoor.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Lorwyn-Shadowmoor Block Constructed, Shadowmoor.txt new file mode 100644 index 00000000000..17a7b721682 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Lorwyn-Shadowmoor Block Constructed, Shadowmoor.txt @@ -0,0 +1,6 @@ +[format] +Name:Lorwyn-Shadowmoor Block Constructed, Shadowmoor +Type:Historic +Subtype:Block +Order:431 +Sets:LRW, MOR, SHM diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Mirrodin Block Constructed, Mar 2006.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Mirrodin Block Constructed, Mar 2006.txt new file mode 100644 index 00000000000..b0967bb53c6 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Mirrodin Block Constructed, Mar 2006.txt @@ -0,0 +1,7 @@ +[format] +Name:Mirrodin Block Constructed, Mar 2006 +Type:Historic +Subtype:Block +Order:383 +Sets:MRD, DST, 5DN +Banned:Aether Vial; Ancient Den; Arcbound Ravager; Darksteel Citadel; Disciple of the Vault; Great Furnace; Seat of the Synod; Skullclamp; Tree of Tales; Vault of Whispers diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Ravnica Block Constructed, Dissension.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Ravnica Block Constructed, Dissension.txt new file mode 100644 index 00000000000..81ab9af096a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Ravnica Block Constructed, Dissension.txt @@ -0,0 +1,6 @@ +[format] +Name:Ravnica Block Constructed, Dissension +Type:Historic +Subtype:Block +Order:385 +Sets:RAV, GPT, DIS diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Ravnica Block Constructed, Guildpact.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Ravnica Block Constructed, Guildpact.txt new file mode 100644 index 00000000000..85d6fdb8ad2 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Ravnica Block Constructed, Guildpact.txt @@ -0,0 +1,6 @@ +[format] +Name:Ravnica Block Constructed, Guildpact +Type:Historic +Subtype:Block +Order:379 +Sets:RAV, GPT diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Scars of Mirrodin Block Constructed, Mirrodin Besieged.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Scars of Mirrodin Block Constructed, Mirrodin Besieged.txt new file mode 100644 index 00000000000..9972d3d4190 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Scars of Mirrodin Block Constructed, Mirrodin Besieged.txt @@ -0,0 +1,6 @@ +[format] +Name:Scars of Mirrodin Block Constructed, Mirrodin Besieged +Type:Historic +Subtype:Block +Order:489 +Sets:SOM, MBS diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Scars of Mirrodin Block Constructed, New Phyrexia.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Scars of Mirrodin Block Constructed, New Phyrexia.txt new file mode 100644 index 00000000000..d44d5689fe4 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Scars of Mirrodin Block Constructed, New Phyrexia.txt @@ -0,0 +1,6 @@ +[format] +Name:Scars of Mirrodin Block Constructed, New Phyrexia +Type:Historic +Subtype:Block +Order:494 +Sets:SOM, MBS, NPH diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Scars of Mirrodin Block Constructed, Scars of Mirrodin.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Scars of Mirrodin Block Constructed, Scars of Mirrodin.txt new file mode 100644 index 00000000000..ba718bfdac9 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Scars of Mirrodin Block Constructed, Scars of Mirrodin.txt @@ -0,0 +1,6 @@ +[format] +Name:Scars of Mirrodin Block Constructed, Scars of Mirrodin +Type:Historic +Subtype:Block +Order:483 +Sets:SOM diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Shards of Alara Block Constructed, Alara Reborn.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Shards of Alara Block Constructed, Alara Reborn.txt new file mode 100644 index 00000000000..7ca87b971f5 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Shards of Alara Block Constructed, Alara Reborn.txt @@ -0,0 +1,6 @@ +[format] +Name:Shards of Alara Block Constructed, Alara Reborn +Type:Historic +Subtype:Block +Order:455 +Sets:ALA, CFX, ARB diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Shards of Alara Block Constructed, Conflux.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Shards of Alara Block Constructed, Conflux.txt new file mode 100644 index 00000000000..1907c72516e --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Shards of Alara Block Constructed, Conflux.txt @@ -0,0 +1,6 @@ +[format] +Name:Shards of Alara Block Constructed, Conflux +Type:Historic +Subtype:Block +Order:450 +Sets:ALA, CFX diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Shards of Alara Block Constructed, Shards of Alara.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Shards of Alara Block Constructed, Shards of Alara.txt new file mode 100644 index 00000000000..f14cb4a7005 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Shards of Alara Block Constructed, Shards of Alara.txt @@ -0,0 +1,6 @@ +[format] +Name:Shards of Alara Block Constructed, Shards of Alara +Type:Historic +Subtype:Block +Order:445 +Sets:ALA diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Time Spiral Block Constructed, Future Sight.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Time Spiral Block Constructed, Future Sight.txt new file mode 100644 index 00000000000..809f659b2b6 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Time Spiral Block Constructed, Future Sight.txt @@ -0,0 +1,6 @@ +[format] +Name:Time Spiral Block Constructed, Future Sight +Type:Historic +Subtype:Block +Order:405 +Sets:TSP, TSB, PLC, FUT diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Time Spiral Block Constructed, Planar Chaos.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Time Spiral Block Constructed, Planar Chaos.txt new file mode 100644 index 00000000000..285519d0577 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Time Spiral Block Constructed, Planar Chaos.txt @@ -0,0 +1,6 @@ +[format] +Name:Time Spiral Block Constructed, Planar Chaos +Type:Historic +Subtype:Block +Order:400 +Sets:TSP, TSB, PLC diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Time Spiral Block Constructed, Time Spiral.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Time Spiral Block Constructed, Time Spiral.txt new file mode 100644 index 00000000000..01d1e7a4ad9 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Time Spiral Block Constructed, Time Spiral.txt @@ -0,0 +1,6 @@ +[format] +Name:Time Spiral Block Constructed, Time Spiral +Type:Historic +Subtype:Block +Order:395 +Sets:TSP, TSB diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Zendikar Block Constructed, Rise of the Eldrazi.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Zendikar Block Constructed, Rise of the Eldrazi.txt new file mode 100644 index 00000000000..e33ebae2b3b --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Zendikar Block Constructed, Rise of the Eldrazi.txt @@ -0,0 +1,6 @@ +[format] +Name:Zendikar Block Constructed, Rise of the Eldrazi +Type:Historic +Subtype:Block +Order:472 +Sets:ZEN, WWK, ROE diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Zendikar Block Constructed, Worldwake.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Zendikar Block Constructed, Worldwake.txt new file mode 100644 index 00000000000..85336d907a6 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Zendikar Block Constructed, Worldwake.txt @@ -0,0 +1,6 @@ +[format] +Name:Zendikar Block Constructed, Worldwake +Type:Historic +Subtype:Block +Order:467 +Sets:ZEN, WWK diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Zendikar Block Constructed, Zendikar.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Zendikar Block Constructed, Zendikar.txt new file mode 100644 index 00000000000..c1b1f190f69 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Block/Zendikar Block Constructed, Zendikar.txt @@ -0,0 +1,6 @@ +[format] +Name:Zendikar Block Constructed, Zendikar +Type:Historic +Subtype:Block +Order:462 +Sets:ZEN diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Alara Reborn.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Alara Reborn.txt new file mode 100644 index 00000000000..e2a73297b5f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Alara Reborn.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Alara Reborn +Type:Historic +Subtype:Extended +Order:452 +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 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Avacyn Restored.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Avacyn Restored.txt new file mode 100644 index 00000000000..cdf4ed149cd --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Avacyn Restored.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Avacyn Restored +Type:Historic +Subtype:Extended +Order:525 +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 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Coldsnap.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Coldsnap.txt new file mode 100644 index 00000000000..ac8dfff8328 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Coldsnap.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Coldsnap +Type:Historic +Subtype:Extended +Order:391 +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 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Conflux.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Conflux.txt new file mode 100644 index 00000000000..9d60aacc4a6 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Conflux.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Conflux +Type:Historic +Subtype:Extended +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 +Banned:Aether Vial; Disciple of the Vault; Sensei's Divining Top; Skullclamp diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Dark Ascension.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Dark Ascension.txt new file mode 100644 index 00000000000..ea555592a2e --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Dark Ascension.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Dark Ascension +Type:Historic +Subtype:Extended +Order:518 +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 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Dissension.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Dissension.txt new file mode 100644 index 00000000000..37b15181f99 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Dissension.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Dissension +Type:Historic +Subtype:Extended +Order:386 +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 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Eventide.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Eventide.txt new file mode 100644 index 00000000000..2bd24d337f8 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Eventide.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Eventide +Type:Historic +Subtype:Extended +Order:434 +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 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Future Sight.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Future Sight.txt new file mode 100644 index 00000000000..8d6c59ec24d --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Future Sight.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Future Sight +Type:Historic +Subtype:Extended +Order:406 +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 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Guildpact.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Guildpact.txt new file mode 100644 index 00000000000..614238a8d6b --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Guildpact.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Guildpact +Type:Historic +Subtype:Extended +Order:380 +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 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Innistrad.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Innistrad.txt new file mode 100644 index 00000000000..546d59fc049 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Innistrad.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, Innistrad +Type:Historic +Subtype:Extended +Order:508 +Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, July 2010.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, July 2010.txt new file mode 100644 index 00000000000..4bfa210c8e8 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, July 2010.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, July 2010 +Type:Historic +Subtype:Extended +Order:477 +Sets:TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE +Banned:Hypergenesis; Sword of the Meek diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Lorwyn.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Lorwyn.txt new file mode 100644 index 00000000000..4118968941f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Lorwyn.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Lorwyn +Type:Historic +Subtype:Extended +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 +Banned:Aether Vial; Disciple of the Vault; Entomb; Skullclamp diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Magic 2010.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Magic 2010.txt new file mode 100644 index 00000000000..8da097594b5 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Magic 2010.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Magic 2010 +Type:Historic +Subtype:Extended +Order:458 +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 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Magic 2011.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Magic 2011.txt new file mode 100644 index 00000000000..c97f71ecfd9 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Magic 2011.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Magic 2011 +Type:Historic +Subtype:Extended +Order:480 +Sets:TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11 +Banned:Hypergenesis; Sword of the Meek diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Magic 2012.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Magic 2012.txt new file mode 100644 index 00000000000..5656f03e727 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Magic 2012.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, Magic 2012 +Type:Historic +Subtype:Extended +Order:501 +Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Magic 2013.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Magic 2013.txt new file mode 100644 index 00000000000..37c77bb97cc --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Magic 2013.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Magic 2013 +Type:Historic +Subtype:Extended +Order:531 +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 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Mirrodin Besieged.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Mirrodin Besieged.txt new file mode 100644 index 00000000000..2ae104ec513 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Mirrodin Besieged.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, Mirrodin Besieged +Type:Historic +Subtype:Extended +Order:491 +Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Morningtide.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Morningtide.txt new file mode 100644 index 00000000000..7ce53469898 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Morningtide.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Morningtide +Type:Historic +Subtype:Extended +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 +Banned:Aether Vial; Disciple of the Vault; Entomb; Skullclamp diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, New Phyrexia.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, New Phyrexia.txt new file mode 100644 index 00000000000..de230133aae --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, New Phyrexia.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, New Phyrexia +Type:Historic +Subtype:Extended +Order:496 +Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, October 2011.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, October 2011.txt new file mode 100644 index 00000000000..8f21e52539c --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, October 2011.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, October 2011 +Type:Historic +Subtype:Extended +Order:512 +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 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Planar Chaos.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Planar Chaos.txt new file mode 100644 index 00000000000..0d0b9a678cf --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Planar Chaos.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Planar Chaos +Type:Historic +Subtype:Extended +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 +Banned:Aether Vial; Disciple of the Vault; Entomb; Skullclamp diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Rise of the Eldrazi.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Rise of the Eldrazi.txt new file mode 100644 index 00000000000..045f15e0341 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Rise of the Eldrazi.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Rise of the Eldrazi +Type:Historic +Subtype:Extended +Order:474 +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 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Scars of Mirrodin.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Scars of Mirrodin.txt new file mode 100644 index 00000000000..3ae1c6d278b --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Scars of Mirrodin.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, Scars of Mirrodin +Type:Historic +Subtype:Extended +Order:485 +Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Sep 2008.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Sep 2008.txt new file mode 100644 index 00000000000..0c77530af27 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Sep 2008.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Sep 2008 +Type:Historic +Subtype:Extended +Order:438 +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 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Shadowmoor.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Shadowmoor.txt new file mode 100644 index 00000000000..1dd5efe03ed --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Shadowmoor.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Shadowmoor +Type:Historic +Subtype:Extended +Order:428 +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 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Shards of Alara.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Shards of Alara.txt new file mode 100644 index 00000000000..643bcbd9789 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Shards of Alara.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Shards of Alara +Type:Historic +Subtype:Extended +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 +Banned:Aether Vial; Disciple of the Vault; Sensei's Divining Top; Skullclamp diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Tenth Edition.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Tenth Edition.txt new file mode 100644 index 00000000000..eda0043f5a8 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Tenth Edition.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Tenth Edition +Type:Historic +Subtype:Extended +Order:412 +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 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Time Spiral.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Time Spiral.txt new file mode 100644 index 00000000000..564c6360c86 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Time Spiral.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Time Spiral +Type:Historic +Subtype:Extended +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 +Banned:Aether Vial; Disciple of the Vault; Entomb; Skullclamp diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Worldwake.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Worldwake.txt new file mode 100644 index 00000000000..0fef83b67b6 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Worldwake.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Worldwake +Type:Historic +Subtype:Extended +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 +Banned:Aether Vial; Disciple of the Vault; Sensei's Divining Top; Skullclamp diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Zendikar.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Zendikar.txt new file mode 100644 index 00000000000..50490edac5f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended, Zendikar.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, Zendikar +Type:Historic +Subtype:Extended +Order:464 +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 +Banned:Aether Vial; Disciple of the Vault; Sensei's Divining Top; Skullclamp diff --git a/forge-gui/res/formats/Extended.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended.txt similarity index 90% rename from forge-gui/res/formats/Extended.txt rename to forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended.txt index daae09e31b6..da63a34d9ea 100644 --- a/forge-gui/res/formats/Extended.txt +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Extended/Extended.txt @@ -1,6 +1,7 @@ [format] Name:Extended Order:107 +Subtype:Extended Type:Historic Sets:SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, M14, THS, BNG, JOU, M15 Banned:Ponder; Mental Misstep diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Alara Reborn.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Alara Reborn.txt new file mode 100644 index 00000000000..d5af69c8e10 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Alara Reborn.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Alara Reborn +Type:Historic +Subtype:Legacy +Order:453 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Dream Halls; Earthcraft; Entomb; Fastbond; Flash; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Metalworker; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Avacyn Restored.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Avacyn Restored.txt new file mode 100644 index 00000000000..e8e7c2e7332 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Avacyn Restored.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Avacyn Restored +Type:Historic +Subtype:Legacy +Order:526 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Earthcraft; Fastbond; Flash; Frantic Search; Goblin Recruiter; Gush; Hermit Druid; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Survival of the Fittest; Tempest Efreet; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Coldsnap.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Coldsnap.txt new file mode 100644 index 00000000000..6d0afabe2de --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Coldsnap.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Coldsnap +Type:Historic +Subtype:Legacy +Order:392 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Dream Halls; Earthcraft; Entomb; Fastbond; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Metalworker; Mind Over Matter; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Replenish; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Conflux.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Conflux.txt new file mode 100644 index 00000000000..cfd6256da68 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Conflux.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Conflux +Type:Historic +Subtype:Legacy +Order:448 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Dream Halls; Earthcraft; Entomb; Fastbond; Flash; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Metalworker; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Dark Ascension.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Dark Ascension.txt new file mode 100644 index 00000000000..1e34c7aef87 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Dark Ascension.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Dark Ascension +Type:Historic +Subtype:Legacy +Order:519 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD, DKA +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Earthcraft; Fastbond; Flash; Frantic Search; Goblin Recruiter; Gush; Hermit Druid; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Survival of the Fittest; Tempest Efreet; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Dissension.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Dissension.txt new file mode 100644 index 00000000000..876b655e8b2 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Dissension.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Dissension +Type:Historic +Subtype:Legacy +Order:387 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Dream Halls; Earthcraft; Entomb; Fastbond; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Metalworker; Mind Over Matter; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Replenish; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Eventide.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Eventide.txt new file mode 100644 index 00000000000..67d3bf3942e --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Eventide.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Eventide +Type:Historic +Subtype:Legacy +Order:436 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Dream Halls; Earthcraft; Entomb; Fastbond; Flash; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Metalworker; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Future Sight.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Future Sight.txt new file mode 100644 index 00000000000..ba196ec70fd --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Future Sight.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Future Sight +Type:Historic +Subtype:Legacy +Order:407 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Dream Halls; Earthcraft; Entomb; Fastbond; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Metalworker; Mind Over Matter; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Replenish; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Guildpact.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Guildpact.txt new file mode 100644 index 00000000000..e059777f33f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Guildpact.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Guildpact +Type:Historic +Subtype:Legacy +Order:381 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Dream Halls; Earthcraft; Entomb; Fastbond; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Metalworker; Mind Over Matter; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Replenish; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Innistrad.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Innistrad.txt new file mode 100644 index 00000000000..e4cdeac4646 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Innistrad.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Innistrad +Type:Historic +Subtype:Legacy +Order:509 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Earthcraft; Fastbond; Flash; Frantic Search; Goblin Recruiter; Gush; Hermit Druid; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Survival of the Fittest; Tempest Efreet; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, January 2011.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, January 2011.txt new file mode 100644 index 00000000000..b5d48c7bc07 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, January 2011.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, January 2011 +Type:Historic +Subtype:Legacy +Order:488 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Earthcraft; Fastbond; Flash; Frantic Search; Goblin Recruiter; Gush; Hermit Druid; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Survival of the Fittest; Tempest Efreet; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, July 2010.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, July 2010.txt new file mode 100644 index 00000000000..19954ee1401 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, July 2010.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, July 2010 +Type:Historic +Subtype:Legacy +Order:478 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Earthcraft; Fastbond; Flash; Frantic Search; Goblin Recruiter; Gush; Hermit Druid; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, July 2012.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, July 2012.txt new file mode 100644 index 00000000000..50f9ee9a531 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, July 2012.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, July 2012 +Type:Historic +Subtype:Legacy +Order:528 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Earthcraft; Fastbond; Flash; Frantic Search; Goblin Recruiter; Gush; Hermit Druid; Imperial Seal; Jeweled Bird; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Survival of the Fittest; Tempest Efreet; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Jun 2007.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Jun 2007.txt new file mode 100644 index 00000000000..28363b433f8 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Jun 2007.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Jun 2007 +Type:Historic +Subtype:Legacy +Order:410 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Dream Halls; Earthcraft; Entomb; Fastbond; Flash; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Metalworker; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Lorwyn.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Lorwyn.txt new file mode 100644 index 00000000000..e6d5fc7869c --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Lorwyn.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Lorwyn +Type:Historic +Subtype:Legacy +Order:420 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Dream Halls; Earthcraft; Entomb; Fastbond; Flash; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Metalworker; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Magic 2010.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Magic 2010.txt new file mode 100644 index 00000000000..3744e455f87 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Magic 2010.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Magic 2010 +Type:Historic +Subtype:Legacy +Order:459 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10 +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Dream Halls; Earthcraft; Entomb; Fastbond; Flash; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Metalworker; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Magic 2011.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Magic 2011.txt new file mode 100644 index 00000000000..d23df019e72 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Magic 2011.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Magic 2011 +Type:Historic +Subtype:Legacy +Order:481 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11 +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Earthcraft; Fastbond; Flash; Frantic Search; Goblin Recruiter; Gush; Hermit Druid; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Magic 2012.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Magic 2012.txt new file mode 100644 index 00000000000..77b1f0f2041 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Magic 2012.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Magic 2012 +Type:Historic +Subtype:Legacy +Order:502 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12 +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Earthcraft; Fastbond; Flash; Frantic Search; Goblin Recruiter; Gush; Hermit Druid; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Survival of the Fittest; Tempest Efreet; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Magic 2013.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Magic 2013.txt new file mode 100644 index 00000000000..bda2c99cb91 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Magic 2013.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Magic 2013 +Type:Historic +Subtype:Legacy +Order:532 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13 +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Earthcraft; Fastbond; Flash; Frantic Search; Goblin Recruiter; Gush; Hermit Druid; Imperial Seal; Jeweled Bird; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Survival of the Fittest; Tempest Efreet; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Mirrodin Besieged.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Mirrodin Besieged.txt new file mode 100644 index 00000000000..1e762627aa7 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Mirrodin Besieged.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Mirrodin Besieged +Type:Historic +Subtype:Legacy +Order:492 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Earthcraft; Fastbond; Flash; Frantic Search; Goblin Recruiter; Gush; Hermit Druid; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Survival of the Fittest; Tempest Efreet; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Morningtide.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Morningtide.txt new file mode 100644 index 00000000000..e908462cc8a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Morningtide.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Morningtide +Type:Historic +Subtype:Legacy +Order:425 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Dream Halls; Earthcraft; Entomb; Fastbond; Flash; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Metalworker; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, New Phyrexia.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, New Phyrexia.txt new file mode 100644 index 00000000000..a92595a5355 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, New Phyrexia.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, New Phyrexia +Type:Historic +Subtype:Legacy +Order:497 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Earthcraft; Fastbond; Flash; Frantic Search; Goblin Recruiter; Gush; Hermit Druid; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Survival of the Fittest; Tempest Efreet; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, October 2009.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, October 2009.txt new file mode 100644 index 00000000000..7e7df9107ff --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, October 2009.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, October 2009 +Type:Historic +Subtype:Legacy +Order:461 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10 +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Earthcraft; Fastbond; Flash; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Planar Chaos.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Planar Chaos.txt new file mode 100644 index 00000000000..45360873289 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Planar Chaos.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Planar Chaos +Type:Historic +Subtype:Legacy +Order:402 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Dream Halls; Earthcraft; Entomb; Fastbond; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Metalworker; Mind Over Matter; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Replenish; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Rise of the Eldrazi.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Rise of the Eldrazi.txt new file mode 100644 index 00000000000..0466a58959b --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Rise of the Eldrazi.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Rise of the Eldrazi +Type:Historic +Subtype:Legacy +Order:475 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Earthcraft; Fastbond; Flash; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Scars of Mirrodin.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Scars of Mirrodin.txt new file mode 100644 index 00000000000..7da06df7509 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Scars of Mirrodin.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Scars of Mirrodin +Type:Historic +Subtype:Legacy +Order:486 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Earthcraft; Fastbond; Flash; Frantic Search; Goblin Recruiter; Gush; Hermit Druid; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Sep 2007.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Sep 2007.txt new file mode 100644 index 00000000000..1f78e75c271 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Sep 2007.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Sep 2007 +Type:Historic +Subtype:Legacy +Order:416 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Dream Halls; Earthcraft; Entomb; Fastbond; Flash; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Metalworker; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Sep 2008.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Sep 2008.txt new file mode 100644 index 00000000000..4aa969563ca --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Sep 2008.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Sep 2008 +Type:Historic +Subtype:Legacy +Order:439 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Dream Halls; Earthcraft; Entomb; Fastbond; Flash; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Metalworker; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Shadowmoor.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Shadowmoor.txt new file mode 100644 index 00000000000..53708fec0d2 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Shadowmoor.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Shadowmoor +Type:Historic +Subtype:Legacy +Order:430 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Dream Halls; Earthcraft; Entomb; Fastbond; Flash; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Metalworker; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Shards of Alara.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Shards of Alara.txt new file mode 100644 index 00000000000..37298a838f6 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Shards of Alara.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Shards of Alara +Type:Historic +Subtype:Legacy +Order:443 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Dream Halls; Earthcraft; Entomb; Fastbond; Flash; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Metalworker; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Tenth Edition.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Tenth Edition.txt new file mode 100644 index 00000000000..19cc44daaf5 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Tenth Edition.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Tenth Edition +Type:Historic +Subtype:Legacy +Order:414 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Dream Halls; Earthcraft; Entomb; Fastbond; Flash; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Metalworker; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Time Spiral.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Time Spiral.txt new file mode 100644 index 00000000000..084ac8171db --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Time Spiral.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Time Spiral +Type:Historic +Subtype:Legacy +Order:397 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Dream Halls; Earthcraft; Entomb; Fastbond; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Metalworker; Mind Over Matter; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Replenish; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Worldwake.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Worldwake.txt new file mode 100644 index 00000000000..dd4a1369cce --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Worldwake.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Worldwake +Type:Historic +Subtype:Legacy +Order:470 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Earthcraft; Fastbond; Flash; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Zendikar.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Zendikar.txt new file mode 100644 index 00000000000..109b13d1ae8 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Legacy/Legacy, Zendikar.txt @@ -0,0 +1,7 @@ +[format] +Name:Legacy, Zendikar +Type:Historic +Subtype:Legacy +Order:465 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN +Banned:Amulet of Quoz; Ancestral Recall; Balance; Bazaar of Baghdad; Black Vise; Bronze Tablet; Channel; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Demonic Consultation; Demonic Tutor; Earthcraft; Fastbond; Flash; Frantic Search; Goblin Recruiter; Grim Monolith; Gush; Hermit Druid; Illusionary Mask; Imperial Seal; Jeweled Bird; Land Tax; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Rebirth; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Tempest Efreet; Time Spiral; Time Vault; Time Walk; Timetwister; Timmerian Fiends; Tinker; Tolarian Academy; Vampiric Tutor; Wheel of Fortune; Windfall; Worldgorger Dragon; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, August 2011.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, August 2011.txt new file mode 100644 index 00000000000..996ab723415 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, August 2011.txt @@ -0,0 +1,7 @@ +[format] +Name:Modern, August 2011 +Type:Historic +Subtype:Modern +Order:504 +Sets:8ED, 9ED, 10E, M10, M11, M12, MRD, DST, 5DN, CHK, BOK, SOK, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, LRW, MOR, SHM, EVE, ALA, CFX, ARB, ZEN, WWK, ROE, SOM, MBS, NPH +Banned:Ancestral Vision; Ancient Den; Bitterblossom; Chrome Mox; Dark Depths; Dread Return; Glimpse of Nature; Golgari Grave-Troll; Great Furnace; Hypergenesis; Jace, the Mind Sculptor; Mental Misstep; Seat of the Synod; Sensei's Divining Top; Skullclamp; Stoneforge Mystic; Sword of the Meek; Tree of Tales; Umezawa's Jitte; Valakut, the Molten Pinnacle; Vault of Whispers diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, Avacyn Restored.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, Avacyn Restored.txt new file mode 100644 index 00000000000..dc9e955346b --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, Avacyn Restored.txt @@ -0,0 +1,7 @@ +[format] +Name:Modern, Avacyn Restored +Type:Historic +Subtype:Modern +Order:524 +Sets:8ED, 9ED, 10E, M10, M11, M12, MRD, DST, 5DN, CHK, BOK, SOK, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, LRW, MOR, SHM, EVE, ALA, CFX, ARB, ZEN, WWK, ROE, SOM, MBS, NPH, ISD, DKA, AVR +Banned:Ancestral Vision; Ancient Den; Bitterblossom; Blazing Shoal; Chrome Mox; Cloudpost; Dark Depths; Dread Return; Glimpse of Nature; Golgari Grave-Troll; Great Furnace; Green Sun's Zenith; Hypergenesis; Jace, the Mind Sculptor; Mental Misstep; Ponder; Preordain; Punishing Fire; Rite of Flame; Seat of the Synod; Sensei's Divining Top; Skullclamp; Stoneforge Mystic; Sword of the Meek; Tree of Tales; Umezawa's Jitte; Valakut, the Molten Pinnacle; Vault of Whispers; Wild Nacatl diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, Dark Ascension.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, Dark Ascension.txt new file mode 100644 index 00000000000..ee6c311ffc6 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, Dark Ascension.txt @@ -0,0 +1,7 @@ +[format] +Name:Modern, Dark Ascension +Type:Historic +Subtype:Modern +Order:517 +Sets:8ED, 9ED, 10E, M10, M11, M12, MRD, DST, 5DN, CHK, BOK, SOK, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, LRW, MOR, SHM, EVE, ALA, CFX, ARB, ZEN, WWK, ROE, SOM, MBS, NPH, ISD, DKA +Banned:Ancestral Vision; Ancient Den; Bitterblossom; Blazing Shoal; Chrome Mox; Cloudpost; Dark Depths; Dread Return; Glimpse of Nature; Golgari Grave-Troll; Great Furnace; Green Sun's Zenith; Hypergenesis; Jace, the Mind Sculptor; Mental Misstep; Ponder; Preordain; Punishing Fire; Rite of Flame; Seat of the Synod; Sensei's Divining Top; Skullclamp; Stoneforge Mystic; Sword of the Meek; Tree of Tales; Umezawa's Jitte; Valakut, the Molten Pinnacle; Vault of Whispers; Wild Nacatl diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, Innistrad.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, Innistrad.txt new file mode 100644 index 00000000000..ac04bc5308c --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, Innistrad.txt @@ -0,0 +1,7 @@ +[format] +Name:Modern, Innistrad +Type:Historic +Subtype:Modern +Order:507 +Sets:8ED, 9ED, 10E, M10, M11, M12, MRD, DST, 5DN, CHK, BOK, SOK, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, LRW, MOR, SHM, EVE, ALA, CFX, ARB, ZEN, WWK, ROE, SOM, MBS, NPH, ISD +Banned:Ancestral Vision; Ancient Den; Bitterblossom; Chrome Mox; Dark Depths; Dread Return; Glimpse of Nature; Golgari Grave-Troll; Great Furnace; Hypergenesis; Jace, the Mind Sculptor; Mental Misstep; Seat of the Synod; Sensei's Divining Top; Skullclamp; Stoneforge Mystic; Sword of the Meek; Tree of Tales; Umezawa's Jitte; Valakut, the Molten Pinnacle; Vault of Whispers diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, January 2012.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, January 2012.txt new file mode 100644 index 00000000000..244b4dbfe34 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, January 2012.txt @@ -0,0 +1,7 @@ +[format] +Name:Modern, January 2012 +Type:Historic +Subtype:Modern +Order:514 +Sets:8ED, 9ED, 10E, M10, M11, M12, MRD, DST, 5DN, CHK, BOK, SOK, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, LRW, MOR, SHM, EVE, ALA, CFX, ARB, ZEN, WWK, ROE, SOM, MBS, NPH, ISD +Banned:Ancestral Vision; Ancient Den; Bitterblossom; Blazing Shoal; Chrome Mox; Cloudpost; Dark Depths; Dread Return; Glimpse of Nature; Golgari Grave-Troll; Great Furnace; Green Sun's Zenith; Hypergenesis; Jace, the Mind Sculptor; Mental Misstep; Ponder; Preordain; Punishing Fire; Rite of Flame; Seat of the Synod; Sensei's Divining Top; Skullclamp; Stoneforge Mystic; Sword of the Meek; Tree of Tales; Umezawa's Jitte; Valakut, the Molten Pinnacle; Vault of Whispers; Wild Nacatl diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, Magic 2013.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, Magic 2013.txt new file mode 100644 index 00000000000..b581b8da8cc --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, Magic 2013.txt @@ -0,0 +1,7 @@ +[format] +Name:Modern, Magic 2013 +Type:Historic +Subtype:Modern +Order:530 +Sets:8ED, 9ED, 10E, M10, M11, M12, MRD, DST, 5DN, CHK, BOK, SOK, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, LRW, MOR, SHM, EVE, ALA, CFX, ARB, ZEN, WWK, ROE, SOM, MBS, NPH, ISD, DKA, AVR, M13 +Banned:Ancestral Vision; Ancient Den; Bitterblossom; Blazing Shoal; Chrome Mox; Cloudpost; Dark Depths; Dread Return; Glimpse of Nature; Golgari Grave-Troll; Great Furnace; Green Sun's Zenith; Hypergenesis; Jace, the Mind Sculptor; Mental Misstep; Ponder; Preordain; Punishing Fire; Rite of Flame; Seat of the Synod; Sensei's Divining Top; Skullclamp; Stoneforge Mystic; Sword of the Meek; Tree of Tales; Umezawa's Jitte; Valakut, the Molten Pinnacle; Vault of Whispers; Wild Nacatl diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, October 2011.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, October 2011.txt new file mode 100644 index 00000000000..81a038ece21 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Modern/Modern, October 2011.txt @@ -0,0 +1,7 @@ +[format] +Name:Modern, October 2011 +Type:Historic +Subtype:Modern +Order:511 +Sets:8ED, 9ED, 10E, M10, M11, M12, MRD, DST, 5DN, CHK, BOK, SOK, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, LRW, MOR, SHM, EVE, ALA, CFX, ARB, ZEN, WWK, ROE, SOM, MBS, NPH, ISD +Banned:Ancestral Vision; Ancient Den; Bitterblossom; Blazing Shoal; Chrome Mox; Cloudpost; Dark Depths; Dread Return; Glimpse of Nature; Golgari Grave-Troll; Great Furnace; Green Sun's Zenith; Hypergenesis; Jace, the Mind Sculptor; Mental Misstep; Ponder; Preordain; Rite of Flame; Seat of the Synod; Sensei's Divining Top; Skullclamp; Stoneforge Mystic; Sword of the Meek; Tree of Tales; Umezawa's Jitte; Valakut, the Molten Pinnacle; Vault of Whispers diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Aether Revolt.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Aether Revolt.txt new file mode 100644 index 00000000000..7a9f480185c --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Aether Revolt.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Aether Revolt +Type:Historic +Subtype:Standard +Effective:2017-01-20 +Sets:BFZ, OGW, SOI, EMN, KLD, AER +Banned: Emrakul, the Promised End; Reflector Mage; Smuggler's Copter diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Alara Reborn.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Alara Reborn.txt new file mode 100644 index 00000000000..96df96b2e3f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Alara Reborn.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Alara Reborn +Type:Historic +Subtype:Standard +Order:451 +Sets:10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Amonkhet.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Amonkhet.txt new file mode 100644 index 00000000000..1b00a119622 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Amonkhet.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Amonkhet +Type:Historic +Subtype:Standard +Effective:2017-04-28 +Sets:BFZ, OGW, SOI, EMN, KLD, AER, AKH +Banned: Emrakul, the Promised End; Reflector Mage; Smuggler's Copter; Felidar Guardian diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Avacyn Restored.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Avacyn Restored.txt new file mode 100644 index 00000000000..1f20ece5293 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Avacyn Restored.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Avacyn Restored +Type:Historic +Subtype:Standard +Effective:2012-05-04 +Sets:SOM, MBS, NPH, M12, ISD, DKA, AVR diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Battle for Zendikar.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Battle for Zendikar.txt new file mode 100644 index 00000000000..0bb48e1cd97 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Battle for Zendikar.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Battle for Zendikar +Type:Historic +Subtype:Standard +Effective:2015-10-02 +Sets:KTK, FRF, DTK, ORI, BFZ diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Born of the Gods.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Born of the Gods.txt new file mode 100644 index 00000000000..bc0a139d484 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Born of the Gods.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Born of the Gods +Type:Historic +Subtype:Standard +Effective:2014-02-07 +Sets:RTR, GTC, DGM, M14, THS, BNG diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Coldsnap.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Coldsnap.txt new file mode 100644 index 00000000000..13afc493625 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Coldsnap.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Coldsnap +Type:Historic +Subtype:Standard +Order:389 +Sets:9ED, CHK, BOK, SOK, RAV, GPT, DIS, CSP diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Conflux.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Conflux.txt new file mode 100644 index 00000000000..775a0581476 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Conflux.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Conflux +Type:Historic +Subtype:Standard +Order:446 +Sets:10E, LRW, MOR, SHM, EVE, ALA, CFX diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Dark Ascension.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Dark Ascension.txt new file mode 100644 index 00000000000..b087c23e82a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Dark Ascension.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Dark Ascension +Type:Historic +Subtype:Standard +Effective:2012-05-04 +Sets:SOM, MBS, NPH, M12, ISD, DKA diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Dissension.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Dissension.txt new file mode 100644 index 00000000000..faeb8287491 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Dissension.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Dissension +Type:Historic +Subtype:Standard +Order:384 +Sets:9ED, CHK, BOK, SOK, RAV, GPT, DIS diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Dragons Maze.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Dragons Maze.txt new file mode 100644 index 00000000000..c995a1d0201 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Dragons Maze.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Dragon's Maze +Type:Historic +Subtype:Standard +Effective:2013-05-03 +Sets:ISD, DKA, AVR, M13, RTR, GTC, DGM diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Dragons of Tarkir.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Dragons of Tarkir.txt new file mode 100644 index 00000000000..c4c65ccb5ee --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Dragons of Tarkir.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Dragons of Tarkir +Type:Historic +Subtype:Standard +Effective:2015-03-27 +Sets:THS, BNG, JOU, M15, KTK, FRF, DTK + diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Eldritch Moon.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Eldritch Moon.txt new file mode 100644 index 00000000000..0f41fb256fe --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Eldritch Moon.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Eldritch Moon +Type:Historic +Subtype:Standard +Effective:2016-07-22 +Sets:DTK, ORI, BFZ, OGW, SOI, EMN diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Eventide.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Eventide.txt new file mode 100644 index 00000000000..86bdafabbb9 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Eventide.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Eventide +Type:Historic +Subtype:Standard +Order:433 +Sets:10E, CSP, TSP, TSB, PLC, FUT, LRW, MOR, SHM, EVE diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Fate Reforged.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Fate Reforged.txt new file mode 100644 index 00000000000..9bc4f4a793c --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Fate Reforged.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Fate Reforged +Type:Historic +Subtype:Standard +Effective:2015-01-23 +Sets:THS, BNG, JOU, M15, KTK, FRF diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Future Sight.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Future Sight.txt new file mode 100644 index 00000000000..dcb0bda87f0 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Future Sight.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Future Sight +Type:Historic +Subtype:Standard +Order:404 +Sets:9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Gatecrash.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Gatecrash.txt new file mode 100644 index 00000000000..59ea03f51f8 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Gatecrash.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Gatecrash +Type:Historic +Subtype:Standard +Effective:2013-02-01 +Sets:ISD, DKA, AVR, M13, RTR, GTC diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Guildpact.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Guildpact.txt new file mode 100644 index 00000000000..6d11fd066f9 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Guildpact.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Guildpact +Type:Historic +Subtype:Standard +Order:378 +Sets:9ED, CHK, BOK, SOK, RAV, GPT diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Hour of Devastation.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Hour of Devastation.txt new file mode 100644 index 00000000000..a4d96b2bbb4 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Hour of Devastation.txt @@ -0,0 +1,8 @@ +[format] +Name:Standard, Hour of Devastation +Type:Historic +Subtype:Standard +Effective:2017-07-14 +Sets:BFZ, OGW, SOI, EMN, KLD, AER, AKH, HOU +Banned: Emrakul, the Promised End; Reflector Mage; Smuggler's Copter; Aetherworks Marvel; Felidar Guardian + diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Innistrad.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Innistrad.txt new file mode 100644 index 00000000000..07ed32a45cd --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Innistrad.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Innistrad +Type:Historic +Subtype:Standard +Order:506 +Sets:SOM, MBS, NPH, M12, ISD diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Ixalan.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Ixalan.txt new file mode 100644 index 00000000000..b62bf37d04e --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Ixalan.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Ixalan +Type:Historic +Subtype:Standard +Effective:2017-09-29 +Sets:KLD, AER, AKH, W17, HOU, XLN +Banned: Attune with Aether; Rogue Refiner; Rampaging Ferocidon; Ramunap Ruins; Smuggler's Copter; Aetherworks Marvel; Felidar Guardian diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Journey into Nyx.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Journey into Nyx.txt new file mode 100644 index 00000000000..6dadbfa44f1 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Journey into Nyx.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Journey into Nyx +Type:Historic +Subtype:Standard +Effective:2014-05-02 +Sets:RTR, GTC, DGM, M14, THS, BNG, JOU diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, July 2011.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, July 2011.txt new file mode 100644 index 00000000000..4d5670fd586 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, July 2011.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, July 2011 +Type:Historic +Subtype:Standard +Order:499 +Sets:ZEN, WWK, ROE, M11, SOM, MBS, NPH +Banned:Jace, the Mind Sculptor; Stoneforge Mystic diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Kaladesh.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Kaladesh.txt new file mode 100644 index 00000000000..55edcce61cf --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Kaladesh.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Kaladesh +Type:Historic +Subtype:Standard +Effective:2016-09-30 +Sets:BFZ, OGW, SOI, EMN, KLD + diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Khans of Tarkir.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Khans of Tarkir.txt new file mode 100644 index 00000000000..6b9a97a56da --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Khans of Tarkir.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Khans of Tarkir +Type:Historic +Subtype:Standard +Effective:2014-09-26 +Sets:THS, BNG, JOU, M15, KTK diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Lorwyn.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Lorwyn.txt new file mode 100644 index 00000000000..ceff8edd08a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Lorwyn.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Lorwyn +Type:Historic +Subtype:Standard +Order:417 +Sets:10E, CSP, TSP, TSB, PLC, FUT, LRW diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Magic 2010.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Magic 2010.txt new file mode 100644 index 00000000000..27d5ed0e0c2 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Magic 2010.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Magic 2010 +Type:Historic +Subtype:Standard +Order:457 +Sets:LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Magic 2011.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Magic 2011.txt new file mode 100644 index 00000000000..62b37946bd8 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Magic 2011.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Magic 2011 +Type:Historic +Subtype:Standard +Order:479 +Sets:ALA, CFX, ARB, ZEN, WWK, ROE, M11 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Magic 2012.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Magic 2012.txt new file mode 100644 index 00000000000..3f0fe05c495 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Magic 2012.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Magic 2012 +Type:Historic +Subtype:Standard +Order:500 +Sets:ZEN, WWK, ROE, SOM, MBS, NPH, M12 +Banned:Jace, the Mind Sculptor; Stoneforge Mystic diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Magic 2013.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Magic 2013.txt new file mode 100644 index 00000000000..263cae37999 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Magic 2013.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Magic 2013 +Type:Historic +Subtype:Standard +Effective:2012-07-13 +Sets:SOM, MBS, NPH, M12, ISD, DKA, AVR, M13 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Magic 2014.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Magic 2014.txt new file mode 100644 index 00000000000..04bf0ee972a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Magic 2014.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Magic 2014 +Type:Historic +Subtype:Standard +Effective:2013-07-13 +Sets:ISD, DKA, AVR, M13, RTR, GTC, DGM, M14 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Magic 2015.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Magic 2015.txt new file mode 100644 index 00000000000..8112d154b02 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Magic 2015.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Magic 2015 +Type:Historic +Subtype:Standard +Effective:2014-07-18 +Sets:RTR, GTC, DGM, M14, THS, BNG, JOU, M15 diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Mirrodin Besieged.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Mirrodin Besieged.txt new file mode 100644 index 00000000000..1ef40c2165e --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Mirrodin Besieged.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Mirrodin Besieged +Type:Historic +Subtype:Standard +Order:490 +Sets:ZEN, WWK, ROE, M11, SOM, MBS diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Morningtide.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Morningtide.txt new file mode 100644 index 00000000000..722101a0c6d --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Morningtide.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Morningtide +Type:Historic +Subtype:Standard +Order:422 +Sets:10E, CSP, TSP, TSB, PLC, FUT, LRW, MOR diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, New Phyrexia.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, New Phyrexia.txt new file mode 100644 index 00000000000..740fd82037d --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, New Phyrexia.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, New Phyrexia +Type:Historic +Subtype:Standard +Order:495 +Sets:ZEN, WWK, ROE, M11, SOM, MBS, NPH diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Oath of the Gatewatch.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Oath of the Gatewatch.txt new file mode 100644 index 00000000000..23fa73d24e5 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Oath of the Gatewatch.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Oath of the Gatewatch +Type:Historic +Subtype:Standard +Effective:2016-01-22 +Sets:KTK, FRF, DTK, ORI, BFZ, OGW diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Origins.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Origins.txt new file mode 100644 index 00000000000..023a2c51766 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Origins.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Origins +Type:Historic +Subtype:Standard +Effective:2015-07-17 +Sets:THS, BNG, JOU, M15, KTK, FRF, DTK, ORI diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Planar Chaos.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Planar Chaos.txt new file mode 100644 index 00000000000..6bb611d2f5c --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Planar Chaos.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Planar Chaos +Type:Historic +Subtype:Standard +Order:399 +Sets:9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Return to Ravnica.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Return to Ravnica.txt new file mode 100644 index 00000000000..6e09cc22a38 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Return to Ravnica.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Return to Ravnica +Type:Historic +Subtype:Standard +Effective:2012-10-05 +Sets:ISD, DKA, AVR, M13, RTR diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Rise of the Eldrazi.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Rise of the Eldrazi.txt new file mode 100644 index 00000000000..8ace31334f5 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Rise of the Eldrazi.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Rise of the Eldrazi +Type:Historic +Subtype:Standard +Order:473 +Sets:ALA, CFX, ARB, M10, ZEN, WWK, ROE diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Rivals of Ixalan.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Rivals of Ixalan.txt new file mode 100644 index 00000000000..edb6d71572e --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Rivals of Ixalan.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard, Rivals of Ixalan +Type:Historic +Subtype:Standard +Effective:2018-01-19 +Sets:KLD, AER, AKH, W17, HOU, XLN, RIX +Banned: Attune with Aether; Rogue Refiner; Rampaging Ferocidon; Ramunap Ruins; Smuggler's Copter; Aetherworks Marvel; Felidar Guardian diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Scars of Mirrodin.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Scars of Mirrodin.txt new file mode 100644 index 00000000000..7951f597c44 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Scars of Mirrodin.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Scars of Mirrodin +Type:Historic +Subtype:Standard +Order:484 +Sets:ZEN, WWK, ROE, M11, SOM diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Shadowmoor.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Shadowmoor.txt new file mode 100644 index 00000000000..a8ba1a22d66 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Shadowmoor.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Shadowmoor +Type:Historic +Subtype:Standard +Order:427 +Sets:10E, CSP, TSP, TSB, PLC, FUT, LRW, MOR, SHM diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Shadows Over Innistrad.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Shadows Over Innistrad.txt new file mode 100644 index 00000000000..b8a9f28881f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Shadows Over Innistrad.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Shadows Over Innistrad +Type:Historic +Subtype:Standard +Effective:2016-04-08 +Sets:DTK, ORI, BFZ, OGW, SOI diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Shards of Alara.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Shards of Alara.txt new file mode 100644 index 00000000000..eab500a4bad --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Shards of Alara.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Shards of Alara +Type:Historic +Subtype:Standard +Order:441 +Sets:10E, LRW, MOR, SHM, EVE, ALA diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Tenth Edition.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Tenth Edition.txt new file mode 100644 index 00000000000..7048cf27291 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Tenth Edition.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Tenth Edition +Type:Historic +Subtype:Standard +Order:411 +Sets:10E, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Theros.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Theros.txt new file mode 100644 index 00000000000..758a5f023f1 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Theros.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Theros +Type:Historic +Subtype:Standard +Effective:2013-09-27 +Sets:RTR, GTC, DGM, M14, THS diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Time Spiral.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Time Spiral.txt new file mode 100644 index 00000000000..fc914632c6c --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Time Spiral.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Time Spiral +Type:Historic +Subtype:Standard +Order:394 +Sets:9ED, RAV, GPT, DIS, CSP, TSP, TSB diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Worldwake.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Worldwake.txt new file mode 100644 index 00000000000..016ae192771 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Worldwake.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Worldwake +Type:Historic +Subtype:Standard +Order:468 +Sets:ALA, CFX, ARB, M10, ZEN, WWK diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Zendikar.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Zendikar.txt new file mode 100644 index 00000000000..a262978714f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Standard/Standard, Zendikar.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Zendikar +Type:Historic +Subtype:Standard +Order:463 +Sets:ALA, CFX, ARB, M10, ZEN diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Alara Reborn.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Alara Reborn.txt new file mode 100644 index 00000000000..e3624b8f85c --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Alara Reborn.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Alara Reborn +Type:Historic +Subtype:Vintage +Order:454 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Crop Rotation; Demonic Consultation; Demonic Tutor; Enlightened Tutor; Entomb; Fact or Fiction; Fastbond; Flash; Frantic Search; Gifts Ungiven; Grim Monolith; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Avacyn Restored.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Avacyn Restored.txt new file mode 100644 index 00000000000..021c62ff744 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Avacyn Restored.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Avacyn Restored +Type:Historic +Subtype:Vintage +Order:527 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Demonic Consultation; Demonic Tutor; Fastbond; Flash; Gifts Ungiven; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Thirst for Knowledge; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Coldsnap.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Coldsnap.txt new file mode 100644 index 00000000000..bb1f17e58c7 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Coldsnap.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Coldsnap +Type:Historic +Subtype:Vintage +Order:393 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP +Restricted:Ancestral Recall; Balance; Black Lotus; Black Vise; Burning Wish; Channel; Chrome Mox; Crop Rotation; Demonic Consultation; Demonic Tutor; Dream Halls; Enlightened Tutor; Entomb; Fact or Fiction; Fastbond; Frantic Search; Grim Monolith; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Mind Twist; Mind's Desire; Mox Diamond; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Personal Tutor; Regrowth; Sol Ring; Time Spiral; Timetwister; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Voltaic Key; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Conflux.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Conflux.txt new file mode 100644 index 00000000000..2b7a46a5d67 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Conflux.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Conflux +Type:Historic +Subtype:Vintage +Order:449 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Crop Rotation; Demonic Consultation; Demonic Tutor; Enlightened Tutor; Entomb; Fact or Fiction; Fastbond; Flash; Frantic Search; Gifts Ungiven; Grim Monolith; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Dark Ascension.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Dark Ascension.txt new file mode 100644 index 00000000000..b9f4ea4bc8d --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Dark Ascension.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Dark Ascension +Type:Historic +Subtype:Vintage +Order:520 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD, DKA +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Demonic Consultation; Demonic Tutor; Fastbond; Flash; Gifts Ungiven; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Thirst for Knowledge; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Dissension.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Dissension.txt new file mode 100644 index 00000000000..3f1708715de --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Dissension.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Dissension +Type:Historic +Subtype:Vintage +Order:388 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS +Restricted:Ancestral Recall; Balance; Black Lotus; Black Vise; Burning Wish; Channel; Chrome Mox; Crop Rotation; Demonic Consultation; Demonic Tutor; Dream Halls; Enlightened Tutor; Entomb; Fact or Fiction; Fastbond; Frantic Search; Grim Monolith; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Mind Twist; Mind's Desire; Mox Diamond; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Personal Tutor; Regrowth; Sol Ring; Time Spiral; Timetwister; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Voltaic Key; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Eventide.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Eventide.txt new file mode 100644 index 00000000000..d6f4c974a24 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Eventide.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Eventide +Type:Historic +Subtype:Vintage +Order:435 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Chrome Mox; Crop Rotation; Demonic Consultation; Demonic Tutor; Dream Halls; Enlightened Tutor; Entomb; Fact or Fiction; Fastbond; Flash; Frantic Search; Gifts Ungiven; Grim Monolith; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Diamond; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Personal Tutor; Ponder; Regrowth; Sol Ring; Time Spiral; Timetwister; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Future Sight.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Future Sight.txt new file mode 100644 index 00000000000..be0287c17a4 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Future Sight.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Future Sight +Type:Historic +Subtype:Vintage +Order:408 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT +Restricted:Ancestral Recall; Balance; Black Lotus; Black Vise; Burning Wish; Channel; Chrome Mox; Crop Rotation; Demonic Consultation; Demonic Tutor; Dream Halls; Enlightened Tutor; Entomb; Fact or Fiction; Fastbond; Frantic Search; Grim Monolith; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Mind Twist; Mind's Desire; Mox Diamond; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Personal Tutor; Regrowth; Sol Ring; Time Spiral; Timetwister; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Voltaic Key; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Guildpact.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Guildpact.txt new file mode 100644 index 00000000000..284f74fe9db --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Guildpact.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Guildpact +Type:Historic +Subtype:Vintage +Order:382 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT +Restricted:Ancestral Recall; Balance; Black Lotus; Black Vise; Burning Wish; Channel; Chrome Mox; Crop Rotation; Demonic Consultation; Demonic Tutor; Dream Halls; Enlightened Tutor; Entomb; Fact or Fiction; Fastbond; Frantic Search; Grim Monolith; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Mind Twist; Mind's Desire; Mox Diamond; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Personal Tutor; Regrowth; Sol Ring; Time Spiral; Timetwister; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Voltaic Key; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Innistrad.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Innistrad.txt new file mode 100644 index 00000000000..7526e373431 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Innistrad.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Innistrad +Type:Historic +Subtype:Vintage +Order:510 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Demonic Consultation; Demonic Tutor; Fact or Fiction; Fastbond; Flash; Gifts Ungiven; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Thirst for Knowledge; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, July 2009.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, July 2009.txt new file mode 100644 index 00000000000..74e454ea0d4 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, July 2009.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, July 2009 +Type:Historic +Subtype:Vintage +Order:456 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Demonic Consultation; Demonic Tutor; Fact or Fiction; Fastbond; Flash; Frantic Search; Gifts Ungiven; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Thirst for Knowledge; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Jun 2007.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Jun 2007.txt new file mode 100644 index 00000000000..854eca8b9d0 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Jun 2007.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Jun 2007 +Type:Historic +Subtype:Vintage +Order:409 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT +Restricted:Ancestral Recall; Balance; Black Lotus; Burning Wish; Channel; Chrome Mox; Crop Rotation; Demonic Consultation; Demonic Tutor; Dream Halls; Enlightened Tutor; Entomb; Fact or Fiction; Fastbond; Frantic Search; Gifts Ungiven; Grim Monolith; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Mind's Desire; Mox Diamond; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Personal Tutor; Regrowth; Sol Ring; Time Spiral; Timetwister; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Jun 2008.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Jun 2008.txt new file mode 100644 index 00000000000..bfd9ef96288 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Jun 2008.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Jun 2008 +Type:Historic +Subtype:Vintage +Order:432 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Chrome Mox; Crop Rotation; Demonic Consultation; Demonic Tutor; Dream Halls; Enlightened Tutor; Entomb; Fact or Fiction; Fastbond; Flash; Frantic Search; Gifts Ungiven; Grim Monolith; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Diamond; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Personal Tutor; Ponder; Regrowth; Sol Ring; Time Spiral; Timetwister; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Lorwyn.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Lorwyn.txt new file mode 100644 index 00000000000..00406c2174d --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Lorwyn.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Lorwyn +Type:Historic +Subtype:Vintage +Order:419 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW +Restricted:Ancestral Recall; Balance; Black Lotus; Burning Wish; Channel; Chrome Mox; Crop Rotation; Demonic Consultation; Demonic Tutor; Dream Halls; Enlightened Tutor; Entomb; Fact or Fiction; Fastbond; Frantic Search; Gifts Ungiven; Grim Monolith; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Mind's Desire; Mox Diamond; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Personal Tutor; Regrowth; Sol Ring; Time Spiral; Timetwister; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Magic 2010.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Magic 2010.txt new file mode 100644 index 00000000000..35c27ab7b1c --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Magic 2010.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Magic 2010 +Type:Historic +Subtype:Vintage +Order:460 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10 +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Demonic Consultation; Demonic Tutor; Fact or Fiction; Fastbond; Flash; Frantic Search; Gifts Ungiven; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Thirst for Knowledge; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Magic 2011.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Magic 2011.txt new file mode 100644 index 00000000000..9a2b107caf7 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Magic 2011.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Magic 2011 +Type:Historic +Subtype:Vintage +Order:482 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11 +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Demonic Consultation; Demonic Tutor; Fact or Fiction; Fastbond; Flash; Frantic Search; Gifts Ungiven; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Thirst for Knowledge; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Magic 2012.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Magic 2012.txt new file mode 100644 index 00000000000..7d2d1e510c8 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Magic 2012.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Magic 2012 +Type:Historic +Subtype:Vintage +Order:503 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12 +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Demonic Consultation; Demonic Tutor; Fact or Fiction; Fastbond; Flash; Gifts Ungiven; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Thirst for Knowledge; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Magic 2013.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Magic 2013.txt new file mode 100644 index 00000000000..84d12a655dd --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Magic 2013.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Magic 2013 +Type:Historic +Subtype:Vintage +Order:533 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Demonic Consultation; Demonic Tutor; Fastbond; Flash; Gifts Ungiven; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Thirst for Knowledge; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Mirrodin Besieged.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Mirrodin Besieged.txt new file mode 100644 index 00000000000..5c20c24eff8 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Mirrodin Besieged.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Mirrodin Besieged +Type:Historic +Subtype:Vintage +Order:493 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Demonic Consultation; Demonic Tutor; Fact or Fiction; Fastbond; Flash; Gifts Ungiven; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Thirst for Knowledge; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Morningtide.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Morningtide.txt new file mode 100644 index 00000000000..46329d6db4f --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Morningtide.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Morningtide +Type:Historic +Subtype:Vintage +Order:424 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR +Restricted:Ancestral Recall; Balance; Black Lotus; Burning Wish; Channel; Chrome Mox; Crop Rotation; Demonic Consultation; Demonic Tutor; Dream Halls; Enlightened Tutor; Entomb; Fact or Fiction; Fastbond; Frantic Search; Gifts Ungiven; Grim Monolith; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Mind's Desire; Mox Diamond; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Personal Tutor; Regrowth; Sol Ring; Time Spiral; Timetwister; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, New Phyrexia.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, New Phyrexia.txt new file mode 100644 index 00000000000..930dd3cdcd9 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, New Phyrexia.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, New Phyrexia +Type:Historic +Subtype:Vintage +Order:498 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Demonic Consultation; Demonic Tutor; Fact or Fiction; Fastbond; Flash; Gifts Ungiven; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Thirst for Knowledge; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, October 2011.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, October 2011.txt new file mode 100644 index 00000000000..8d03b1d4002 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, October 2011.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, October 2011 +Type:Historic +Subtype:Vintage +Order:513 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Demonic Consultation; Demonic Tutor; Fastbond; Flash; Gifts Ungiven; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Thirst for Knowledge; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Planar Chaos.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Planar Chaos.txt new file mode 100644 index 00000000000..f8e77af4fb3 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Planar Chaos.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Planar Chaos +Type:Historic +Subtype:Vintage +Order:403 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC +Restricted:Ancestral Recall; Balance; Black Lotus; Black Vise; Burning Wish; Channel; Chrome Mox; Crop Rotation; Demonic Consultation; Demonic Tutor; Dream Halls; Enlightened Tutor; Entomb; Fact or Fiction; Fastbond; Frantic Search; Grim Monolith; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Mind Twist; Mind's Desire; Mox Diamond; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Personal Tutor; Regrowth; Sol Ring; Time Spiral; Timetwister; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Voltaic Key; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Rise of the Eldrazi.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Rise of the Eldrazi.txt new file mode 100644 index 00000000000..35eba977e00 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Rise of the Eldrazi.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Rise of the Eldrazi +Type:Historic +Subtype:Vintage +Order:476 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Demonic Consultation; Demonic Tutor; Fact or Fiction; Fastbond; Flash; Frantic Search; Gifts Ungiven; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Thirst for Knowledge; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Scars of Mirrodin.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Scars of Mirrodin.txt new file mode 100644 index 00000000000..c343e7c0d05 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Scars of Mirrodin.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Scars of Mirrodin +Type:Historic +Subtype:Vintage +Order:487 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Demonic Consultation; Demonic Tutor; Fact or Fiction; Fastbond; Flash; Gifts Ungiven; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Thirst for Knowledge; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Sep 2007.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Sep 2007.txt new file mode 100644 index 00000000000..5f6da0e1ce4 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Sep 2007.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Sep 2007 +Type:Historic +Subtype:Vintage +Order:415 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E +Restricted:Ancestral Recall; Balance; Black Lotus; Burning Wish; Channel; Chrome Mox; Crop Rotation; Demonic Consultation; Demonic Tutor; Dream Halls; Enlightened Tutor; Entomb; Fact or Fiction; Fastbond; Frantic Search; Gifts Ungiven; Grim Monolith; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Mind's Desire; Mox Diamond; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Personal Tutor; Regrowth; Sol Ring; Time Spiral; Timetwister; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Sep 2008.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Sep 2008.txt new file mode 100644 index 00000000000..7680765f6a9 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Sep 2008.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Sep 2008 +Type:Historic +Subtype:Vintage +Order:440 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Crop Rotation; Demonic Consultation; Demonic Tutor; Enlightened Tutor; Entomb; Fact or Fiction; Fastbond; Flash; Frantic Search; Gifts Ungiven; Grim Monolith; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Shadowmoor.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Shadowmoor.txt new file mode 100644 index 00000000000..7243f89d5db --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Shadowmoor.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Shadowmoor +Type:Historic +Subtype:Vintage +Order:429 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM +Restricted:Ancestral Recall; Balance; Black Lotus; Burning Wish; Channel; Chrome Mox; Crop Rotation; Demonic Consultation; Demonic Tutor; Dream Halls; Enlightened Tutor; Entomb; Fact or Fiction; Fastbond; Frantic Search; Gifts Ungiven; Grim Monolith; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Mind's Desire; Mox Diamond; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Personal Tutor; Regrowth; Sol Ring; Time Spiral; Timetwister; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Shards of Alara.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Shards of Alara.txt new file mode 100644 index 00000000000..c33c3869d9a --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Shards of Alara.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Shards of Alara +Type:Historic +Subtype:Vintage +Order:444 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Crop Rotation; Demonic Consultation; Demonic Tutor; Enlightened Tutor; Entomb; Fact or Fiction; Fastbond; Flash; Frantic Search; Gifts Ungiven; Grim Monolith; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Tenth Edition.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Tenth Edition.txt new file mode 100644 index 00000000000..444b3db5387 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Tenth Edition.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Tenth Edition +Type:Historic +Subtype:Vintage +Order:413 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E +Restricted:Ancestral Recall; Balance; Black Lotus; Burning Wish; Channel; Chrome Mox; Crop Rotation; Demonic Consultation; Demonic Tutor; Dream Halls; Enlightened Tutor; Entomb; Fact or Fiction; Fastbond; Frantic Search; Gifts Ungiven; Grim Monolith; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Mind's Desire; Mox Diamond; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Personal Tutor; Regrowth; Sol Ring; Time Spiral; Timetwister; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Time Spiral.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Time Spiral.txt new file mode 100644 index 00000000000..f102955c498 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Time Spiral.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Time Spiral +Type:Historic +Subtype:Vintage +Order:398 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB +Restricted:Ancestral Recall; Balance; Black Lotus; Black Vise; Burning Wish; Channel; Chrome Mox; Crop Rotation; Demonic Consultation; Demonic Tutor; Dream Halls; Enlightened Tutor; Entomb; Fact or Fiction; Fastbond; Frantic Search; Grim Monolith; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Mind Twist; Mind's Desire; Mox Diamond; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Personal Tutor; Regrowth; Sol Ring; Time Spiral; Timetwister; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Voltaic Key; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Worldwake.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Worldwake.txt new file mode 100644 index 00000000000..72f35b8fd19 --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Worldwake.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Worldwake +Type:Historic +Subtype:Vintage +Order:471 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN, WWK +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Demonic Consultation; Demonic Tutor; Fact or Fiction; Fastbond; Flash; Frantic Search; Gifts Ungiven; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Thirst for Knowledge; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Zendikar.txt b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Zendikar.txt new file mode 100644 index 00000000000..40d92ac555d --- /dev/null +++ b/forge-gui/res/formats/Historic/Duelists' Convocation/pending verification/Vintage/Vintage, Zendikar.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage, Zendikar +Type:Historic +Subtype:Vintage +Order:466 +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, MMQ, NMS, PCY, INV, PLS, 7ED, APC, ODY, TOR, JUD, ONS, LGN, SCG, 8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, POR, PO2, PTK, S99, S00, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, MOR, SHM, EVE, ALA, CFX, ARB, M10, ZEN +Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Burning Wish; Channel; Demonic Consultation; Demonic Tutor; Fact or Fiction; Fastbond; Flash; Frantic Search; Gifts Ungiven; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lotus Petal; Mana Crypt; Mana Vault; Merchant Scroll; Mind's Desire; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Mystical Tutor; Necropotence; Ponder; Regrowth; Sol Ring; Thirst for Knowledge; Timetwister; Time Vault; Time Walk; Tinker; Tolarian Academy; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will +Banned:Amulet of Quoz; Bronze Tablet; Chaos Orb; Contract from Below; Darkpact; Demonic Attorney; Divine Intervention; Falling Star; Jeweled Bird; Rebirth; Shahrazad; Tempest Efreet; Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/prototypes/Block/Ice Age-Homelands-Alliances/1995-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Block/Ice Age-Homelands-Alliances/1995-10-01.txt new file mode 100644 index 00000000000..efdee0425a3 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Block/Ice Age-Homelands-Alliances/1995-10-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Ice Age, 10/01/95 +Type:Historic +Subtype:Block +Effective:1995-10-01 +Sets:ICE +Restricted:Zuran Orb +Banned:Amulet of Quoz \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Block/Ice Age-Homelands-Alliances/1996-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Block/Ice Age-Homelands-Alliances/1996-10-01.txt new file mode 100644 index 00000000000..ad54a0c70c2 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Block/Ice Age-Homelands-Alliances/1996-10-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Ice Age/Alliances, 10/01/96 +Type:Historic +Subtype:Block +Effective:1996-10-01 +Sets:ICE, ALL +Restricted:Zuran Orb +Banned:Amulet of Quoz \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Block/Ice Age-Homelands-Alliances/1997-05-01.txt b/forge-gui/res/formats/Historic/prototypes/Block/Ice Age-Homelands-Alliances/1997-05-01.txt new file mode 100644 index 00000000000..fc6b950646a --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Block/Ice Age-Homelands-Alliances/1997-05-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Ice Age, 05/01/97 +Type:Historic +Subtype:Block +Effective:1997-05-01 +Sets:ICE +Banned:Amulet of Quoz, Thawing Glaciers, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Block/Ice Age-Homelands-Alliances/1997-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Block/Ice Age-Homelands-Alliances/1997-07-01.txt new file mode 100644 index 00000000000..da4530c1fb0 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Block/Ice Age-Homelands-Alliances/1997-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Ice Age/Homelands/Alliances, 07/01/97 +Type:Historic +Subtype:Block +Effective:1997-07-01 +Sets:ICE, HML, ALL +Banned:Amulet of Quoz, Thawing Glaciers, Timmerian Fiends, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Block/Invasion/2000-11-01.txt b/forge-gui/res/formats/Historic/prototypes/Block/Invasion/2000-11-01.txt new file mode 100644 index 00000000000..3d4ee56c806 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Block/Invasion/2000-11-01.txt @@ -0,0 +1,5 @@ +[format] +Name:Invasion Block, Invasion +Type:Historic +Subtype:Block +Effective:2000-11-01 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Block/Masques/1999-11-01.txt b/forge-gui/res/formats/Historic/prototypes/Block/Masques/1999-11-01.txt new file mode 100644 index 00000000000..0cf038ecb36 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Block/Masques/1999-11-01.txt @@ -0,0 +1,5 @@ +[format] +Name:Masques Block, Mercadian Masques +Type:Historic +Subtype:Block +Effective:1999-11-01 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Block/Masques/2000-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Block/Masques/2000-07-01.txt new file mode 100644 index 00000000000..b8a9f10f864 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Block/Masques/2000-07-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Masques Block, Prophecy +Type:Historic +Subtype:Block +Effective:2000-07-01 +Banned:Lin Sivvi, Defiant Hero; Rishadan Port \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Block/Mirage-Visions-Weatherlight/1997-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Block/Mirage-Visions-Weatherlight/1997-07-01.txt new file mode 100644 index 00000000000..6cb07fa66ce --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Block/Mirage-Visions-Weatherlight/1997-07-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Mirage/Visions/Weatherlight Block, Weatherlight +Type:Historic +Subtype:Block +Effective:1997-07-01 +Banned:Squandered Resources \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Block/Mirrodin/2003-10-20.txt b/forge-gui/res/formats/Historic/prototypes/Block/Mirrodin/2003-10-20.txt new file mode 100644 index 00000000000..0df1815626f --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Block/Mirrodin/2003-10-20.txt @@ -0,0 +1,5 @@ +[format] +Name:Mirrodin Block, Mirrodin +Type:Historic +Subtype:Block +Effective:2003-10-20 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Block/Mirrodin/2004-06-20.txt b/forge-gui/res/formats/Historic/prototypes/Block/Mirrodin/2004-06-20.txt new file mode 100644 index 00000000000..4c6a5a53b1b --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Block/Mirrodin/2004-06-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Mirrodin Block, Fifth Dawn +Type:Historic +Subtype:Block +Effective:2004-06-20 +Banned:Skullclamp \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Block/Odyssey/2001-11-01.txt b/forge-gui/res/formats/Historic/prototypes/Block/Odyssey/2001-11-01.txt new file mode 100644 index 00000000000..2250278ac2e --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Block/Odyssey/2001-11-01.txt @@ -0,0 +1,5 @@ +[format] +Name:Odyssey Block, Odyssey +Type:Historic +Subtype:Block +Effective:2001-11-01 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Block/Onslaught/2002-11-01.txt b/forge-gui/res/formats/Historic/prototypes/Block/Onslaught/2002-11-01.txt new file mode 100644 index 00000000000..5470c5d0b2c --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Block/Onslaught/2002-11-01.txt @@ -0,0 +1,5 @@ +[format] +Name:Onslaught Block, Onslaught +Type:Historic +Subtype:Block +Effective:2002-11-01 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Block/Rath Cycle/1997-11-01.txt b/forge-gui/res/formats/Historic/prototypes/Block/Rath Cycle/1997-11-01.txt new file mode 100644 index 00000000000..e78aaba9513 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Block/Rath Cycle/1997-11-01.txt @@ -0,0 +1,5 @@ +[format] +Name:Tempest Block, Tempest +Type:Historic +Subtype:Block +Effective:1997-11-01 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Block/Rath Cycle/1998-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Block/Rath Cycle/1998-07-01.txt new file mode 100644 index 00000000000..6dc90409465 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Block/Rath Cycle/1998-07-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Tempest/Stronghold/Exodus Block, Exodus +Type:Historic +Subtype:Block +Effective:1998-07-01 +Banned:Cursed Scroll \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Block/Urza/1999-01-01.txt b/forge-gui/res/formats/Historic/prototypes/Block/Urza/1999-01-01.txt new file mode 100644 index 00000000000..7b7576e54b4 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Block/Urza/1999-01-01.txt @@ -0,0 +1,5 @@ +[format] +Name:Urza's Saga Standalone, 01/01/99 +Type:Historic +Subtype:Block +Effective:1999-01-01 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Block/Urza/1999-04-01.txt b/forge-gui/res/formats/Historic/prototypes/Block/Urza/1999-04-01.txt new file mode 100644 index 00000000000..83c23aec55a --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Block/Urza/1999-04-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Urza Block, 04/01/99 +Type:Historic +Subtype:Block +Effective:1999-04-01 +Banned:Memory Jar, Time Spiral, Windfall \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Block/Urza/1999-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Block/Urza/1999-07-01.txt new file mode 100644 index 00000000000..788a562d0b9 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Block/Urza/1999-07-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Urza Block, Urza's Destiny +Type:Historic +Subtype:Block +Effective:1999-07-01 +Banned:Gaea's Cradle, Memory Jar, Serra's Sanctum, Time Spiral, Tolarian Academy, Voltaic Key, Windfall \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/1997-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/1997-07-01.txt new file mode 100644 index 00000000000..77c390b2e1e --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/1997-07-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, Weatherlight +Type:Historic +Subtype:Extended +Effective:1997-07-01 +Banned:Amulet of Quoz, Balance, Black Vise, Braingeyser, Bronze Tablet, Channel, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Ivory Tower, Jeweled Bird, Juggernaut, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/1997-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/1997-10-01.txt new file mode 100644 index 00000000000..aab08b754ea --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/1997-10-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, 10/01/97 +Type:Historic +Subtype:Extended +Effective:1997-10-01 +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, Juggernaut, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/1998-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/1998-07-01.txt new file mode 100644 index 00000000000..194d6541dfe --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/1998-07-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, Exodus +Type:Historic +Subtype:Extended +Effective:1998-07-01 +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, Land Tax, Mana Crypt, Maze of Ith, Mind Twist, Rebirth, Regrowth, Serendib Efreet, Sol Ring, Strip Mine, Tempest Efreet, Timmerian Fiends, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/1999-01-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/1999-01-01.txt new file mode 100644 index 00000000000..b5b67a38c64 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/1999-01-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, 01/01/99 +Type:Historic +Subtype:Extended +Effective:1999-01-01 +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, Land Tax, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/1999-04-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/1999-04-01.txt new file mode 100644 index 00000000000..f800b853ca4 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/1999-04-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, 04/01/99 +Type:Historic +Subtype:Extended +Effective:1999-04-01 +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, Land Tax, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/1999-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/1999-07-01.txt new file mode 100644 index 00000000000..0b25d233a41 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/1999-07-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, Urza's Destiny +Type:Historic +Subtype:Extended +Effective:1999-07-01 +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, Land Tax, Mana Crypt, Maze of Ith, Memory Jar, Mind Twist, Rebirth, Regrowth, Serendib Efreet, Sol Ring, Strip Mine, Tempest Efreet, Time Spiral, Timmerian Fiends, Tolarian Academy, Wheel of Fortune, Windfall, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/1999-08-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/1999-08-01.txt new file mode 100644 index 00000000000..a0a7c19c3d4 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/1999-08-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, 08/01/99 +Type:Historic +Subtype:Extended +Effective:1999-08-01 +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, Land Tax, Mana Crypt, Maze of Ith, Memory Jar, Mind Twist, Rebirth, Regrowth, Serendib Efreet, Sol Ring, Strip Mine, Tempest Efreet, Time Spiral, Timmerian Fiends, Tolarian Academy, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/1999-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/1999-10-01.txt new file mode 100644 index 00000000000..1d2cea46819 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/1999-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, 10/01/99 +Type:Historic +Subtype:Extended +Effective:1999-10-01 +Banned:Amulet of Quoz, 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 +Additional:Badlands, Bayou, Plateau, Savannah, Scrubland, Taiga, Tropical Island, Tundra, Underground Sea, Volcanic Island \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/2000-04-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/2000-04-01.txt new file mode 100644 index 00000000000..2d5fa36dc31 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/2000-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, 04/01/00 +Type:Historic +Subtype:Extended +Effective:2000-04-01 +Banned:Amulet of Quoz, Dark Ritual, Dream Halls, Earthcraft, Lotus Petal, Mana Vault, Memory Jar, Mind Over Matter, Time Spiral, Timmerian Fiends, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb +Additional:Badlands, Bayou, Plateau, Savannah, Scrubland, Taiga, Tropical Island, Tundra, Underground Sea, Volcanic Island \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/2001-04-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/2001-04-01.txt new file mode 100644 index 00000000000..1b4c31a2ada --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/2001-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended, 04/01/01 +Type:Historic +Subtype:Extended +Effective:2001-04-01 +Banned:Amulet of Quoz, Dark Ritual, Demonic Consultation, Dream Halls, Earthcraft, Lotus Petal, Mana Vault, Memory Jar, Mind Over Matter, Necropotence, Replenish, Survival of the Fittest, Time Spiral, Timmerian Fiends, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb +Additional:Badlands, Bayou, Plateau, Savannah, Scrubland, Taiga, Tropical Island, Tundra, Underground Sea, Volcanic Island \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/2002-11-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/2002-11-01.txt new file mode 100644 index 00000000000..e3de951b528 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/2002-11-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Extended, Onslaught +Type:Historic +Subtype:Extended +Effective:2002-11-01 +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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/2003-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/2003-10-01.txt new file mode 100644 index 00000000000..578b0585fe1 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/2003-10-01.txt @@ -0,0 +1,5 @@ +[format] +Name:Extended, 10/01/03 +Subtype:Extended +Effective:2003-10-01 +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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/2004-01-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/2004-01-01.txt new file mode 100644 index 00000000000..df1cad30444 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/2004-01-01.txt @@ -0,0 +1,5 @@ +[format] +Name:Extended, 01/01/04 +Subtype:Extended +Effective:2004-01-01 +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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/2004-09-20.txt b/forge-gui/res/formats/Historic/prototypes/Extended/2004-09-20.txt new file mode 100644 index 00000000000..692c020775a --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/2004-09-20.txt @@ -0,0 +1,5 @@ +[format] +Name:Extended, 09/20/04 +Subtype:Extended +Effective:2004-09-20 +Banned:Ancient Tomb, Dark Ritual, Dream Halls, Earthcraft, Entomb, Frantic Search, Goblin Lackey, Goblin Recruiter, Grim Monolith, Hermit Druid, Lotus Petal, Metalworker, Memory Jar, Mind Over Matter, Oath of Druids, Replenish, Skullclamp, Survival of the Fittest, Time Spiral, Tinker, Tolarian Academy, Windfall, Yawgmoth's Bargain, Yawgmoth's Will \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/1997-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/1997-07-01.txt new file mode 100644 index 00000000000..365ca4809fb --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/1997-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Weatherlight +Type:Historic +Subtype:Extended +Effective:1997-07-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Blaze of Glory, Braingeyser, Channel, Chaos Orb, Consecrate Land, Contract from Below, Copper Tablet, Counterspell, Cyclopean Tomb, Darkpact, Demonic Attorney, Demonic Tutor, Dwarven Demolition Team, Fastbond, Forcefield, Gauntlet of Might, Ice Storm, Invisibility, Jade Statue, Juggernaut, Lich, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Psionic Blast, Regrowth, Sinkhole, Sol Ring, Time Vault, Time Walk, Timetwister, Two-Headed Giant of Foriys, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/1997-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/1997-10-01.txt new file mode 100644 index 00000000000..de82b4294d9 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/1997-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, 10/01/97 +Type:Historic +Subtype:Extended +Effective:1997-10-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Blaze of Glory, Braingeyser, Channel, Chaos Orb, Consecrate Land, Contract from Below, Copper Tablet, Counterspell, Cyclopean Tomb, Darkpact, Demonic Attorney, Demonic Tutor, Dwarven Demolition Team, Fastbond, Forcefield, Gauntlet of Might, Hypnotic Specter, Ice Storm, Invisibility, Jade Statue, Juggernaut, Lich, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Psionic Blast, Regrowth, Sinkhole, Sol Ring, Time Vault, Time Walk, Timetwister, Two-Headed Giant of Foriys, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/1998-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/1998-07-01.txt new file mode 100644 index 00000000000..9a232cf4a52 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/1998-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Exodus +Type:Historic +Subtype:Extended +Effective:1998-07-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Blaze of Glory, Braingeyser, Channel, Chaos Orb, Consecrate Land, Contract from Below, Copper Tablet, Counterspell, Cyclopean Tomb, Darkpact, Demonic Attorney, Demonic Tutor, Dwarven Demolition Team, Fastbond, Forcefield, Gauntlet of Might, Hypnotic Specter, Ice Storm, Invisibility, Jade Statue, Lich, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Psionic Blast, Regrowth, Sinkhole, Sol Ring, Time Vault, Time Walk, Timetwister, Two-Headed Giant of Foriys, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/1999-01-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/1999-01-01.txt new file mode 100644 index 00000000000..8c5aa52f503 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/1999-01-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, 01/01/99 +Type:Historic +Subtype:Extended +Effective:1999-01-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Blaze of Glory, Channel, Chaos Orb, Consecrate Land, Contract from Below, Copper Tablet, Counterspell, Cyclopean Tomb, Darkpact, Demonic Attorney, Demonic Tutor, Dwarven Demolition Team, Fastbond, Forcefield, Gauntlet of Might, Hypnotic Specter, Ice Storm, Invisibility, Jade Statue, Lich, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Psionic Blast, Regrowth, Sinkhole, Sol Ring, Time Vault, Time Walk, Timetwister, Two-Headed Giant of Foriys, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/1999-06-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/1999-06-01.txt new file mode 100644 index 00000000000..7ab00e6a927 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/1999-06-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Classic Sixth Edition +Type:Historic +Subtype:Extended +Effective:1999-06-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Blaze of Glory, Channel, Chaos Orb, Consecrate Land, Contract from Below, Copper Tablet, Cyclopean Tomb, Darkpact, Demonic Attorney, Demonic Tutor, Dwarven Demolition Team, Fastbond, Forcefield, Gauntlet of Might, Hypnotic Specter, Ice Storm, Invisibility, Jade Statue, Lich, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Psionic Blast, Regrowth, Sinkhole, Sol Ring, Time Vault, Time Walk, Timetwister, Two-Headed Giant of Foriys, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/1999-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/1999-10-01.txt new file mode 100644 index 00000000000..4335bba203e --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/1999-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, 10/01/99 +Type:Historic +Subtype:Extended +Effective:1999-10-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Balance, Basalt Monolith, Berserk, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clone, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cyclopean Tomb, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dwarven Demolition Team, Earth Elemental, Earthbind, Farmstead, Fastbond, Forcefield, Fork, Gaea's Liege, Gauntlet of Might, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Ice Storm, Invisibility, Jade Statue, Juggernaut, Jump, Kormus Bell, Kudzu, Lance, Lich, Lifelace, Lightning Bolt, Living Wall, Mahamoti Djinn, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Northern Paladin, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Roc of Kher Ridges, Rock Hydra, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Sengir Vampire, Serra Angel, Simulacrum, Sinkhole, Siren's Call, Sol Ring, Sunglasses of Urza, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tunnel, Twiddle, Two-Headed Giant of Foriys, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2000-04-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2000-04-01.txt new file mode 100644 index 00000000000..bbf5103425f --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2000-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, 04/01/00 +Type:Historic +Subtype:Extended +Effective:2000-04-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Balance, Basalt Monolith, Berserk, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clone, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cyclopean Tomb, Dark Ritual, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dwarven Demolition Team, Earth Elemental, Earthbind, Farmstead, Fastbond, Forcefield, Fork, Gaea's Liege, Gauntlet of Might, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Ice Storm, Invisibility, Jade Statue, Juggernaut, Jump, Kormus Bell, Kudzu, Lance, Lich, Lifelace, Lightning Bolt, Living Wall, Mahamoti Djinn, Mana Vault, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Northern Paladin, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Roc of Kher Ridges, Rock Hydra, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Sengir Vampire, Serra Angel, Simulacrum, Sinkhole, Siren's Call, Sol Ring, Sunglasses of Urza, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tunnel, Twiddle, Two-Headed Giant of Foriys, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2001-05-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2001-05-01.txt new file mode 100644 index 00000000000..799f1f3248a --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2001-05-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Seventh Edition +Type:Historic +Subtype:Extended +Effective:2001-05-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Balance, Basalt Monolith, Berserk, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clone, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cyclopean Tomb, Dark Ritual, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dwarven Demolition Team, Earth Elemental, Earthbind, Farmstead, Fastbond, Forcefield, Fork, Gaea's Liege, Gauntlet of Might, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Ice Storm, Invisibility, Jade Statue, Juggernaut, Jump, Kormus Bell, Kudzu, Lance, Lich, Lifelace, Lightning Bolt, Living Wall, Mana Vault, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Roc of Kher Ridges, Rock Hydra, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Sengir Vampire, Simulacrum, Sinkhole, Siren's Call, Sol Ring, Sunglasses of Urza, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tunnel, Two-Headed Giant of Foriys, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2002-03-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2002-03-01.txt new file mode 100644 index 00000000000..736e4b35cba --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2002-03-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Torment +Type:Historic +Subtype:Extended +Effective:2002-03-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Balance, Basalt Monolith, Berserk, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clone, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cyclopean Tomb, Dark Ritual, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dwarven Demolition Team, Earth Elemental, Earthbind, Farmstead, Fastbond, Forcefield, Fork, Gaea's Liege, Gauntlet of Might, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Ice Storm, Invisibility, Jade Statue, Juggernaut, Jump, Kormus Bell, Kudzu, Lance, Lich, Lifelace, Lightning Bolt, Living Wall, Mana Vault, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Roc of Kher Ridges, Rock Hydra, Royal Assassin, Sacrifice, Savannah Lions, Scavenging Ghoul, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sol Ring, Sunglasses of Urza, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tunnel, Two-Headed Giant of Foriys, 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 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2002-11-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2002-11-01.txt new file mode 100644 index 00000000000..d1dc8dbf73f --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2002-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Onslaught +Type:Historic +Subtype:Extended +Effective:2002-11-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Wall, Aspect of Wolf, Bad Moon, Badlands, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Craw Wurm, Creature Bond, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Death Ward, Deathgrip, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Demolition Team, Dwarven Warriors, Earth Elemental, Earthbind, Evil Presence, Farmstead, Fastbond, Feedback, Fireball, Force of Nature, Forcefield, Fork, Frozen Shade, Fungusaur, Gaea's Liege, Gauntlet of Might, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Icy Manipulator, Instill Energy, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Statue, Juggernaut, Jump, Karma, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Paralyze, Pearled Unicorn, Personal Incarnation, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Roc of Kher Ridges, Rock Hydra, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Undergroung Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Stone, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Knight, White Ward, Will-o'-the-Wisp, Winter Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2003-03-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2003-03-01.txt new file mode 100644 index 00000000000..b6c7224da02 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2003-03-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Legions +Type:Historic +Subtype:Extended +Effective:2003-03-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Wall, Aspect of Wolf, Bad Moon, Badlands, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Craw Wurm, Creature Bond, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Death Ward, Deathgrip, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Demolition Team, Dwarven Warriors, Earth Elemental, Earthbind, Evil Presence, Farmstead, Fastbond, Feedback, Fireball, Force of Nature, Forcefield, Fork, Frozen Shade, Fungusaur, Gaea's Liege, Gauntlet of Might, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Icy Manipulator, Instill Energy, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Statue, Juggernaut, Jump, Karma, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Paralyze, Pearled Unicorn, Personal Incarnation, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Roc of Kher Ridges, Rock Hydra, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Undergroung Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Stone, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Winter Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2003-09-01.txt b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2003-09-01.txt new file mode 100644 index 00000000000..bd5c5a44cea --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2003-09-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Eighth Edition +Type:Historic +Subtype:Extended +Effective:2003-09-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Wall, Aspect of Wolf, Bad Moon, Badlands, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Death Ward, Deathgrip, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Warriors, Earth Elemental, Earthbind, Evil Presence, Farmstead, Fastbond, Feedback, Fireball, Force of Nature, Forcefield, Fork, Frozen Shade, Gaea's Liege, Gauntlet of Might, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Icy Manipulator, Instill Energy, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Statue, Juggernaut, Jump, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Paralyze, Pearled Unicorn, Personal Incarnation, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Roc of Kher Ridges, Rock Hydra, Sacrifice, Savannah, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Undergroung Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Winter Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2003-10-20.txt b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2003-10-20.txt new file mode 100644 index 00000000000..3b23cf19024 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2003-10-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Mirrodin +Type:Historic +Subtype:Extended +Effective:2003-10-20 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Wall, Aspect of Wolf, Bad Moon, Badlands, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Death Ward, Deathgrip, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Warriors, Earth Elemental, Earthbind, Evil Presence, Farmstead, Fastbond, Feedback, Fireball, Force of Nature, Forcefield, Fork, Frozen Shade, Gaea's Liege, Gauntlet of Might, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Instill Energy, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Statue, Juggernaut, Jump, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Paralyze, Pearled Unicorn, Personal Incarnation, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Roc of Kher Ridges, Rock Hydra, Sacrifice, Savannah, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Undergroung Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Winter Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2004-02-20.txt b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2004-02-20.txt new file mode 100644 index 00000000000..133a0ec0cba --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Extended/Alpha/2004-02-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Extended Alpha, Darksteel +Type:Historic +Subtype:Extended +Effective:2004-02-20 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Wall, Aspect of Wolf, Bad Moon, Badlands, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Celestial Prism, Chaos Orb, Chaoslace, Channel, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Death Ward, Deathgrip, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Warriors, Earth Elemental, Earthbind, Evil Presence, Farmstead, Fastbond, Feedback, Force of Nature, Forcefield, Fork, Frozen Shade, Gaea's Liege, Gauntlet of Might, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Instill Energy, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Statue, Jump, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Paralyze, Pearled Unicorn, Personal Incarnation, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Roc of Kher Ridges, Rock Hydra, Sacrifice, Savannah, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Thoughtlace, Timber Wolves, Time Vault, Time Walk, Timetwister, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Undergroung Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Winter Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/1995-01-10.txt b/forge-gui/res/formats/Historic/prototypes/Standard/1995-01-10.txt new file mode 100644 index 00000000000..2e09378c8d4 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/1995-01-10.txt @@ -0,0 +1,7 @@ +[format] +Name:Type II, 1/10/95 +Type:Historic +Subtype:Standard +Effective:1995-01-10 +Restricted:Braingeyser, Channel, Copy Artifact, Demonic Tutor, Ivory Tower, Maze of Ith, Mind Twist, Regrowth, Sol Ring, Wheel of Fortune +Banned:Contract from Below, Darkpact, Demonic Attorney, Rebirth \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/1995-01-20.txt b/forge-gui/res/formats/Historic/prototypes/Standard/1995-01-20.txt new file mode 100644 index 00000000000..4d33e34353e --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/1995-01-20.txt @@ -0,0 +1,8 @@ +[format] +Name:Type II, Fourth Edition +Type:Historic +Subtype:Standard +Effective:1995-01-20 +#check date +Restricted:Balance, Channel, Ivory Tower, Maze of Ith, Mind Twist +Banned:Bronze Tablet, Rebirth, Tempest Efreet diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/1995-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/1995-10-01.txt new file mode 100644 index 00000000000..ae5d91b478f --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/1995-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type II, October 1, 1995 +Type:Historic +Subtype:Standard +Effective:1995-10-01 +Restricted:Balance, Channel, Feldon's Cane, Ivory Tower, Mind Twist, Recall +Banned:Amulet of Quoz, Bronze Tablet, Rebirth, Tempest Efreet diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/1995-11-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/1995-11-01.txt new file mode 100644 index 00000000000..2663d36f5a6 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/1995-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type II, 11/01/95 +Type:Historic +Subtype:Standard +Effective:1995-11-01 +Restricted:Balance, Feldon's Cane, Ivory Tower, Mind Twist, Recall, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Rebirth, Tempest Efreet diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/1996-02-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/1996-02-01.txt new file mode 100644 index 00000000000..ed97f744480 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/1996-02-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type II, 02/01/96 +Type:Historic +Subtype:Standard +Effective:1996-02-01 +Restricted:Balance, Black Vise, Feldon's Cane, Ivory Tower, Recall, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Mind Twist, Rebirth, Tempest Efreet diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/1996-04-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/1996-04-01.txt new file mode 100644 index 00000000000..3fede7fe09d --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/1996-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type II, 04/01/96 +Type:Historic +Subtype:Standard +Effective:1996-04-01 +Restricted:Balance, Black Vise, Ivory Tower, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Mind Twist, Rebirth, Tempest Efreet diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/1996-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/1996-07-01.txt new file mode 100644 index 00000000000..0350b878bb1 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/1996-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type II, 07/01/96 +Type:Historic +Subtype:Standard +Effective:1996-07-01 +Restricted:Balance, Black Vise, Ivory Tower, Land Tax, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Jeweled Bird, Mind Twist, Rebirth, Tempest Efreet, Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/1996-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/1996-10-01.txt new file mode 100644 index 00000000000..5e9cb96c9d3 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/1996-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type II, 10/01/96 +Type:Historic +Subtype:Standard +Effective:1996-10-01 +Restricted:Balance, Black Vise, Hymn to Tourach, Ivory Tower, Land Tax, Strip Mine, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Jeweled Bird, Mind Twist, Rebirth, Tempest Efreet, Timmerian Fiends diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/1997-01-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/1997-01-01.txt new file mode 100644 index 00000000000..bae66ef16e4 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/1997-01-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Type II, 01/01/97 +Type:Historic +Subtype:Standard +Effective:1997-01-01 +Banned:Balance, Black Vise, Bronze Tablet, Channel, Ivory Tower, Jeweled Bird, Land Tax, Mind Twist, Rebirth, Strip Mine, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/1997-03-03.txt b/forge-gui/res/formats/Historic/prototypes/Standard/1997-03-03.txt new file mode 100644 index 00000000000..c5f40ba10be --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/1997-03-03.txt @@ -0,0 +1,6 @@ +[format] +Name:Type II, Visions +Type:Historic +Subtype:Standard +Effective:1997-03-03 +Banned:Balance, Black Vise, Bronze Tablet, Channel, Ivory Tower, Jeweled Bird, Land Tax, Mind Twist, Rebirth, Strip Mine, Tempest Efreet \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/1997-04-24.txt b/forge-gui/res/formats/Historic/prototypes/Standard/1997-04-24.txt new file mode 100644 index 00000000000..7d7ea80e761 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/1997-04-24.txt @@ -0,0 +1,5 @@ +[format] +Name:Type II, Fifth Edition +Type:Historic +Subtype:Standard +Effective:1997-04-24 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/1997-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/1997-07-01.txt new file mode 100644 index 00000000000..cc58beac02d --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/1997-07-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Weatherlight +Type:Historic +Subtype:Standard +Effective:1997-07-01 +Banned:Amulet of Quoz, Timmerian Fiends, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/1997-11-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/1997-11-01.txt new file mode 100644 index 00000000000..7195a8e8214 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/1997-11-01.txt @@ -0,0 +1,5 @@ +[format] +Name:Standard, Tempest +Type:Historic +Subtype:Standard +Effective:1997-11-01 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/1999-01-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/1999-01-01.txt new file mode 100644 index 00000000000..dddf7365206 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/1999-01-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, 01/01/99 +Type:Historic +Subtype:Standard +Effective:1999-01-01 +Banned:Tolarian Academy, Windfall \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/1999-04-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/1999-04-01.txt new file mode 100644 index 00000000000..b50a73f07af --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/1999-04-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, 04/01/99 +Type:Historic +Subtype:Standard +Effective:1999-04-01 +Banned:Dream Halls, Earthcraft, Fluctuator, Lotus Petal, Memory Jar, Recurring Nightmare, Time Spiral, Tolarian Academy, Windfall \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/1999-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/1999-07-01.txt new file mode 100644 index 00000000000..ee4bc204eb9 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/1999-07-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Urza's Destiny +Type:Historic +Subtype:Standard +Effective:1999-07-01 +Banned:Dream Halls, Earthcraft, Fluctuator, Lotus Petal, Memory Jar, Mind Over Matter, Recurring Nightmare, Time Spiral, Tolarian Academy, Windfall \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/1999-11-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/1999-11-01.txt new file mode 100644 index 00000000000..7216b2d94e6 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/1999-11-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Mercadian Masques +Type:Historic +Subtype:Standard +Effective:1999-11-01 +Banned:Fluctuator, Memory Jar, Time Spiral, Tolarian Academy, Windfall \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/2000-11-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/2000-11-01.txt new file mode 100644 index 00000000000..3924183f03c --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/2000-11-01.txt @@ -0,0 +1,5 @@ +[format] +Name:Standard, Invasion +Type:Historic +Subtype:Standard +Effective:2000-11-01 \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/2004-06-20.txt b/forge-gui/res/formats/Historic/prototypes/Standard/2004-06-20.txt new file mode 100644 index 00000000000..bc60c2fc01f --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/2004-06-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Standard, Fifth Dawn +Type:Historic +Subtype:Standard +Effective:2004-06-20 +Banned:Skullclamp \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1996-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1996-10-01.txt new file mode 100644 index 00000000000..e268f2400c4 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1996-10-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type II Alpha, 10/01/96 +Type:Historic +Subtype:Standard +Effective:1996-10-01 +Sets:LEA +Restricted:Balance, Black Vise +Banned:Ancestral Recall, Badlands, Basalt Monolith, Bayou, Berserk, Black Lotus, Blaze of Glory, Braingeyser, Camouflage, Channel, Chaos Orb, Clone, Consecrate Land, Contract from Below, Copper Tablet, Copy Artifact, Cyclopean Tomb, Darkpact, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dwarven Demolition Team, Earthbind, False Orders, Farmstead, Fastbond, Fog, Forcefield, Fork, Gauntlet of Might, Granite Gargoyle, Guardian Angel, Ice Storm, Illusionary Mask, Invisibility, Jade Statue, Juggernaut, Kudzu, Lance, Lich, Living Wall, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Plateau, Psionic Blast, Raging River, Regrowth, Resurrection, Rock Hydra, Roc of Kher Ridges, Sacrifice, Savannah, Scrubland, Sedge Troll, Sinkhole, Sol Ring, Taiga, Timetwister, Time Vault, Time Walk, Tropical Island, Tundra, Two-Headed Giant of Foriys, Underground Sea, Vesuvan Doppelganger, Veteran Bodyguard, Wheel of Fortune, Word of Command \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1996-11-08.txt b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1996-11-08.txt new file mode 100644 index 00000000000..2a772666bad --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1996-11-08.txt @@ -0,0 +1,8 @@ +[format] +Name:Type II Alpha, Mirage +Type:Historic +Subtype:Standard +Effective:1996-11-08 +Sets:LEA +Restricted:Balance, Black Vise +Banned:Ancestral Recall, Badlands, Basalt Monolith, Bayou, Berserk, Black Lotus, Blaze of Glory, Braingeyser, Camouflage, Channel, Chaos Orb, Clone, Consecrate Land, Contract from Below, Copper Tablet, Copy Artifact, Cyclopean Tomb, Darkpact, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dwarven Demolition Team, Earthbind, False Orders, Farmstead, Fastbond, Forcefield, Fork, Gauntlet of Might, Granite Gargoyle, Guardian Angel, Ice Storm, Illusionary Mask, Invisibility, Jade Statue, Juggernaut, Kudzu, Lance, Lich, Living Wall, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Plateau, Psionic Blast, Raging River, Regrowth, Resurrection, Rock Hydra, Roc of Kher Ridges, Sacrifice, Savannah, Scrubland, Sedge Troll, Sinkhole, Sol Ring, Taiga, Timetwister, Time Vault, Time Walk, Tropical Island, Tundra, Two-Headed Giant of Foriys, Underground Sea, Vesuvan Doppelganger, Veteran Bodyguard, Wheel of Fortune, Word of Command \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1997-04-24.txt b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1997-04-24.txt new file mode 100644 index 00000000000..2b95d989050 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1997-04-24.txt @@ -0,0 +1,7 @@ +[format] +Name:Type II Alpha, Fifth Edition +Type:Historic +Subtype:Standard +Effective:1997-04-24 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Badlands, Balance, Basalt Monolith, Bayou, Berserk, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clone, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cyclopean Tomb, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dwarven Demolition Team, Earthbind, Earth Elemental, False Orders, Farmstead, Fastbond, Fire Elemental, Forcefield, Fork, Gaea's Liege, Gauntlet of Might, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Jade Statue, Juggernaut, Jump, Kormus Bell, Kudzu, Lance, Lich, Lifelace, Lightning Bolt, Living Wall, Mahamoti Djinn, Mana Short, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Northern Paladin, Obsianus Golem, Orcish Oriflamme, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Rock Hydra, Roc of Kher Ridges, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Sedge Troll, Sengir Vampire, Serra Angel, Simulacrum, Sinkhole, Siren's Call, Sol Ring, Sunglasses of Urza, Swords to Plowshares, Taiga, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tundra, Tunnel, Two-Headed Giant of Foriys, Underground Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Water, Wall of Wood, Water Elemental, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Word of Command \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1997-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1997-07-01.txt new file mode 100644 index 00000000000..57379da6d62 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1997-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Weatherlight +Type:Historic +Subtype:Standard +Effective:1997-07-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Badlands, Balance, Basalt Monolith, Bayou, Berserk, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clone, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cyclopean Tomb, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dwarven Demolition Team, Earthbind, Earth Elemental, False Orders, Farmstead, Fastbond, Fire Elemental, Forcefield, Fork, Gaea's Liege, Gauntlet of Might, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Ice Storm, Illusionary Mask, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Jade Statue, Juggernaut, Jump, Kormus Bell, Kudzu, Lance, Lich, Lifelace, Lightning Bolt, Living Wall, Mahamoti Djinn, Mana Short, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Northern Paladin, Obsianus Golem, Orcish Oriflamme, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Rock Hydra, Roc of Kher Ridges, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Sedge Troll, Sengir Vampire, Serra Angel, Simulacrum, Sinkhole, Siren's Call, Sol Ring, Sunglasses of Urza, Taiga, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tundra, Tunnel, Two-Headed Giant of Foriys, Underground Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Water, Wall of Wood, Water Elemental, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Word of Command \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1997-11-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1997-11-01.txt new file mode 100644 index 00000000000..98ed8bbfc0a --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1997-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Tempest +Type:Historic +Subtype:Standard +Effective:1997-11-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Badlands, Balance, Basalt Monolith, Bayou, Berserk, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clone, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cyclopean Tomb, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dwarven Demolition Team, Earthbind, Earth Elemental, Evil Presence, False Orders, Farmstead, Fastbond, Fire Elemental, Forcefield, Fork, Gaea's Liege, Gauntlet of Might, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Jade Statue, Juggernaut, Jump, Kormus Bell, Kudzu, Lance, Lich, Lifelace, Lightning Bolt, Living Wall, Mahamoti Djinn, Mana Short, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Northern Paladin, Obsianus Golem, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Rock Hydra, Roc of Kher Ridges, Rod of Ruin, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Sedge Troll, Sengir Vampire, Serra Angel, Simulacrum, Sinkhole, Siren's Call, Sol Ring, Sunglasses of Urza, Swords to Plowshares, Taiga, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tundra, Tunnel, Two-Headed Giant of Foriys, Underground Sea, 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, Word of Command \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1998-11-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1998-11-01.txt new file mode 100644 index 00000000000..c30d11af8c8 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1998-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Urza's Saga +Type:Historic +Subtype:Standard +Effective:1998-11-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Badlands, Balance, Basalt Monolith, Bayou, Berserk, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clone, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Creature Bond, Cyclopean Tomb, Darkpact, Deathlace, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dragon Whelp, Dwarven Demolition Team, Earthbind, Earth Elemental, False Orders, Farmstead, Fastbond, Fire Elemental, Forcefield, Fork, Gaea's Liege, Gauntlet of Might, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Holy Armor, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Invisibility, Jade Statue, Juggernaut, Jump, Kormus Bell, Kudzu, Lance, Lich, Lifelace, Lightning Bolt, Living Wall, Mahamoti Djinn, Mana Short, Mind Twist, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nettling Imp, Northern Paladin, Obsianus Golem, Plateau, Power Leak, Power Surge, Psionic Blast, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Rock Hydra, Roc of Kher Ridges, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Sedge Troll, Sengir Vampire, Serra Angel, Simulacrum, Sinkhole, Siren's Call, Sol Ring, Sunglasses of Urza, Swords to Plowshares, Taiga, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tundra, Tunnel, Two-Headed Giant of Foriys, Underground Sea, 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, Word of Command \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1999-06-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1999-06-01.txt new file mode 100644 index 00000000000..65fe312f307 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/1999-06-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Classic Sixth Edition +Type:Historic +Subtype:Standard +Effective:1999-06-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Clone, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Craw Wurm, Creature Bond, Cursed Land, Cyclopean Tomb, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Demolition Team, Dwarven Warriors, Earthbind, Earth Elemental, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fireball, Forcefield, Force of Nature, Fork, Frozen Shade, Fungusaur, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Hill Giant, The Hive, Holy Armor, Holy Strength, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Instill Energy, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Juggernaut, Jump, Karma, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Lord of the Pit, Magical Hack, Mahamoti Djinn, Mana Flare, Mana Vault, Manabarbs, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Northern Paladin, Obsianus Golem, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Rock Hydra, Roc of Kher Ridges, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Sengir Vampire, Serra Angel, Shivan Dragon, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Spell Blast, Stasis, Steal Artifact, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Terror, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tsunami, Tundra, Tunnel, Twiddle, Two-Headed Giant of Foriys, Underground Sea, Unholy Strength, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Bone, Wall of Brambles, Wall of Ice, Wall of Stone, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Knight, White Ward, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2001-05-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2001-05-01.txt new file mode 100644 index 00000000000..89fe6fcc75e --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2001-05-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Seventh Edition +Type:Historic +Subtype:Standard +Effective:2001-05-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Clone, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Craw Wurm, Creature Bond, Crusade, Cursed Land, Cyclopean Tomb, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Demolition Team, Dwarven Warriors, Earthbind, Earth Elemental, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fireball, Firebreathing, Flashfires, Forcefield, Force of Nature, Fork, Frozen Shade, Fungusaur, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Hill Giant, The Hive, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Instill Energy, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Juggernaut, Jump, Karma, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Manabarbs, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Obsianus Golem, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Rock Hydra, Roc of Kher Ridges, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Sengir Vampire, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Spell Blast, Stasis, Steal Artifact, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Terror, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Underground Sea, Unholy Strength, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Stone, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Knight, White Ward, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2001-11-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2001-11-01.txt new file mode 100644 index 00000000000..a0e0ebfcf39 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2001-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Odyssey +Type:Historic +Subtype:Standard +Effective:2001-11-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Clone, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Craw Wurm, Creature Bond, Crusade, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Demolition Team, Dwarven Warriors, Earthbind, Earth Elemental, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fireball, Firebreathing, Flashfires, Forcefield, Force of Nature, Fork, Frozen Shade, Fungusaur, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Hill Giant, The Hive, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Instill Energy, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Juggernaut, Jump, Karma, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Manabarbs, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Obsianus Golem, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Rock Hydra, Roc of Kher Ridges, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Sengir Vampire, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Spell Blast, Stasis, Steal Artifact, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Terror, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Underground Sea, Unholy Strength, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Stone, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Knight, White Ward, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2002-03-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2002-03-01.txt new file mode 100644 index 00000000000..2bf4761a98f --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2002-03-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Torment +Type:Historic +Subtype:Standard +Effective:2002-03-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Clone, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Craw Wurm, Creature Bond, Crusade, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Demolition Team, Dwarven Warriors, Earthbind, Earth Elemental, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fireball, Firebreathing, Flashfires, Forcefield, Force of Nature, Fork, Frozen Shade, Fungusaur, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, The Hive, Helm of Chatzuk, Hill Giant, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Instill Energy, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Juggernaut, Jump, Karma, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Manabarbs, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Obsianus Golem, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Rock Hydra, Roc of Kher Ridges, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Spell Blast, Stasis, Steal Artifact, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Terror, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Underground Sea, Unholy Strength, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Stone, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Knight, White Ward, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2002-11-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2002-11-01.txt new file mode 100644 index 00000000000..9700678b040 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2002-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Onslaught +Type:Historic +Subtype:Standard +Effective:2002-11-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Craw Wurm, Creature Bond, Crusade, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Demolition Team, Dwarven Warriors, Earthbind, Earth Elemental, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fireball, Firebreathing, Flashfires, Forcefield, Force of Nature, Fork, Frozen Shade, Fungusaur, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Hill Giant, The Hive, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Instill Energy, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Juggernaut, Jump, Karma, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Manabarbs, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Obsianus Golem, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantasmal Terrain, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Rock Hydra, Roc of Kher Ridges, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Spell Blast, Stasis, Steal Artifact, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Terror, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Underground Sea, Unholy Strength, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Stone, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Knight, White Ward, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2003-03-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2003-03-01.txt new file mode 100644 index 00000000000..4820e8e9cd8 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2003-03-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Legions +Type:Historic +Subtype:Standard +Effective:2003-03-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Craw Wurm, Creature Bond, Crusade, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Demolition Team, Dwarven Warriors, Earthbind, Earth Elemental, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fireball, Firebreathing, Flashfires, Forcefield, Force of Nature, Fork, Frozen Shade, Fungusaur, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, Hill Giant, The Hive, Holy Armor, Hurloon Minotaur, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Instill Energy, Invisibility, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Juggernaut, Jump, Karma, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Lord of the Pit, Magical Hack, Mana Flare, Mana Vault, Manabarbs, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Obsianus Golem, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantasmal Terrain, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Righteousness, Rock Hydra, Roc of Kher Ridges, Royal Assassin, Sacrifice, Savannah, Savannah Lions, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Spell Blast, Stasis, Steal Artifact, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Terror, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tropical Island, Tsunami, Tundra, Tunnel, Two-Headed Giant of Foriys, Underground Sea, Unholy Strength, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Brambles, Wall of Ice, Wall of Stone, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Ward, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2003-09-01.txt b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2003-09-01.txt new file mode 100644 index 00000000000..6fef52e2eb5 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2003-09-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Eighth Edition +Type:Historic +Subtype:Standard +Effective:2003-09-01 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Castle, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Counterspell, Creature Bond, Crusade, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dingus Egg, Disenchant, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Warriors, Earthbind, Earth Elemental, Earthquake, Elvish Archers, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fire Elemental, Fireball, Firebreathing, Fog, Forcefield, Force of Nature, Fork, Frozen Shade, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, The Hive, Holy Armor, Howl from Beyond, Hurloon Minotaur, Hurricane, Hypnotic Specter, Ice Storm, Icy Manipulator, Illusionary Mask, Instill Energy, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Juggernaut, Jump, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Llanowar Elves, Lord of Atlantis, Lord of the Pit, Magical Hack, Mana Flare, Mana Short, Mana Vault, Manabarbs, Meekstone, Merfolk of the Pearl Trident, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Northern Paladin, Obsianus Golem, Orcish Oriflamme, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantasmal Terrain, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Prodigal Sorcerer, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Reverse Damage, Righteousness, Rock Hydra, Roc of Kher Ridges, Sacrifice, Savannah, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Shanodin Dryads, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Soul Net, Spell Blast, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Terror, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tranquility, Tropical Island, Tsunami, Tundra, Tunnel, Twiddle, Two-Headed Giant of Foriys, Underground Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Bone, Wall of Brambles, Wall of Fire, Wall of Ice, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Ward, Wild Growth, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2003-10-20.txt b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2003-10-20.txt new file mode 100644 index 00000000000..64ee2ae14ad --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2003-10-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Mirrodin +Type:Historic +Subtype:Standard +Effective:2003-10-20 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Castle, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Counterspell, Creature Bond, Crusade, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dingus Egg, Disenchant, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Warriors, Earthbind, Earth Elemental, Earthquake, Elvish Archers, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fire Elemental, Fireball, Firebreathing, Fog, Forcefield, Force of Nature, Fork, Frozen Shade, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, The Hive, Holy Armor, Howl from Beyond, Hurloon Minotaur, Hurricane, Hypnotic Specter, Ice Storm, Illusionary Mask, Instill Energy, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Juggernaut, Jump, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Llanowar Elves, Lord of Atlantis, Lord of the Pit, Magical Hack, Mana Flare, Mana Short, Mana Vault, Manabarbs, Meekstone, Merfolk of the Pearl Trident, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Northern Paladin, Obsianus Golem, Orcish Oriflamme, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantasmal Terrain, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Prodigal Sorcerer, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Reverse Damage, Righteousness, Rock Hydra, Roc of Kher Ridges, Sacrifice, Savannah, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Sengir Vampire, Shanodin Dryads, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Soul Net, Spell Blast, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tranquility, Tropical Island, Tsunami, Tundra, Tunnel, Twiddle, Two-Headed Giant of Foriys, Underground Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Bone, Wall of Brambles, Wall of Fire, Wall of Ice, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Ward, Wild Growth, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2004-02-20.txt b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2004-02-20.txt new file mode 100644 index 00000000000..f42c627ec73 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Standard/Alpha/2004-02-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Standard Alpha, Darksteel +Type:Historic +Subtype:Standard +Effective:2004-02-20 +Sets:LEA +Banned:Ancestral Recall, Animate Artifact, Animate Dead, Animate Wall, Ankh of Mishra, Armageddon, Aspect of Wolf, Badlands, Bad Moon, Balance, Basalt Monolith, Bayou, Benalish Hero, Berserk, Black Knight, Black Lotus, Black Vise, Black Ward, Blaze of Glory, Blessing, Blue Elemental Blast, Blue Ward, Braingeyser, Burrowing, Camouflage, Castle, Celestial Prism, Channel, Chaoslace, Chaos Orb, Clockwork Beast, Cockatrice, Consecrate Land, Conservator, Contract from Below, Control Magic, Conversion, Copper Tablet, Copy Artifact, Counterspell, Creature Bond, Crusade, Cursed Land, Cyclopean Tomb, Dark Ritual, Darkpact, Deathgrip, Deathlace, Death Ward, Demonic Attorney, Demonic Hordes, Demonic Tutor, Dingus Egg, Disenchant, Disintegrate, Dragon Whelp, Drain Life, Drain Power, Dwarven Warriors, Earthbind, Earth Elemental, Earthquake, Elvish Archers, Evil Presence, False Orders, Farmstead, Fastbond, Feedback, Fire Elemental, Firebreathing, Fog, Forcefield, Force of Nature, Fork, Frozen Shade, Gaea's Liege, Gauntlet of Might, Glasses of Urza, Gloom, Goblin Balloon Brigade, Granite Gargoyle, Gray Ogre, Green Ward, Guardian Angel, Helm of Chatzuk, The Hive, Holy Armor, Howl from Beyond, Hurloon Minotaur, Hurricane, Hypnotic Specter, Ice Storm, Illusionary Mask, Instill Energy, Ironclaw Orcs, Ironroot Treefolk, Island Sanctuary, Jade Monolith, Jade Statue, Jump, Keldon Warlord, Kormus Bell, Kudzu, Lance, Ley Druid, Library of Leng, Lich, Lifeforce, Lifelace, Lifetap, Lightning Bolt, Living Artifact, Living Lands, Living Wall, Llanowar Elves, Lord of Atlantis, Lord of the Pit, Magical Hack, Mana Flare, Mana Short, Mana Vault, Manabarbs, Meekstone, Merfolk of the Pearl Trident, Mesa Pegasus, Mind Twist, Mons's Goblin Raiders, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Natural Selection, Nether Shadow, Nettling Imp, Nevinyrral's Disk, Northern Paladin, Obsianus Golem, Orcish Oriflamme, Paralyze, Pearled Unicorn, Personal Incarnation, Pestilence, Phantasmal Forces, Phantasmal Terrain, Phantom Monster, Pirate Ship, Plague Rats, Plateau, Power Leak, Power Sink, Power Surge, Prodigal Sorcerer, Psionic Blast, Psychic Venom, Purelace, Raging River, Red Elemental Blast, Red Ward, Regrowth, Resurrection, Reverse Damage, Righteousness, Rock Hydra, Roc of Kher Ridges, Sacrifice, Savannah, Scavenging Ghoul, Scrubland, Scryb Sprites, Sea Serpent, Sedge Troll, Sengir Vampire, Shanodin Dryads, Simulacrum, Sinkhole, Siren's Call, Sleight of Mind, Smoke, Sol Ring, Soul Net, Spell Blast, Stasis, Stone Giant, Sunglasses of Urza, Swords to Plowshares, Taiga, Thicket Basilisk, Thoughtlace, Timber Wolves, Timetwister, Time Vault, Time Walk, Tranquility, Tropical Island, Tsunami, Tundra, Tunnel, Twiddle, Two-Headed Giant of Foriys, Underground Sea, Uthden Troll, Vesuvan Doppelganger, Veteran Bodyguard, Volcanic Eruption, Wall of Bone, Wall of Brambles, Wall of Fire, Wall of Ice, Wall of Water, Wall of Wood, Wanderlust, War Mammoth, Warp Artifact, Water Elemental, Weakness, Web, Wheel of Fortune, White Ward, Wild Growth, Will-o'-the-Wisp, Winter Orb, Word of Command, Zombie Master \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/1996-05-01.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1996-05-01.txt new file mode 100644 index 00000000000..2daf4e54fa8 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1996-05-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Type I.5, 05/01/96 +Type:Historic +Subtype:Legacy +Effective:1996-05-01 +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, Feldon's Cane, Fork, Ivory Tower, Jeweled Bird, 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, Tempest Efreet, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/1996-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1996-07-01.txt new file mode 100644 index 00000000000..00bbe25759d --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1996-07-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Type I.5, 07/01/96 +Type:Historic +Subtype:Legacy +Effective:1996-07-01 +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, 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 Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/1996-07-10.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1996-07-10.txt new file mode 100644 index 00000000000..c5794e4602a --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1996-07-10.txt @@ -0,0 +1,6 @@ +[format] +Name:Type I.5, 07/10/96 +Type:Historic +Subtype:Legacy +Effective:1996-07-10 +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, 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 Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/1996-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1996-10-01.txt new file mode 100644 index 00000000000..8833a85834c --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1996-10-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Type I.5, 10/01/96 +Type:Historic +Subtype:Legacy +Effective:1996-10-01 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, 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 Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/1996-11-08.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1996-11-08.txt new file mode 100644 index 00000000000..e67472f8ba4 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1996-11-08.txt @@ -0,0 +1,6 @@ +[format] +Name:Type I.5, Mirage +Type:Historic +Subtype:Legacy +Effective:1996-11-08 +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 Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/1997-01-01.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1997-01-01.txt new file mode 100644 index 00000000000..035c19c5b64 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1997-01-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Type I.5, 01/01/1997 +Type:Historic +Subtype:Legacy +Effective:1997-01-01 +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 Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Timetwister, Time Walk, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/1997-03-03.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1997-03-03.txt new file mode 100644 index 00000000000..40cac1a4806 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1997-03-03.txt @@ -0,0 +1,6 @@ +[format] +Name:Type I.5, Visions +Type:Historic +Subtype:Legacy +Effective:1997-03-03 +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 Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Sol Ring, Shahrazad, Strip Mine, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/1997-04-01.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1997-04-01.txt new file mode 100644 index 00000000000..a094b240d7d --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1997-04-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Type I.5, 04/01/97 +Type:Historic +Subtype:Legacy +Effective:1997-04-01 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, 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, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Underworld Dreams, Wheel of Fortune, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/1999-01-01.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1999-01-01.txt new file mode 100644 index 00000000000..669941db9e1 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1999-01-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Classic-Restricted, 01/01/99 +Type:Historic +Subtype:Legacy +Effective:1999-01-01 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Candelabra of Tawnos, Channel, Chaos Orb, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Divine Intervention, Falling Star, Fastbond, Fork, Ivory Tower, Jeweled Bird, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Walk, Timetwister, Timmerian Fiends, Tolarian Academy, Underworld Dreams, Wheel of Fortune, Windfall, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/1999-04-01.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1999-04-01.txt new file mode 100644 index 00000000000..18dd74b83ca --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1999-04-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Classic-Restricted, 04/01/99 +Type:Historic +Subtype:Legacy +Effective:1999-04-01 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Divine Intervention, Falling Star, Fastbond, Fork, Ivory Tower, Jeweled Bird, Library of Alexandria, Memory Jar, Mind Twist, Mirror Universe, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Rebirth, Recall, Regrowth, Shahrazad, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tolarian Academy, Underworld Dreams, Wheel of Fortune, Windfall, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/1999-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1999-10-01.txt new file mode 100644 index 00000000000..62e191d990b --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/1999-10-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Type 1.5, 10/01/99 +Type:Historic +Subtype:Legacy +Effective:1999-10-01 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Rebirth, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/2000-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/2000-10-01.txt new file mode 100644 index 00000000000..ba4a221fda2 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/2000-10-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Type 1.5, 10/01/00 +Type:Historic +Subtype:Legacy +Effective:2000-10-01 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/2002-01-01.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/2002-01-01.txt new file mode 100644 index 00000000000..0c5bddb88ad --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/2002-01-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Type 1.5, 01/01/02 +Type:Historic +Subtype:Legacy +Effective:2002-01-01 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fact or Fiction, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/2003-04-01.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/2003-04-01.txt new file mode 100644 index 00000000000..bb5855d0b42 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/2003-04-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Type 1.5, 04/01/03 +Type:Historic +Subtype:Legacy +Effective:2003-04-01 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/2003-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/2003-07-01.txt new file mode 100644 index 00000000000..461c562ed48 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/2003-07-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Type 1.5, Scourge +Type:Historic +Subtype:Legacy +Effective:2003-07-01 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Black Lotus, Braingeyser, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Gush, Jeweled Bird, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/2004-01-01.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/2004-01-01.txt new file mode 100644 index 00000000000..b2f9771d812 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/2004-01-01.txt @@ -0,0 +1,6 @@ +[format] +Name:Type 1.5, 01/01/04 +Type:Historic +Subtype:Legacy +Effective:2004-01-01 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Black Lotus, Braingeyser, Bronze Tablet, Burning Wish, Channel, Chaos Orb, Chrome Mox, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Gush, Jeweled Bird, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/2004-02-20.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/2004-02-20.txt new file mode 100644 index 00000000000..e28d909fab4 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/2004-02-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Type 1.5, Darksteel +Type:Historic +Subtype:Legacy +Effective:2004-02-20 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Black Lotus, Braingeyser, Bronze Tablet, Burning Wish, Channel, Chaos Orb, Chrome Mox, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Gush, Jeweled Bird, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/2004-06-20.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/2004-06-20.txt new file mode 100644 index 00000000000..9048524a445 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/2004-06-20.txt @@ -0,0 +1,6 @@ +[format] +Name:Type 1.5, Fifth Dawn +Type:Historic +Subtype:Legacy +Effective:2004-06-20 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Black Lotus, Braingeyser, Bronze Tablet, Burning Wish, Channel, Chaos Orb, Chrome Mox, Contract from Below, Crop Rotation, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Falling Star, Fastbond, Fork, Frantic Search, Grim Monolith, Gush, Jeweled Bird, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Rebirth, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will, Zuran Orb \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/2004-09-20.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/2004-09-20.txt new file mode 100644 index 00000000000..be6af748b18 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/2004-09-20.txt @@ -0,0 +1,6 @@ +[format] +Name:"Type 1.5", 09/20/04 +Type:Historic +Subtype:Legacy +Effective:2004-09-20 +Banned:Amulet of Quoz, Ancestral Recall, Balance, Bazaar of Baghdad, Black Lotus, Black Vise, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Consultation, Demonic Tutor, Dream Halls, Earthcraft, Entomb, Falling Star, Fastbond, Frantic Search, Goblin Recruiter, Grim Monolith, Gush, Hermit Druid, Illusionary Mask, Jeweled Bird, Land Tax, Library of Alexandria, Mana Crypt, Mana Drain, Mana Vault, Memory Jar, Metalworker, Mind Over Matter, Mind Twist, Mind's Desire, Mishra's Workshop, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Necropotence, Oath of Druids, Rebirth, Replenish, Skullclamp, Sol Ring, Strip Mine, Tempest Efreet, Time Spiral, Time Walk, Timetwister, Timmerian Fiends, Tinker, Tolarian Academy, Vampiric Tutor, Wheel of Fortune, Windfall, Worldgorger Dragon, Yawgmoth's Bargain, Yawgmoth's Will \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/1996-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/1996-10-01.txt new file mode 100644 index 00000000000..5308d82c348 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/1996-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I.5 Alpha, 10/01/96 +Type:Historic +Subtype:Legacy +Effective:1996-10-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Channel, Chaos Orb, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Fork, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Time Walk, Timetwister, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/1996-11-08.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/1996-11-08.txt new file mode 100644 index 00000000000..db956fec2c3 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/1996-11-08.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I.5 Alpha, 11/08/96 +Type:Historic +Subtype:Legacy +Effective:1996-11-08 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Channel, Chaos Orb, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Fork, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Time Walk, Timetwister, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/1997-04-01.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/1997-04-01.txt new file mode 100644 index 00000000000..8cfad5cd670 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/1997-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I.5 Alpha, 04/01/97 +Type:Historic +Subtype:Legacy +Effective:1997-04-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Channel, Chaos Orb, Contract from Below, Copy Artifact, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Fork, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Time Walk, Timetwister, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/1999-04-01.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/1999-04-01.txt new file mode 100644 index 00000000000..fd1c54cff73 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/1999-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Classic-Restricted Alpha, 04/01/99 +Type:Historic +Subtype:Legacy +Effective:1999-04-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Fork, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Time Walk, Timetwister, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/1999-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/1999-10-01.txt new file mode 100644 index 00000000000..fd4cdc53072 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/1999-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5 Alpha, 10/01/99 +Type:Historic +Subtype:Legacy +Effective:1999-10-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Fork, Mana Vault, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Time Walk, Timetwister, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/2003-04-01.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/2003-04-01.txt new file mode 100644 index 00000000000..e2df520cbed --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/2003-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1.5 Alpha, 04/01/03 +Type:Historic +Subtype:Legacy +Effective:2003-04-01 +Sets:LEA +Banned:Ancestral Recall, Balance, Black Lotus, Braingeyser, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Fork, Mana Vault, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Time Walk, Timetwister, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/2004-09-20.txt b/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/2004-09-20.txt new file mode 100644 index 00000000000..3d52b4c5a34 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Type 1.5/Alpha/2004-09-20.txt @@ -0,0 +1,7 @@ +[format] +Name:"Type 1.5" Alpha, 09/20/04 +Type:Historic +Subtype:Legacy +Effective:2004-09-20 +Sets:LEA +Banned:Ancestral Recall, Balance, Black Lotus, Black Vise, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Demonic Tutor, Fastbond, Mana Vault, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Sol Ring, Time Walk, Timetwister, Wheel of Fortune \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1994-01-25.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1994-01-25.txt new file mode 100644 index 00000000000..63ebac4c5b0 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1994-01-25.txt @@ -0,0 +1,7 @@ +[format] +Name:Official Tournament Rules, 1st edition +Type:Historic +Subtype:Vintage +Effective:1994-01-25 +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, Orcish Oriflamme, Rukh Egg, Sol Ring, Timetwister, Time Vault, Time Walk +Banned:Contract from Below, Darkpact, Demonic Attorney, Jeweled Bird, Shahrazad \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1994-02-23.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1994-02-23.txt new file mode 100644 index 00000000000..2338313e6a7 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1994-02-23.txt @@ -0,0 +1,7 @@ +[format] +Name:Official Tournament Rules, revised 2/23/94 +Type:Historic +Subtype:Vintage +Effective:1994-02-23 +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 +Banned:Contract from Below, Darkpact, Demonic Attorney, Jeweled Bird, Shahrazad \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1994-03-23.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1994-03-23.txt new file mode 100644 index 00000000000..df4438f9aad --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1994-03-23.txt @@ -0,0 +1,7 @@ +[format] +Name:Official Tournament Rules, revised 3/23/94 +Type:Historic +Subtype:Vintage +Effective:1994-03-23 +Restricted:Ali from Cairo, Ancestral Recall, Berserk, Black Lotus, Braingeyser, Channel, Copy Artifact, Demonic Tutor, Dingus Egg, Gauntlet of Might, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Contract from Below, Darkpact, Demonic Attorney, Jeweled Bird, Shahrazad, Time Vault \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1994-05.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1994-05.txt new file mode 100644 index 00000000000..480775f852a --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1994-05.txt @@ -0,0 +1,7 @@ +[format] +Name:Official Tournament Rules, revised 5/94 +Type:Historic +Subtype:Vintage +Effective:1994-05 +Restricted:Ali from Cairo, Ancestral Recall, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Channel, Copy Artifact, Demonic Tutor, Feldon's Cane, Ivory Tower, Library of Alexandria, Mox Emerald, Mox Jet, Mox Pearl, Mox Ruby, Mox Sapphire, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Contract from Below, Darkpact, Demonic Attorney, Jeweled Bird, Shahrazad, Time Vault \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1994-06-10.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1994-06-10.txt new file mode 100644 index 00000000000..5cf1401bd93 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1994-06-10.txt @@ -0,0 +1,8 @@ +[format] +Name:Legends +Type:Historic +Subtype:Vintage +Effective:1994-06-10 +RestrictedLegendary:true +Restricted:Ali from Cairo; Ancestral Recall; Berserk; Black Lotus; Braingeyser; Candelabra of Tawnos; Channel; Copy Artifact; Demonic Tutor; Feldon's Cane; Ivory Tower; Library of Alexandria; Mox Pearl; Mox Emerald; Mox Ruby; Mox Sapphire; Mox Jet; Regrowth; Sol Ring; Timetwister; Time Walk; Wheel of Fortune +Banned:Contract from Below; Darkpact; Demonic Attorney; Jeweled Bird; Shahrazad; Time Vault diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1994-06-13.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1994-06-13.txt new file mode 100644 index 00000000000..64f0cfeaab9 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1994-06-13.txt @@ -0,0 +1,8 @@ +[format] +Name:Official Tournament Rules, 6/13/94 Version +Type:Historic +Subtype:Vintage +Effective:1994-06-13 +RestrictedLegendary:true +Restricted:Ali from Cairo, Ancestral Recall, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Channel, Copy Artifact, Demonic Tutor, Feldon's Cane, Ivory Tower, Library of Alexandria, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Bronze Tablet, Contract from Below, Darkpact, Demonic Attorney, Jeweled Bird, Shahrazad, Time Vault \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1994-08-02.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1994-08-02.txt new file mode 100644 index 00000000000..812baba8f56 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1994-08-02.txt @@ -0,0 +1,8 @@ +[format] +Name:Official Tournament Rules, 8/2/94 Version, give or take +Type:Historic +Subtype:Vintage +Effective:1994-08-02 +RestrictedLegendary:true +Restricted:Ali from Cairo, Ancestral Recall, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Channel, Chaos Orb, Copy Artifact, Demonic Tutor, Falling Star, Feldon's Cane, Ivory Tower, Library of Alexandria, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Sword of the Ages, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune +Banned:Bronze Tablet, Contract from Below, Darkpact, Demonic Attorney, Jeweled Bird, Rebirth, Tempest Efreet, Divine Intervention, Shahrazad, Time Vault \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1994-10-10.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1994-10-10.txt new file mode 100644 index 00000000000..45ceb0cf437 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1994-10-10.txt @@ -0,0 +1,8 @@ +[format] +Name:Official Tournament Rules, 10/10/94 Version +Type:Historic +Subtype:Vintage +Effective:1994-10-10 +RestrictedLegendary:true +Restricted:Ali from Cairo, Ancestral Recall, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Channel, Chaos Orb, Copy Artifact, Demonic Tutor, Falling Star, Feldon's Cane, Ivory Tower, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Sword of the Ages, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune +Banned:Bronze Tablet, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Jeweled Bird, Rebirth, Shahrazad, Time Vault, Tempest Efreet \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1995-04-19.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1995-04-19.txt new file mode 100644 index 00000000000..b3c0589bec7 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1995-04-19.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I, Fourth Edition +Type:Historic +Subtype:Vintage +Effective:1995-04-19 +Restricted:Ali from Cairo, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Channel, Chaos Orb, Copy Artifact, Demonic Tutor, Falling Star, Feldon's Cane, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Sword of the Ages, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune +Banned:Bronze Tablet, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Jeweled Bird, Rebirth, Shahrazad, Time Vault, Tempest Efreet \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1995-07-13.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1995-07-13.txt new file mode 100644 index 00000000000..de9fc62e29d --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1995-07-13.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I, July 13, 1995 +Type:Historic +Subtype:Vintage +Effective:1995-07-13 +Restricted:Ali from Cairo, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Channel, Chaos Orb, Copy Artifact, Demonic Tutor, Falling Star, Feldon's Cane, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Sword of the Ages, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune +Banned:Amulet of Quoz, Bronze Tablet, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Jeweled Bird, Rebirth, Shahrazad, Time Vault, Tempest Efreet \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1995-11-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1995-11-01.txt new file mode 100644 index 00000000000..524017daa87 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1995-11-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I, 11/01/95 +Type:Historic +Subtype:Vintage +Effective:1995-11-01 +Restricted:Ali from Cairo, Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Copy Artifact, Demonic Tutor, Feldon's Cane, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mind Twist, Mirror Universe, Mishra's Workshop, Mox Pearl, Mox Emerald, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Sword of the Ages, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Rebirth, Shahrazad, Time Vault, Tempest Efreet \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1996-02-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1996-02-01.txt new file mode 100644 index 00000000000..469f80aa18b --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1996-02-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I, 02/01/96 +Type:Historic +Subtype:Vintage +Effective:1996-02-01 +Restricted:Ali from Cairo, Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Candelabra of Tawnos, Copy Artifact, Demonic Tutor, 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, Sword of the Ages, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Time Vault, Tempest Efreet \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1996-04-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1996-04-01.txt new file mode 100644 index 00000000000..8c813956654 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1996-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I, 04/01/96 +Type:Historic +Subtype:Vintage +Effective:1996-04-01 +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Copy Artifact, Demonic Tutor, 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 +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1996-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1996-07-01.txt new file mode 100644 index 00000000000..d341f43d49a --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1996-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I, 07/01/96 +Type:Historic +Subtype:Vintage +Effective:1996-07-01 +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Candelabra of Tawnos, Copy Artifact, Demonic Tutor, Feldon's Cane, Fork, Ivory Tower, Library of Alexandria, Maze of Ith, Mirror Universe, Mishra's Workshop, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1996-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1996-10-01.txt new file mode 100644 index 00000000000..ad62b85c925 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1996-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type I, 10/01/96 +Type:Historic +Subtype:Vintage +Effective:1996-10-01 +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 Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1997-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1997-07-01.txt new file mode 100644 index 00000000000..e3da3d8d26f --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1997-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Classic, Weatherlight +Type:Historic +Subtype:Vintage +Effective:1997-07-01 +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 Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune, Zuran Orb +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1997-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1997-10-01.txt new file mode 100644 index 00000000000..f581e79cb2b --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1997-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Classic, 10/01/97 +Type:Historic +Subtype:Vintage +Effective:1997-10-01 +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 Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Strip Mine, Timetwister, Time Walk, Underworld Dreams, Wheel of Fortune +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1999-01-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1999-01-01.txt new file mode 100644 index 00000000000..ec44504c563 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1999-01-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Classic, 01/01/99 +Type:Historic +Subtype:Vintage +Effective:1999-01-01 +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 Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Walk, Tolarian Academy, Underworld Dreams, Wheel of Fortune, Windfall +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1999-04-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1999-04-01.txt new file mode 100644 index 00000000000..36d051b0bf0 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1999-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Classic, 04/01/99 +Type:Historic +Subtype:Vintage +Effective:1999-04-01 +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Demonic Tutor, Fastbond, Fork, Ivory Tower, Library of Alexandria, Memory Jar, Mirror Universe, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tolarian Academy, Underworld Dreams, Wheel of Fortune, Windfall +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Divine Intervention, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Shahrazad, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/1999-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/1999-10-01.txt new file mode 100644 index 00000000000..8ffb36d7c5b --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/1999-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1, 10/01/99 +Type:Historic +Subtype:Vintage +Effective:1999-10-01 +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Crop Rotation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Mind Twist, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/2000-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/2000-10-01.txt new file mode 100644 index 00000000000..f138f64084e --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/2000-10-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1, 10/01/00 +Type:Historic +Subtype:Vintage +Effective:2000-10-01 +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/2001-03-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/2001-03-01.txt new file mode 100644 index 00000000000..235915aeacb --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/2001-03-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1, Planeshift +Type:Historic +Subtype:Vintage +Effective:2001-03-01 +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/2002-01-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/2002-01-01.txt new file mode 100644 index 00000000000..aa81ddc876e --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/2002-01-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1, 01/01/02 +Type:Historic +Subtype:Vintage +Effective:2002-01-01 +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Enlightened Tutor, Fact or Fiction, Fastbond, Fork, Frantic Search, Grim Monolith, Hurkyl's Recall, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Recall, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/2003-04-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/2003-04-01.txt new file mode 100644 index 00000000000..4778991899b --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/2003-04-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1, Legions +Type:Historic +Subtype:Vintage +Effective:2003-03-01 +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Fork, Frantic Search, Grim Monolith, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/2003-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/2003-07-01.txt new file mode 100644 index 00000000000..f2a73dda5f9 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/2003-07-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1, Scourge +Type:Historic +Subtype:Vintage +Effective:2003-07-01 +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Braingeyser, Channel, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Fork, Frantic Search, Grim Monolith, Gush, Library of Alexandria, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/2004-01-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/2004-01-01.txt new file mode 100644 index 00000000000..bf528f62ada --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/2004-01-01.txt @@ -0,0 +1,7 @@ +[format] +Name:Type 1, 01/01/04 +Type:Historic +Subtype:Vintage +Effective:2004-01-01 +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Braingeyser, Burning Wish, Channel, Chrome Mox, Crop Rotation, Demonic Consultation, Demonic Tutor, Doomsday, Dream Halls, Earthcraft, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Fork, Frantic Search, Grim Monolith, Gush, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/2004-09-20.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/2004-09-20.txt new file mode 100644 index 00000000000..e5ca7294906 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/2004-09-20.txt @@ -0,0 +1,7 @@ +[format] +Name:Vintage, 09/20/04 +Type:Historic +Subtype:Vintage +Effective:2004-09-20 +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Burning Wish, Channel, Chrome Mox, Crop Rotation, Demonic Consultation, Demonic Tutor, Dream Halls, Enlightened Tutor, Entomb, Fact or Fiction, Fastbond, Frantic Search, Grim Monolith, Gush, Library of Alexandria, Lion's Eye Diamond, Lotus Petal, Mana Crypt, Mana Vault, Memory Jar, Mind Over Matter, Mind Twist, Mind's Desire, Mox Diamond, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Mystical Tutor, Necropotence, Regrowth, Sol Ring, Strip Mine, Stroke of Genius, Timetwister, Time Spiral, Time Walk, Tinker, Tolarian Academy, Vampiric Tutor, Voltaic Key, Wheel of Fortune, Windfall, Yawgmoth's Bargain, Yawgmoth's Will +Banned:Amulet of Quoz, Bronze Tablet, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Falling Star, Jeweled Bird, Rebirth, Tempest Efreet, Timmerian Fiends \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/Alpha/1996-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/Alpha/1996-10-01.txt new file mode 100644 index 00000000000..6041efff665 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/Alpha/1996-10-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type I Alpha, 10/01/96 +Type:Historic +Subtype:Vintage +Effective:1996-10-01 +Sets:LEA +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Braingeyser, Copy Artifact, Demonic Tutor, Fastbond, Fork, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Mind Twist \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/Alpha/1997-07-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/Alpha/1997-07-01.txt new file mode 100644 index 00000000000..a67d4c2d457 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/Alpha/1997-07-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Classic Alpha, 07/01/97 +Type:Historic +Subtype:Vintage +Effective:1997-07-01 +Sets:LEA +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Copy Artifact, Demonic Tutor, Fastbond, Fork, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Mind Twist \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/Alpha/1998-11-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/Alpha/1998-11-01.txt new file mode 100644 index 00000000000..a75f5a5cfe6 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/Alpha/1998-11-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Classic Alpha, 11/01/98 +Type:Historic +Subtype:Vintage +Effective:1998-11-01 +Sets:LEA +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Demonic Tutor, Fastbond, Fork, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Channel, Chaos Orb, Contract from Below, Darkpact, Demonic Attorney, Mind Twist \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/Alpha/2000-10-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/Alpha/2000-10-01.txt new file mode 100644 index 00000000000..b75cf527269 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/Alpha/2000-10-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1 Alpha, 10/01/00 +Type:Historic +Subtype:Vintage +Effective:2000-10-01 +Sets:LEA +Restricted:Ancestral Recall, Balance, Berserk, Black Lotus, Black Vise, Braingeyser, Channel, Demonic Tutor, Fastbond, Fork, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Chaos Orb, Contract from Below, Darkpact, Demonic Attorney \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/Alpha/2003-04-01.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/Alpha/2003-04-01.txt new file mode 100644 index 00000000000..28d2a705231 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/Alpha/2003-04-01.txt @@ -0,0 +1,8 @@ +[format] +Name:Type 1 Alpha, 04/01/03 +Type:Historic +Subtype:Vintage +Effective:2003-04-01 +Sets:LEA +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Braingeyser, Channel, Demonic Tutor, Fastbond, Fork, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Chaos Orb, Contract from Below, Darkpact, Demonic Attorney \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/Vintage/Alpha/2004-09-20.txt b/forge-gui/res/formats/Historic/prototypes/Vintage/Alpha/2004-09-20.txt new file mode 100644 index 00000000000..36ef8ecd8dc --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/Vintage/Alpha/2004-09-20.txt @@ -0,0 +1,8 @@ +[format] +Name:Vintage Alpha, 09/20/04 +Type:Historic +Subtype:Vintage +Effective:2004-09-20 +Sets:LEA +Restricted:Ancestral Recall, Balance, Black Lotus, Black Vise, Channel, Demonic Tutor, Fastbond, Mind Twist, Mox Emerald, Mox Pearl, Mox Ruby, Mox Sapphire, Mox Jet, Regrowth, Sol Ring, Timetwister, Time Walk, Wheel of Fortune +Banned:Chaos Orb, Contract from Below, Darkpact, Demonic Attorney \ No newline at end of file diff --git a/forge-gui/res/formats/Historic/prototypes/release-dates.txt b/forge-gui/res/formats/Historic/prototypes/release-dates.txt new file mode 100644 index 00000000000..afc96753f65 --- /dev/null +++ b/forge-gui/res/formats/Historic/prototypes/release-dates.txt @@ -0,0 +1,278 @@ +#These dates would be stored in the corresponding edition file +#Example: +#Legal=2000-10-01 + +[LEA] +Legal=1994-01-25 +IllegalInNonAlpha=1996-10-01 +NeverStandard=True +NeverExtended=True + +[LEB] +Legal=1994-01-25 +NeverStandard=True +NeverExtended=True + +[2ED] +Legal=1994-01-25 +NeverStandard=True +NeverExtended=True + +[ARN] +Legal=1994-01-25 +OutOfStandard=1995-01-10 +NeverExtended=True + +[DRC94] +Legal=1994-03-04 +#check this date +NeverStandard=True +NeverExtended=True + +[ATQ] +Legal=1994-03-04 +NeverStandard=True +NeverExtended=True + +[3ED] +Legal=1994-05-01 +OutOfStandard=1995-01-20 +#check this date +OutofExtended=1999-10-01 + +[LEG] +Legal=1994-06-10 +NeverStandard=True +NeverExtended=True + +[DRK] +Legal=1994-08-10 +OutOfStandard=1995-06-01 +#check date +OutOfExtended=1999-10-01 + +[ARENA] +Legal=1994-11-15 +#check date +NeverStandard=True +OutOfExtended=1999-10-01 + +[FEM] +Legal=1994-11-15 +OutOfStandard=1997-01-01 +OutOfExtended=1999-10-01 + +[WW] +Legal=1995-04-19 +#check date +NeverStandard=True +OutOfExtended=1999-10-01 + +[SHC] +Legal=1995-04-19 +#check date +NeverStandard=True +OutOfExtended=1999-10-01 + +[FS] +Legal=1995-04-19 +#check date +NeverStandard=True +OutOfExtended=1999-10-01 + +[4ED] +Legal=1995-04-19 +OutOfStandard=1997-04-24 +OutOfExtended=1999-10-01 + +[ICE] +Legal=1995-06 +OutOfStandard=1997-01-01 +Standard2=1997-07-01 +OutOfStandard2=1997-11-01 +OutOfExtended=2002-11-01 + +[CHR] +Legal=1995-07-13 +OutOfStandard=1997-04-24 +OutOfExtended=2002-11-01 +OutOfExtended=1999-10-01 + +[HML] +Legal=1995-11-13 +OutOfStandard=1997-03-03 +Standard2=1997-07-01 +OutOfStandard2=1997-11-01 +OutOfExtended=2002-11-01 + +[ALL] +Legal=1996-07-10 +Standard2=1997-07-01 +OutOfStandard=1997-11-01 +OutOfExtended=2002-11-01 + +[MIR] +Legal=1996-11-08 +OutOfStandard=1998-11-01 +OutOfExtended=2002-11-01 + +[VIS] +Legal=1997-03-03 +OutOfStandard=1998-11-01 +OutOfExtended=2002-11-01 + +[5ED] +Legal=1997-04-24 +OutOfStandard=1999-06-01 +OutOfExtended=2002-11-01 + +[WTH] +Legal=1997-07-01 +OutOfStandard=1998-11-01 +OutOfExtended=2002-11-01 + +[TMP] +Legal=1997-11-01 +OutOfStandard=1999-11-01 +OutOfExtended=2005-10-20 + +[STH] +Legal=1998-04-01 +OutOfStandard=1999-11-01 +OutOfExtended=2005-10-20 + +[EXO] +Legal=1998-07-01 +OutOfStandard=1999-11-01 +OutOfExtended=2005-10-20 + +[USG] +Legal=1998-11-01 +OutOfStandard=2000-11-01 +OutOfExtended=2005-10-20 + +[ULG] +Legal=1999-03-01 +OutOfStandard=2000-11-01 +OutOfExtended=2005-10-20 + +[6ED] +Legal=1999-06-01 +OutOfStandard=2001-05-01 +OutOfExtended=2005-10-20 + +[UDS] +Legal=1999-07-01 +OutOfStandard=2000-11-01 +OutOfExtended=2005-10-20 + +[MMQ] +Legal=1999-10-01 +OutOfStandard=2001-11-01 +OutOfExtended=2005-10-20 + +[NMS] +Legal=2000-03-01 +OutOfStandard=2001-11-01 +OutOfExtended=2005-10-20 + +[PCY] +Legal=2000-07-01 +OutOfStandard=2001-11-01 +OutOfExtended=2005-10-20 + +[INV] +Legal=2000-11-01 +OutOfStandard=2002-11-01 + +[PLS] +Legal=2001-03-01 +OutOfStandard=2002-11-01 + +[7ED] +Legal=2001-05-01 +OutOfStandard=2003-09-01 + +[APC] +Legal=2001-07-01 +OutOfStandard=2002-11-01 + +[ODY] +Legal=2001-11-01 +OutOfStandard=2003-10-20 + +[TOR] +Legal=2002-03-01 +OutOfStandard=2003-10-20 + +[JUD] +Legal=2002-07-01 +OutOfStandard=2003-10-20 + +[ONS] +Legal=2002-11-01 +OutOfStandard=2004-10-20 + +[LGN] +Legal=2003-03-01 +OutOfStandard=2004-10-20 + +[SCG] +Legal=2003-07-01 +OutOfStandard=2004-10-20 + +[8ED] +Legal=2003-09-01 +OutOfStandard=2005-08-20 + +[MRD] +Legal=2003-10-20 +OutOfStandard=2005-10-20 + +[DST] +Legal=2004-02-20 +OutOfStandard=2005-10-20 + +[5DN] +Legal=2004-06-20 +OutOfStandard=2005-10-20 + +[CHK] +Legal=2004-10-20 + +[BOK] +Legal=2005-02-20 + +[POR] +Legal=2005-10-20 +NeverStandard=True +NeverExtended=True + +[PO2] +Legal=2005-10-20 +NeverStandard=True +NeverExtended=True + +[PTK] +Legal=2005-10-20 +NeverStandard=True +NeverExtended=True + +[S99] +Legal=2005-10-20 +NeverStandard=True +NeverExtended=True + +[S00] +Legal=2005-10-20 +NeverStandard=True +NeverExtended=True + +[SOK] +Legal=2005-06-20 + +[9ED] +Legal=2005-08-20 + +[RAV] +Legal=2005-10-20 \ No newline at end of file diff --git a/forge-gui/res/formats/Legacy.txt b/forge-gui/res/formats/Sanctioned/Legacy.txt similarity index 98% rename from forge-gui/res/formats/Legacy.txt rename to forge-gui/res/formats/Sanctioned/Legacy.txt index 088d1b40fc4..c2856eda962 100644 --- a/forge-gui/res/formats/Legacy.txt +++ b/forge-gui/res/formats/Sanctioned/Legacy.txt @@ -1,5 +1,6 @@ [format] Name:Legacy Order:105 +Subtype:Legacy Type:Sanctioned Banned:Adriana's Valor; Advantageous Proclamation; Assemble the Rank and Vile; Backup Plan; Brago's Favor; Double Stroke; Echoing Boon; Emissary's Ploy; Hired Heist; Hold the Perimeter; Hymn of the Wilds; Immediate Action; Incendiary Dissent; Iterative Analysis; Muzzio's Preparations; Natural Unity; Power Play; Secret Summoning; Secrets of Paradise; Sentinel Dispatch; Sovereign's Realm; Summoner's Bond; 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; Bazaar of Baghdad; Black Lotus; Channel; Chaos Orb; Demonic Consultation; Demonic Tutor; Dig Through Time; Earthcraft; Falling Star; Fastbond; Flash; Frantic Search; Goblin Recruiter; Gush; Hermit Druid; Imperial Seal; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mental Misstep; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Sensei's Divining Top; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Survival of the Fittest; Time Vault; Time Walk; Timetwister; Tinker; Tolarian Academy; Treasure Cruise; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will diff --git a/forge-gui/res/formats/Modern.txt b/forge-gui/res/formats/Sanctioned/Modern.txt similarity index 98% rename from forge-gui/res/formats/Modern.txt rename to forge-gui/res/formats/Sanctioned/Modern.txt index a652b831929..2c45138ec37 100644 --- a/forge-gui/res/formats/Modern.txt +++ b/forge-gui/res/formats/Sanctioned/Modern.txt @@ -1,6 +1,7 @@ [format] Name:Modern Order:102 +Subtype:Modern Type:Sanctioned Sets:8ED, MRD, DST, 5DN, CHK, BOK, SOK, 9ED, RAV, GPT, DIS, CSP, TSP, TSB, PLC, FUT, 10E, LRW, EVE, SHM, MOR, ALA, CFX, ARB, M10, ZEN, WWK, ROE, M11, SOM, MBS, NPH, M12, ISD, DKA, AVR, M13, RTR, GTC, DGM, M14, THS, BNG, JOU, M15, KTK, FRF, DTK, MM2, ORI, BFZ, OGW, SOI, EMN, KLD, AER, AKH, W17, HOU, XLN, RIX, DOM Banned:Ancient Den; Birthing Pod; Blazing Shoal; Chrome Mox; Cloudpost; Dark Depths; Deathrite Shaman; Dig Through Time; Dread Return; Eye of Ugin; Gitaxian Probe; Glimpse of Nature; Golgari Grave-Troll; Great Furnace; Green Sun's Zenith; Hypergenesis; Mental Misstep; Ponder; Preordain; Punishing Fire; Rite of Flame; Seat of the Synod; Second Sunrise; Seething Song; Sensei's Divining Top; Skullclamp; Splinter Twin; Stoneforge Mystic; Summer Bloom; Treasure Cruise; Tree of Tales; Umezawa's Jitte; Vault of Whispers diff --git a/forge-gui/res/formats/standard.txt b/forge-gui/res/formats/Sanctioned/Standard.txt similarity index 93% rename from forge-gui/res/formats/standard.txt rename to forge-gui/res/formats/Sanctioned/Standard.txt index 6e14dec9cb1..ddbd395bda1 100644 --- a/forge-gui/res/formats/standard.txt +++ b/forge-gui/res/formats/Sanctioned/Standard.txt @@ -1,6 +1,7 @@ [format] Name:Standard Order:101 +Subtype:Standard Type:Sanctioned Sets:KLD, AER, AKH, W17, HOU, XLN, RIX, DOM Banned: Attune with Aether; Rogue Refiner; Rampaging Ferocidon; Ramunap Ruins; Smuggler's Copter; Aetherworks Marvel; Felidar Guardian diff --git a/forge-gui/res/formats/Vintage.txt b/forge-gui/res/formats/Sanctioned/Vintage.txt similarity index 98% rename from forge-gui/res/formats/Vintage.txt rename to forge-gui/res/formats/Sanctioned/Vintage.txt index a63f12f764b..f7dc5c7c4c8 100644 --- a/forge-gui/res/formats/Vintage.txt +++ b/forge-gui/res/formats/Sanctioned/Vintage.txt @@ -1,6 +1,7 @@ [format] Name:Vintage Order:104 +Subtype:Vintage Type:Sanctioned Banned:Adriana's Valor; Advantageous Proclamation; Assemble the Rank and Vile; Backup Plan; Brago's Favor; Double Stroke; Echoing Boon; Emissary's Ploy; Hired Heist; Hold the Perimeter; Hymn of the Wilds; Immediate Action; Incendiary Dissent; Iterative Analysis; Muzzio's Preparations; Natural Unity; Power Play; Secret Summoning; Secrets of Paradise; Sentinel Dispatch; Sovereign's Realm; Summoner's Bond; Unexpected Potential; Weight Advantage; Worldknit; Amulet of Quoz; Bronze Tablet; Contract from Below; Darkpact; Demonic Attorney; Jeweled Bird; Rebirth; Tempest Efreet; Timmerian Fiends; Chaos Orb; Falling Star; Shahrazad Restricted:Ancestral Recall; Balance; Black Lotus; Brainstorm; Chalice of the Void; Channel; Demonic Consultation; Demonic Tutor; Dig Through Time; Fastbond; Flash; Gitaxian Probe; Gush; Imperial Seal; Library of Alexandria; Lion's Eye Diamond; Lodestone Golem; Lotus Petal; Mana Crypt; Mana Vault; Memory Jar; Merchant Scroll; Mind's Desire; Monastery Mentor; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Ponder; Sol Ring; Strip Mine; Thorn of Amethyst; Time Vault; Time Walk; Timetwister; Tinker; Tolarian Academy; Treasure Cruise; Trinisphere; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Will diff --git a/forge-gui/src/main/java/forge/deck/DeckProxy.java b/forge-gui/src/main/java/forge/deck/DeckProxy.java index d120d57d496..a2691a5cc0a 100644 --- a/forge-gui/src/main/java/forge/deck/DeckProxy.java +++ b/forge-gui/src/main/java/forge/deck/DeckProxy.java @@ -53,6 +53,7 @@ public class DeckProxy implements InventoryItem { protected ColorSet color; protected ColorSet colorIdentity; protected Set formats; + protected Set exhaustiveFormats; private Integer mainSize = null; private Integer sbSize = null; private Integer avgCMC = null; @@ -145,6 +146,7 @@ public class DeckProxy implements InventoryItem { colorIdentity = null; highestRarity = null; formats = null; + exhaustiveFormats = null; edition = null; mainSize = null; sbSize = null; @@ -265,6 +267,13 @@ public class DeckProxy implements InventoryItem { return formats; } + public Set getExhaustiveFormats() { + if (exhaustiveFormats == null) { + exhaustiveFormats = FModel.getFormats().getAllFormatsOfDeck(getDeck(), true); + } + return exhaustiveFormats; + } + public String getFormatsString() { return StringUtils.join(Iterables.transform(getFormats(), GameFormat.FN_GET_NAME), ", "); } diff --git a/forge-gui/src/main/java/forge/itemmanager/AdvancedSearch.java b/forge-gui/src/main/java/forge/itemmanager/AdvancedSearch.java index 6f25c5fb471..65cd449f1c3 100644 --- a/forge-gui/src/main/java/forge/itemmanager/AdvancedSearch.java +++ b/forge-gui/src/main/java/forge/itemmanager/AdvancedSearch.java @@ -65,7 +65,7 @@ public class AdvancedSearch { return FModel.getMagicDb().getEditions().get(input.getEdition()); } }), - CARD_FORMAT("Format", PaperCard.class, FilterOperator.MULTI_LIST_OPS, new CustomListEvaluator((List)FModel.getFormats().getOrderedList()) { + CARD_FORMAT("Format", PaperCard.class, FilterOperator.MULTI_LIST_OPS, new CustomListEvaluator((List)FModel.getFormats().getFilterList()) { @Override protected GameFormat getItemValue(PaperCard input) { throw new RuntimeException("getItemValues should be called instead"); @@ -231,14 +231,14 @@ public class AdvancedSearch { return input.isFavoriteDeck(); } }), - DECK_FORMAT("Format", DeckProxy.class, FilterOperator.MULTI_LIST_OPS, new CustomListEvaluator((List)FModel.getFormats().getOrderedList()) { + DECK_FORMAT("Format", DeckProxy.class, FilterOperator.MULTI_LIST_OPS, new CustomListEvaluator((List)FModel.getFormats().getFilterList()) { @Override protected GameFormat getItemValue(DeckProxy input) { throw new RuntimeException("getItemValues should be called instead"); } @Override protected Set getItemValues(DeckProxy input) { - return input.getFormats(); + return input.getExhaustiveFormats(); } }), DECK_QUEST_WORLD("Quest World", DeckProxy.class, FilterOperator.MULTI_LIST_OPS, new CustomListEvaluator(ImmutableList.copyOf(FModel.getWorlds())) { diff --git a/forge-gui/src/main/java/forge/itemmanager/ColumnDef.java b/forge-gui/src/main/java/forge/itemmanager/ColumnDef.java index ff882167f9d..b568e81c5d9 100644 --- a/forge-gui/src/main/java/forge/itemmanager/ColumnDef.java +++ b/forge-gui/src/main/java/forge/itemmanager/ColumnDef.java @@ -334,7 +334,7 @@ public enum ColumnDef { if (deck == null) { return -1; } - Iterable all = deck.getFormats(); + Iterable all = deck.getExhaustiveFormats(); int acc = 0; for(GameFormat gf : all) { int ix = gf.getIndex(); diff --git a/forge-gui/src/main/java/forge/model/FModel.java b/forge-gui/src/main/java/forge/model/FModel.java index d4bbce371bf..460873b37f1 100644 --- a/forge-gui/src/main/java/forge/model/FModel.java +++ b/forge-gui/src/main/java/forge/model/FModel.java @@ -165,7 +165,8 @@ public final class FModel { ForgePreferences.DEV_MODE = preferences.getPrefBoolean(FPref.DEV_MODE_ENABLED); ForgePreferences.UPLOAD_DRAFT = ForgePreferences.NET_CONN; - formats = new GameFormat.Collection(new GameFormat.Reader( new File(ForgeConstants.FORMATS_DATA_DIR))); + formats = new GameFormat.Collection(new GameFormat.Reader( new File(ForgeConstants.FORMATS_DATA_DIR), + new File(ForgeConstants.USER_FORMATS_DIR), preferences.getPrefBoolean(FPref.LOAD_HISTORIC_FORMATS))); magicDb.setStandardPredicate(formats.getStandard().getFilterRules()); magicDb.setModernPredicate(formats.getModern().getFilterRules()); diff --git a/forge-gui/src/main/java/forge/properties/ForgeConstants.java b/forge-gui/src/main/java/forge/properties/ForgeConstants.java index b66931f06e1..193d2b6b6e1 100644 --- a/forge-gui/src/main/java/forge/properties/ForgeConstants.java +++ b/forge-gui/src/main/java/forge/properties/ForgeConstants.java @@ -208,6 +208,7 @@ public final class ForgeConstants { public static final String USER_CONQUEST_DIR = USER_DIR + "conquest" + PATH_SEPARATOR; public static final String USER_PREFS_DIR = USER_DIR + "preferences" + PATH_SEPARATOR; public static final String USER_GAMES_DIR = USER_DIR + "games" + PATH_SEPARATOR; + public static final String USER_FORMATS_DIR = USER_DIR + "customformats" + PATH_SEPARATOR; public static final String LOG_FILE = USER_DIR + "forge.log"; public static final String ACHIEVEMENTS_DIR = USER_DIR + "achievements" + PATH_SEPARATOR; public static final String DECK_DRAFT_DIR = DECK_BASE_DIR + "draft" + PATH_SEPARATOR; diff --git a/forge-gui/src/main/java/forge/properties/ForgePreferences.java b/forge-gui/src/main/java/forge/properties/ForgePreferences.java index f4d5e2ee15d..a2d95ee682e 100644 --- a/forge-gui/src/main/java/forge/properties/ForgePreferences.java +++ b/forge-gui/src/main/java/forge/properties/ForgePreferences.java @@ -159,6 +159,7 @@ public class ForgePreferences extends PreferencesStore { DEV_LOG_ENTRY_TYPE (GameLogEntryType.DAMAGE.toString()), LOAD_CARD_SCRIPTS_LAZILY ("false"), + LOAD_HISTORIC_FORMATS ("false"), DECK_DEFAULT_CARD_LIMIT ("4"), DECKGEN_SINGLETONS ("false"), diff --git a/forge-gui/src/main/java/forge/quest/QuestWinLoseController.java b/forge-gui/src/main/java/forge/quest/QuestWinLoseController.java index 92e0837191d..06226569840 100644 --- a/forge-gui/src/main/java/forge/quest/QuestWinLoseController.java +++ b/forge-gui/src/main/java/forge/quest/QuestWinLoseController.java @@ -501,7 +501,7 @@ public class QuestWinLoseController { final String preferredFormat = FModel.getQuestPreferences().getPref(QPref.BOOSTER_FORMAT); GameFormat pref = null; - for (final GameFormat f : FModel.getFormats().getOrderedList()) { + for (final GameFormat f : FModel.getFormats().getSanctionedList()) { formats.add(f); if (f.toString().equals(preferredFormat)) { pref = f; diff --git a/forge-gui/src/main/java/forge/quest/StartingPoolType.java b/forge-gui/src/main/java/forge/quest/StartingPoolType.java index 3f2bcb5d0fb..513a49f1da0 100644 --- a/forge-gui/src/main/java/forge/quest/StartingPoolType.java +++ b/forge-gui/src/main/java/forge/quest/StartingPoolType.java @@ -2,7 +2,8 @@ package forge.quest; public enum StartingPoolType { Complete("Unrestricted"), - Rotating("Sanctioned format"), + Sanctioned("Sanctioned format"), + Casual("Casual/Historic format"), CustomFormat("Custom format"), Precon("Event or starter deck"), SealedDeck("My sealed deck"), diff --git a/forge-gui/src/main/java/forge/quest/data/GameFormatQuest.java b/forge-gui/src/main/java/forge/quest/data/GameFormatQuest.java index 545ac6b18db..6b6876dff77 100644 --- a/forge-gui/src/main/java/forge/quest/data/GameFormatQuest.java +++ b/forge-gui/src/main/java/forge/quest/data/GameFormatQuest.java @@ -62,8 +62,9 @@ public final class GameFormatQuest extends GameFormat { * @param allowSetUnlocks */ public GameFormatQuest(final GameFormat toCopy, boolean allowSetUnlocks) { - super(toCopy.getName(), toCopy.getAllowedSetCodes(), toCopy.getBannedCardNames(), toCopy.getRestrictedCards(), - toCopy.getAllowedRarities(), toCopy.getIndex(), FormatType.Custom); + super(toCopy.getName(), toCopy.getEffectiveDate(), toCopy.getAllowedSetCodes(), toCopy.getBannedCardNames(), toCopy.getRestrictedCards(), + toCopy.isRestrictedLegendary(),toCopy.getAdditionalCards(), toCopy.getAllowedRarities(), + toCopy.getIndex(), FormatType.Custom, FormatSubType.Custom); allowUnlocks = allowSetUnlocks; }