forked from External/mage
[EOC] add set
This commit is contained in:
parent
c045466b0c
commit
ecd3efd380
5 changed files with 26 additions and 0 deletions
21
Mage.Sets/src/mage/sets/EdgeOfEternitiesCommander.java
Normal file
21
Mage.Sets/src/mage/sets/EdgeOfEternitiesCommander.java
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class EdgeOfEternitiesCommander extends ExpansionSet {
|
||||
|
||||
private static final EdgeOfEternitiesCommander instance = new EdgeOfEternitiesCommander();
|
||||
|
||||
public static EdgeOfEternitiesCommander getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private EdgeOfEternitiesCommander() {
|
||||
super("Edge of Eternities Commander", "EOC", ExpansionSet.buildDate(2025, 8, 1), SetType.SUPPLEMENTAL);
|
||||
this.hasBasicLands = false;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue