mirror of
https://github.com/correl/mage.git
synced 2024-11-16 19:19:30 +00:00
Added the Summer of Magic (PSUM) promotional set.
This commit is contained in:
parent
763a936720
commit
e9f81d4c4c
1 changed files with 27 additions and 0 deletions
27
Mage.Sets/src/mage/sets/SummerOfMagic.java
Normal file
27
Mage.Sets/src/mage/sets/SummerOfMagic.java
Normal file
|
@ -0,0 +1,27 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* https://scryfall.com/sets/psum
|
||||
* This is not the "Summer Magic" Revised printing.
|
||||
*/
|
||||
public class SummerOfMagic extends ExpansionSet {
|
||||
|
||||
private static final SummerOfMagic instance = new SummerOfMagic();
|
||||
|
||||
public static SummerOfMagic getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private SummerOfMagic() {
|
||||
super("Summer of Magic", "PSUM", ExpansionSet.buildDate(2007, 7, 21), SetType.PROMOTIONAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = false;
|
||||
|
||||
cards.add(new SetCardInfo("Faerie Conclave", 1, Rarity.RARE, mage.cards.f.FaerieConclave.class));
|
||||
cards.add(new SetCardInfo("Treetop Village", 2, Rarity.RARE, mage.cards.t.TreetopVillage.class));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue