forked from External/mage
[MAT] add set
This commit is contained in:
parent
9b52701338
commit
c9d3e98fbc
5 changed files with 26 additions and 0 deletions
22
Mage.Sets/src/mage/sets/MarchOfTheMachineTheAftermath.java
Normal file
22
Mage.Sets/src/mage/sets/MarchOfTheMachineTheAftermath.java
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class MarchOfTheMachineTheAftermath extends ExpansionSet {
|
||||
|
||||
private static final MarchOfTheMachineTheAftermath instance = new MarchOfTheMachineTheAftermath();
|
||||
|
||||
public static MarchOfTheMachineTheAftermath getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private MarchOfTheMachineTheAftermath() {
|
||||
super("March of the Machine: The Aftermath", "MAT", ExpansionSet.buildDate(2023, 5, 12), SetType.SUPPLEMENTAL_STANDARD_LEGAL);
|
||||
this.blockName = "March of the Machine";
|
||||
this.hasBoosters = false; // temporary
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue