mirror of
https://github.com/correl/mage.git
synced 2024-11-22 19:18:39 +00:00
[SNC] added set
This commit is contained in:
parent
84261a1731
commit
eb7ed69b5a
4 changed files with 33 additions and 0 deletions
|
@ -507,6 +507,7 @@ public class ScryfallImageSupportCards {
|
|||
add("DBL"); // Innistrad: Double Feature
|
||||
add("NEO"); // Kamigawa: Neon Dynasty
|
||||
add("NEC"); // Neon Dynasty Commander
|
||||
add("SNC"); // Streets of New Capenna
|
||||
}
|
||||
};
|
||||
|
||||
|
|
30
Mage.Sets/src/mage/sets/StreetsOfNewCapenna.java
Normal file
30
Mage.Sets/src/mage/sets/StreetsOfNewCapenna.java
Normal file
|
@ -0,0 +1,30 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class StreetsOfNewCapenna extends ExpansionSet {
|
||||
|
||||
private static final StreetsOfNewCapenna instance = new StreetsOfNewCapenna();
|
||||
|
||||
public static StreetsOfNewCapenna getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private StreetsOfNewCapenna() {
|
||||
super("Streets of New Capenna", "SNC", ExpansionSet.buildDate(2022, 4, 29), SetType.EXPANSION);
|
||||
this.blockName = "Streets of New Capenna";
|
||||
this.hasBoosters = true;
|
||||
this.hasBasicLands = true;
|
||||
|
||||
cards.add(new SetCardInfo("Forest", 280, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Island", 274, Rarity.LAND, mage.cards.basiclands.Island.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Mountain", 278, Rarity.LAND, mage.cards.basiclands.Mountain.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Plains", 272, Rarity.LAND, mage.cards.basiclands.Plains.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Swamp", 276, Rarity.LAND, mage.cards.basiclands.Swamp.class, FULL_ART_BFZ_VARIOUS));
|
||||
}
|
||||
}
|
|
@ -201,6 +201,7 @@ Shards of Alara|ShardsOfAlara|
|
|||
Starter 1999|Starter1999|
|
||||
Starter 2000|Starter2000|
|
||||
Star Wars|StarWars|
|
||||
Streets of New Capenna|StreetsOfNewCapenna|
|
||||
Strixhaven: School of Mages|StrixhavenSchoolOfMages|
|
||||
Stronghold|Stronghold|
|
||||
Super Series|SuperSeries|
|
||||
|
|
|
@ -200,6 +200,7 @@ Shadowmoor|SHM|
|
|||
Shadows over Innistrad|SOI|
|
||||
Saviors of Kamigawa|SOK|
|
||||
Scars of Mirrodin|SOM|
|
||||
Streets of New Capenna|SNC|
|
||||
Stronghold|STH|
|
||||
Super Series|SUS|
|
||||
Theros|THS|
|
||||
|
|
Loading…
Reference in a new issue