mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 04:39:18 -08:00
added WAR set file and first confirmed reprint
This commit is contained in:
parent
b10b973d09
commit
0a1e7cf654
4 changed files with 33 additions and 1 deletions
29
Mage.Sets/src/mage/sets/WarOfTheSpark.java
Normal file
29
Mage.Sets/src/mage/sets/WarOfTheSpark.java
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
public final class WarOfTheSpark extends ExpansionSet {
|
||||
|
||||
private static final WarOfTheSpark instance = new WarOfTheSpark();
|
||||
|
||||
public static WarOfTheSpark getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private WarOfTheSpark() {
|
||||
super("War of the Spark", "WAR", ExpansionSet.buildDate(2019, 5, 3), SetType.EXPANSION);
|
||||
this.blockName = "Guilds of Ravnica";
|
||||
this.hasBoosters = true;
|
||||
this.numBoosterSpecial = 1;
|
||||
this.numBoosterLands = 0;
|
||||
this.numBoosterCommon = 10;
|
||||
this.numBoosterUncommon = 3;
|
||||
this.numBoosterRare = 1;
|
||||
this.ratioBoosterMythic = 8;
|
||||
this.maxCardNumberInBooster = 264;
|
||||
|
||||
cards.add(new SetCardInfo("Ajani's Pridemate", 4, Rarity.UNCOMMON, mage.cards.a.AjanisPridemate.class));
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue