mirror of
https://github.com/correl/mage.git
synced 2024-11-22 19:18:39 +00:00
added Zendikar Rising
This commit is contained in:
parent
746bed7068
commit
eff5f40c79
4 changed files with 36 additions and 4 deletions
|
@ -478,8 +478,6 @@ public class ScryfallImageSupportCards {
|
|||
add("SLU"); // Secret Lair: Ultimate Edition
|
||||
add("SS3"); // Signature Spellbook: Chandra
|
||||
add("HA3"); // Historic Anthology 3
|
||||
add("CC1"); // Commander Collection: Green
|
||||
|
||||
// add("TD0"); // Commander Theme Decks
|
||||
// add("TD2"); // Duel Decks: Mirrodin Pure vs. New Phyrexia
|
||||
// add("MD1"); // Modern Event Deck
|
||||
|
@ -487,11 +485,13 @@ public class ScryfallImageSupportCards {
|
|||
// add("PZ1"); // Legendary Cube
|
||||
add("IKO"); // Ikoria: Lair of Behemoths
|
||||
add("C20"); // Commander 2020 Edition
|
||||
//
|
||||
add("M21"); // Core Set 2021
|
||||
add("JMP"); // Jumpstart
|
||||
add("2XM"); // Double Masters
|
||||
add("AKR"); // Amonkhet Remastered
|
||||
add("ZNR"); // Zendikar Rising
|
||||
add("CMR"); // Commander Legends
|
||||
add("CC1"); // Commander Collection: Green
|
||||
}
|
||||
};
|
||||
|
||||
|
|
30
Mage.Sets/src/mage/sets/ZendikarRising.java
Normal file
30
Mage.Sets/src/mage/sets/ZendikarRising.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 ZendikarRising extends ExpansionSet {
|
||||
|
||||
private static final ZendikarRising instance = new ZendikarRising();
|
||||
|
||||
public static ZendikarRising getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private ZendikarRising() {
|
||||
super("Zendikar Rising", "ZNR", ExpansionSet.buildDate(2020, 9, 25), SetType.EXPANSION);
|
||||
this.blockName = "Zendikar Rising";
|
||||
this.hasBoosters = true;
|
||||
this.numBoosterLands = 1;
|
||||
this.numBoosterCommon = 10;
|
||||
this.numBoosterUncommon = 3;
|
||||
this.numBoosterRare = 1;
|
||||
this.ratioBoosterMythic = 8;
|
||||
this.maxCardNumberInBooster = 280;
|
||||
|
||||
}
|
||||
}
|
|
@ -216,4 +216,5 @@ World Magic Cup Qualifier|WorldMagicCupQualifier|
|
|||
Worldwake|Worldwake|
|
||||
WPN Gateway|WPNAndGatewayPromos|
|
||||
Zendikar|Zendikar|
|
||||
Zendikar Expeditions|ZendikarExpeditions|
|
||||
Zendikar Expeditions|ZendikarExpeditions|
|
||||
Zendikar Rising|ZendikarRising|
|
|
@ -225,5 +225,6 @@ Weatherlight|WTH|
|
|||
Worldwake|WWK|
|
||||
Ixalan|XLN|
|
||||
Zendikar|ZEN|
|
||||
Zendikar Rising|ZNR|
|
||||
Star Wars|SWS|
|
||||
Happy Holidays|HHO|
|
Loading…
Reference in a new issue