mirror of
https://github.com/correl/mage.git
synced 2025-01-03 19:17:30 +00:00
Added the Theros Promos (PTHS) set.
This commit is contained in:
parent
17da620d8a
commit
b02c9e58ad
1 changed files with 34 additions and 0 deletions
34
Mage.Sets/src/mage/sets/TherosPromos.java
Normal file
34
Mage.Sets/src/mage/sets/TherosPromos.java
Normal file
|
@ -0,0 +1,34 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* https://scryfall.com/sets/pths
|
||||
*/
|
||||
public class TherosPromos extends ExpansionSet {
|
||||
|
||||
private static final TherosPromos instance = new TherosPromos();
|
||||
|
||||
public static TherosPromos getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private TherosPromos() {
|
||||
super("Theros Promos", "PTHS", ExpansionSet.buildDate(2013, 9, 21), SetType.PROMOTIONAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = false;
|
||||
|
||||
cards.add(new SetCardInfo("Abhorrent Overlord", 75, Rarity.RARE, mage.cards.a.AbhorrentOverlord.class));
|
||||
cards.add(new SetCardInfo("Anthousa, Setessan Hero", 149, Rarity.RARE, mage.cards.a.AnthousaSetessanHero.class));
|
||||
cards.add(new SetCardInfo("Bident of Thassa", 42, Rarity.RARE, mage.cards.b.BidentOfThassa.class));
|
||||
cards.add(new SetCardInfo("Celestial Archon", 3, Rarity.RARE, mage.cards.c.CelestialArchon.class));
|
||||
cards.add(new SetCardInfo("Ember Swallower", 120, Rarity.RARE, mage.cards.e.EmberSwallower.class));
|
||||
cards.add(new SetCardInfo("Karametra's Acolyte", 160, Rarity.UNCOMMON, mage.cards.k.KarametrasAcolyte.class));
|
||||
cards.add(new SetCardInfo("Nighthowler", 98, Rarity.RARE, mage.cards.n.Nighthowler.class));
|
||||
cards.add(new SetCardInfo("Phalanx Leader", 26, Rarity.UNCOMMON, mage.cards.p.PhalanxLeader.class));
|
||||
cards.add(new SetCardInfo("Shipbreaker Kraken", 63, Rarity.RARE, mage.cards.s.ShipbreakerKraken.class));
|
||||
cards.add(new SetCardInfo("Sylvan Caryatid", "*180", Rarity.RARE, mage.cards.s.SylvanCaryatid.class));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue