mirror of
https://github.com/correl/mage.git
synced 2024-11-22 19:18:39 +00:00
[NEO] added set
This commit is contained in:
parent
f1390faf58
commit
fcdd3592cf
3 changed files with 25 additions and 0 deletions
23
Mage.Sets/src/mage/sets/KamigawaNeonDynasty.java
Normal file
23
Mage.Sets/src/mage/sets/KamigawaNeonDynasty.java
Normal file
|
@ -0,0 +1,23 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class KamigawaNeonDynasty extends ExpansionSet {
|
||||
|
||||
private static final KamigawaNeonDynasty instance = new KamigawaNeonDynasty();
|
||||
|
||||
public static KamigawaNeonDynasty getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private KamigawaNeonDynasty() {
|
||||
super("Kamigawa: Neon Dynasty", "NEO", ExpansionSet.buildDate(2022, 2, 18), SetType.EXPANSION);
|
||||
this.blockName = "Kamigawa: Neon Dynasty";
|
||||
this.hasBoosters = true;
|
||||
this.hasBasicLands = true;
|
||||
}
|
||||
}
|
|
@ -127,6 +127,7 @@ Jumpstart: Historic Horizons|JumpstartHistoricHorizons|
|
|||
Kaladesh|Kaladesh|
|
||||
Kaldheim|Kaldheim|
|
||||
Kaldheim Commander|KaldheimCommander|
|
||||
Kamigawa: Neon Dynasty|KamigawaNeonDynasty|
|
||||
Khans of Tarkir|KhansOfTarkir|
|
||||
Launch Party|LaunchParty|
|
||||
Legends|Legends|
|
||||
|
|
|
@ -127,6 +127,7 @@ Jumpstart: Historic Horizons|J21|
|
|||
Kaladesh|KLD|
|
||||
Kaldheim|KHM|
|
||||
Kaldheim Commander|KHC|
|
||||
Kamigawa: Neon Dynasty|NEO|
|
||||
Khans of Tarkir|KTK|
|
||||
Limited Edition Alpha|LEA|
|
||||
Limited Edition Beta|LEB|
|
||||
|
|
Loading…
Reference in a new issue