mirror of
https://github.com/correl/mage.git
synced 2024-11-16 19:19:30 +00:00
Added the Wizards Play Network 2008 (PWPN) promotional set.
This commit is contained in:
parent
7f5eb137fc
commit
e0017752b6
1 changed files with 26 additions and 0 deletions
26
Mage.Sets/src/mage/sets/WizardsPlayNetwork2008.java
Normal file
26
Mage.Sets/src/mage/sets/WizardsPlayNetwork2008.java
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
package mage.sets;
|
||||||
|
|
||||||
|
import mage.cards.ExpansionSet;
|
||||||
|
import mage.constants.Rarity;
|
||||||
|
import mage.constants.SetType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* https://scryfall.com/sets/pwpn
|
||||||
|
*/
|
||||||
|
public class WizardsPlayNetwork2008 extends ExpansionSet {
|
||||||
|
|
||||||
|
private static final WizardsPlayNetwork2008 instance = new WizardsPlayNetwork2008();
|
||||||
|
|
||||||
|
public static WizardsPlayNetwork2008 getInstance() {
|
||||||
|
return instance;
|
||||||
|
}
|
||||||
|
|
||||||
|
private WizardsPlayNetwork2008() {
|
||||||
|
super("Wizards Play Network 2008", "PWPN", ExpansionSet.buildDate(2008, 10, 1), SetType.PROMOTIONAL);
|
||||||
|
this.hasBoosters = false;
|
||||||
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
|
cards.add(new SetCardInfo("Sprouting Thrinax", 21, Rarity.RARE, mage.cards.s.SproutingThrinax.class));
|
||||||
|
cards.add(new SetCardInfo("Woolly Thoctar", 22, Rarity.RARE, mage.cards.w.WoollyThoctar.class));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue