mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Merge branch 'master' of https://github.com/magefree/mage
This commit is contained in:
commit
e2bd06eb4a
4 changed files with 55 additions and 2 deletions
|
@ -74,6 +74,6 @@ dd3evg=ddaevg
|
||||||
dd3gvl=ddagvl
|
dd3gvl=ddagvl
|
||||||
dd3jvc=ddajvc
|
dd3jvc=ddajvc
|
||||||
# Remove setname as soon as the images can be downloaded
|
# Remove setname as soon as the images can be downloaded
|
||||||
ignore.urls=TOK,PCA,ANB,HOU
|
ignore.urls=TOK,PCA,ANB,HOU,C17
|
||||||
# sets ordered by release time (newest goes first)
|
# sets ordered by release time (newest goes first)
|
||||||
token.lookup.order=ANB,HOU,MM3,DDS,AKH,DD3DVD,DD3EVG,DD3GVL,DD3JVC,H09,AER,PCA,C16,V16,MPS,KLD,DDR,CN2,EMN,EMA,SOI,DDQ,CP,CMA,ARENA,SUS,APAC,EURO,UGIN,C15,OGW,EXP,DDP,BFZ,DRB,V09,V10,V11,V12,V13,V14,V15,TPR,MPRP,DD3,DDO,ORI,MM2,PTC,DTK,FRF,KTK,M15,VMA,CNS,JOU,BNG,THS,DDL,M14,MMA,DGM,GTC,RTR,M13,AVR,DDI,DKA,ISD,M12,NPH,MBS,SOM,M11,ROE,DDE,WWK,ZEN,M10,GVL,ARB,DVD,CFX,JVC,ALA,EVE,SHM,EVG,MOR,LRW,10E,CLS,CHK,GRC
|
token.lookup.order=C17,ANB,HOU,MM3,DDS,AKH,DD3DVD,DD3EVG,DD3GVL,DD3JVC,H09,AER,PCA,C16,V16,MPS,KLD,DDR,CN2,EMN,EMA,SOI,DDQ,CP,CMA,ARENA,SUS,APAC,EURO,UGIN,C15,OGW,EXP,DDP,BFZ,DRB,V09,V10,V11,V12,V13,V14,V15,TPR,MPRP,DD3,DDO,ORI,MM2,PTC,DTK,FRF,KTK,M15,VMA,CNS,JOU,BNG,THS,DDL,M14,MMA,DGM,GTC,RTR,M13,AVR,DDI,DKA,ISD,M12,NPH,MBS,SOM,M11,ROE,DDE,WWK,ZEN,M10,GVL,ARB,DVD,CFX,JVC,ALA,EVE,SHM,EVG,MOR,LRW,10E,CLS,CHK,GRC
|
50
Mage.Sets/src/mage/sets/Commander2017.java
Normal file
50
Mage.Sets/src/mage/sets/Commander2017.java
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without modification, are
|
||||||
|
* permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||||
|
* conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||||
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
||||||
|
* provided with the distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||||
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
|
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||||
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*
|
||||||
|
* The views and conclusions contained in the software and documentation are those of the
|
||||||
|
* authors and should not be interpreted as representing official policies, either expressed
|
||||||
|
* or implied, of BetaSteward_at_googlemail.com.
|
||||||
|
*/
|
||||||
|
package mage.sets;
|
||||||
|
|
||||||
|
import mage.cards.ExpansionSet;
|
||||||
|
import mage.constants.SetType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author fireshoes
|
||||||
|
*/
|
||||||
|
public class Commander2017 extends ExpansionSet {
|
||||||
|
|
||||||
|
private static final Commander2017 instance = new Commander2017();
|
||||||
|
|
||||||
|
public static Commander2017 getInstance() {
|
||||||
|
return instance;
|
||||||
|
}
|
||||||
|
|
||||||
|
private Commander2017() {
|
||||||
|
super("Commander 2017 Edition", "C17", ExpansionSet.buildDate(2017, 8, 25), SetType.SUPPLEMENTAL);
|
||||||
|
this.blockName = "Command Zone";
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -23,6 +23,7 @@ Commander 2013 Edition|Commander2013|
|
||||||
Commander 2014 Edition|Commander2014|
|
Commander 2014 Edition|Commander2014|
|
||||||
Commander 2015|Commander2015|
|
Commander 2015|Commander2015|
|
||||||
Commander 2016|Commander2016|
|
Commander 2016|Commander2016|
|
||||||
|
Commander 2017|Commander2017|
|
||||||
Commander Anthology|CommanderAnthology|
|
Commander Anthology|CommanderAnthology|
|
||||||
Commander's Arsenal|CommandersArsenal|
|
Commander's Arsenal|CommandersArsenal|
|
||||||
Conflux|Conflux|
|
Conflux|Conflux|
|
||||||
|
@ -88,6 +89,7 @@ Hour of Devastation|HourOfDevastation|
|
||||||
Ice Age|IceAge|
|
Ice Age|IceAge|
|
||||||
Innistrad|Innistrad|
|
Innistrad|Innistrad|
|
||||||
Invasion|Invasion|
|
Invasion|Invasion|
|
||||||
|
Ixalan|Ixalan|
|
||||||
Journey into Nyx|JourneyIntoNyx|
|
Journey into Nyx|JourneyIntoNyx|
|
||||||
Judge Promo|JudgePromo|
|
Judge Promo|JudgePromo|
|
||||||
Judgment|Judgment|
|
Judgment|Judgment|
|
||||||
|
|
|
@ -31,6 +31,7 @@ Commander 2013 Edition|C13|
|
||||||
Commander 2014 Edition|C14|
|
Commander 2014 Edition|C14|
|
||||||
Commander 2015 Edition|C15|
|
Commander 2015 Edition|C15|
|
||||||
Commander 2016 Edition|C16|
|
Commander 2016 Edition|C16|
|
||||||
|
Commander 2017 Edition|C17|
|
||||||
Champions of Kamigawa|CHK|
|
Champions of Kamigawa|CHK|
|
||||||
Chronicles|CHR|
|
Chronicles|CHR|
|
||||||
Clash Pack|CLASH|
|
Clash Pack|CLASH|
|
||||||
|
|
Loading…
Reference in a new issue