mirror of
https://github.com/correl/mage.git
synced 2025-01-07 11:08:44 +00:00
Added the Journey into Nyx Promos (PJOU) set.
This commit is contained in:
parent
20949b41ed
commit
b86d369aa9
1 changed files with 33 additions and 0 deletions
33
Mage.Sets/src/mage/sets/JourneyIntoNyxPromos.java
Normal file
33
Mage.Sets/src/mage/sets/JourneyIntoNyxPromos.java
Normal file
|
@ -0,0 +1,33 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* https://scryfall.com/sets/pjou
|
||||
*/
|
||||
public class JourneyIntoNyxPromos extends ExpansionSet {
|
||||
|
||||
private static final JourneyIntoNyxPromos instance = new JourneyIntoNyxPromos();
|
||||
|
||||
public static JourneyIntoNyxPromos getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private JourneyIntoNyxPromos() {
|
||||
super("Journey into Nyx Promos", "PJOU", ExpansionSet.buildDate(2014, 4, 26), SetType.PROMOTIONAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = false;
|
||||
|
||||
cards.add(new SetCardInfo("Dawnbringer Charioteers", 6, Rarity.RARE, mage.cards.d.DawnbringerCharioteers.class));
|
||||
cards.add(new SetCardInfo("Dictate of Kruphix", 37, Rarity.RARE, mage.cards.d.DictateOfKruphix.class));
|
||||
cards.add(new SetCardInfo("Dictate of the Twin Gods", 93, Rarity.RARE, mage.cards.d.DictateOfTheTwinGods.class));
|
||||
cards.add(new SetCardInfo("Doomwake Giant", 66, Rarity.RARE, mage.cards.d.DoomwakeGiant.class));
|
||||
cards.add(new SetCardInfo("Eidolon of Blossoms", "*122", Rarity.RARE, mage.cards.e.EidolonOfBlossoms.class));
|
||||
cards.add(new SetCardInfo("Heroes' Bane", 126, Rarity.RARE, mage.cards.h.HeroesBane.class));
|
||||
cards.add(new SetCardInfo("Scourge of Fleets", 51, Rarity.RARE, mage.cards.s.ScourgeOfFleets.class));
|
||||
cards.add(new SetCardInfo("Spawn of Thraxes", 112, Rarity.RARE, mage.cards.s.SpawnOfThraxes.class));
|
||||
cards.add(new SetCardInfo("Squelching Leeches", 84, Rarity.UNCOMMON, mage.cards.s.SquelchingLeeches.class));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue