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