mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
[STX] added set
This commit is contained in:
parent
2d85f4cfa0
commit
98c6b39550
3 changed files with 30 additions and 0 deletions
28
Mage.Sets/src/mage/sets/StrixhavenSchoolOfMages.java
Normal file
28
Mage.Sets/src/mage/sets/StrixhavenSchoolOfMages.java
Normal file
|
@ -0,0 +1,28 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class StrixhavenSchoolOfMages extends ExpansionSet {
|
||||
|
||||
private static final StrixhavenSchoolOfMages instance = new StrixhavenSchoolOfMages();
|
||||
|
||||
public static StrixhavenSchoolOfMages getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private StrixhavenSchoolOfMages() {
|
||||
super("Strixhaven: School of Mages", "STX", ExpansionSet.buildDate(2021, 4, 23), SetType.EXPANSION);
|
||||
this.blockName = "Strixhaven: School of Mages";
|
||||
this.hasBoosters = false;
|
||||
this.numBoosterLands = 1;
|
||||
this.numBoosterCommon = 10;
|
||||
this.numBoosterUncommon = 3;
|
||||
this.numBoosterRare = 1;
|
||||
this.ratioBoosterMythic = 7.4;
|
||||
this.maxCardNumberInBooster = 275;
|
||||
}
|
||||
}
|
|
@ -189,6 +189,7 @@ Shards of Alara|ShardsOfAlara|
|
|||
Starter 1999|Starter1999|
|
||||
Starter 2000|Starter2000|
|
||||
Star Wars|StarWars|
|
||||
Strixhaven: School of Mages|StrixhavenSchoolOfMages|
|
||||
Stronghold|Stronghold|
|
||||
Super Series|SuperSeries|
|
||||
Tempest|Tempest|
|
||||
|
|
|
@ -181,6 +181,7 @@ Rise of the Eldrazi|ROE|
|
|||
Return to Ravnica|RTR|
|
||||
Starter 2000|S00|
|
||||
Starter 1999|S99|
|
||||
Strixhaven: School of Mages|STX|
|
||||
Scourge|SCG|
|
||||
Secret Lair|SLD|
|
||||
Shadowmoor|SHM|
|
||||
|
|
Loading…
Reference in a new issue