mirror of
https://github.com/correl/mage.git
synced 2025-01-07 11:08:44 +00:00
Added the Scars of Mirrodin Promos (PSOM) promotional set.
This commit is contained in:
parent
3d3c298ad5
commit
2d082925e1
1 changed files with 29 additions and 0 deletions
29
Mage.Sets/src/mage/sets/ScarsOfMirrodinPromos.java
Normal file
29
Mage.Sets/src/mage/sets/ScarsOfMirrodinPromos.java
Normal file
|
@ -0,0 +1,29 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* https://scryfall.com/sets/psom
|
||||
*/
|
||||
public class ScarsOfMirrodinPromos extends ExpansionSet {
|
||||
|
||||
private static final ScarsOfMirrodinPromos instance = new ScarsOfMirrodinPromos();
|
||||
|
||||
public static ScarsOfMirrodinPromos getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private ScarsOfMirrodinPromos() {
|
||||
super("Scars of Mirrodin Promos", "PSOM", ExpansionSet.buildDate(2010, 9, 30), SetType.PROMOTIONAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = false;
|
||||
|
||||
cards.add(new SetCardInfo("Memnite", 174, Rarity.UNCOMMON, mage.cards.m.Memnite.class));
|
||||
cards.add(new SetCardInfo("Memoricide", "*69", Rarity.RARE, mage.cards.m.Memoricide.class));
|
||||
cards.add(new SetCardInfo("Steel Hellkite", 205, Rarity.RARE, mage.cards.s.SteelHellkite.class));
|
||||
cards.add(new SetCardInfo("Tempered Steel", 24, Rarity.RARE, mage.cards.t.TemperedSteel.class));
|
||||
cards.add(new SetCardInfo("Wurmcoil Engine", 223, Rarity.MYTHIC, mage.cards.w.WurmcoilEngine.class));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue