mirror of
https://github.com/correl/mage.git
synced 2025-01-07 11:08:44 +00:00
Added the Born of the Gods Promos (PBNG) set.
This commit is contained in:
parent
642c146d75
commit
c4b736f7eb
1 changed files with 33 additions and 0 deletions
33
Mage.Sets/src/mage/sets/BornOfTheGodsPromos.java
Normal file
33
Mage.Sets/src/mage/sets/BornOfTheGodsPromos.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/pbng
|
||||
*/
|
||||
public class BornOfTheGodsPromos extends ExpansionSet {
|
||||
|
||||
private static final BornOfTheGodsPromos instance = new BornOfTheGodsPromos();
|
||||
|
||||
public static BornOfTheGodsPromos getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private BornOfTheGodsPromos() {
|
||||
super("Born of the Gods Promos", "PBNG", ExpansionSet.buildDate(2014, 2, 1), SetType.PROMOTIONAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = false;
|
||||
|
||||
cards.add(new SetCardInfo("Arbiter of the Ideal", 31, Rarity.RARE, mage.cards.a.ArbiterOfTheIdeal.class));
|
||||
cards.add(new SetCardInfo("Eater of Hope", 66, Rarity.RARE, mage.cards.e.EaterOfHope.class));
|
||||
cards.add(new SetCardInfo("Fated Conflagration", "*94", Rarity.RARE, mage.cards.f.FatedConflagration.class));
|
||||
cards.add(new SetCardInfo("Forgestoker Dragon", 98, Rarity.RARE, mage.cards.f.ForgestokerDragon.class));
|
||||
cards.add(new SetCardInfo("Kiora's Follower", 150, Rarity.UNCOMMON, mage.cards.k.KiorasFollower.class));
|
||||
cards.add(new SetCardInfo("Nessian Wilds Ravager", 129, Rarity.RARE, mage.cards.n.NessianWildsRavager.class));
|
||||
cards.add(new SetCardInfo("Pain Seer", 80, Rarity.RARE, mage.cards.p.PainSeer.class));
|
||||
cards.add(new SetCardInfo("Silent Sentinel", 26, Rarity.RARE, mage.cards.s.SilentSentinel.class));
|
||||
cards.add(new SetCardInfo("Tromokratis", 55, Rarity.RARE, mage.cards.t.Tromokratis.class));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue