[MAT] add set

This commit is contained in:
theelk801 2023-02-19 16:38:31 -05:00
parent 9b52701338
commit c9d3e98fbc
5 changed files with 26 additions and 0 deletions

View 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
}
}