forked from External/mage
[AFC] added set
This commit is contained in:
parent
462f38528b
commit
44c2eaa22b
4 changed files with 27 additions and 0 deletions
21
Mage.Sets/src/mage/sets/ForgottenRealmsCommander.java
Normal file
21
Mage.Sets/src/mage/sets/ForgottenRealmsCommander.java
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class ForgottenRealmsCommander extends ExpansionSet {
|
||||
|
||||
private static final ForgottenRealmsCommander instance = new ForgottenRealmsCommander();
|
||||
|
||||
public static ForgottenRealmsCommander getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private ForgottenRealmsCommander() {
|
||||
super("Adventures in the Forgotten Realms Commander", "AFC", ExpansionSet.buildDate(2021, 7, 23), SetType.SUPPLEMENTAL);
|
||||
this.hasBasicLands = false;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue