mirror of
https://github.com/correl/mage.git
synced 2024-11-16 19:19:30 +00:00
Added the IDW Comics 2012 (PIDW) set.
This commit is contained in:
parent
ea277fed65
commit
964a4a5e4f
1 changed files with 33 additions and 0 deletions
33
Mage.Sets/src/mage/sets/IDWComics2012.java
Normal file
33
Mage.Sets/src/mage/sets/IDWComics2012.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/pidw
|
||||||
|
*/
|
||||||
|
public class IDWComics2012 extends ExpansionSet {
|
||||||
|
|
||||||
|
private static final IDWComics2012 instance = new IDWComics2012();
|
||||||
|
|
||||||
|
public static IDWComics2012 getInstance() {
|
||||||
|
return instance;
|
||||||
|
}
|
||||||
|
|
||||||
|
private IDWComics2012() {
|
||||||
|
super("IDW Comics 2012", "PIDW", ExpansionSet.buildDate(2012, 1, 1), SetType.PROMOTIONAL);
|
||||||
|
this.hasBoosters = false;
|
||||||
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
|
cards.add(new SetCardInfo("Arrest", 5, Rarity.RARE, mage.cards.a.Arrest.class));
|
||||||
|
cards.add(new SetCardInfo("Breath of Malfegor", 8, Rarity.RARE, mage.cards.b.BreathOfMalfegor.class));
|
||||||
|
cards.add(new SetCardInfo("Consume Spirit", 6, Rarity.RARE, mage.cards.c.ConsumeSpirit.class));
|
||||||
|
cards.add(new SetCardInfo("Electrolyze", 3, Rarity.RARE, mage.cards.e.Electrolyze.class));
|
||||||
|
cards.add(new SetCardInfo("Faithless Looting", 2, Rarity.RARE, mage.cards.f.FaithlessLooting.class));
|
||||||
|
cards.add(new SetCardInfo("Feast of Blood", 4, Rarity.RARE, mage.cards.f.FeastOfBlood.class));
|
||||||
|
cards.add(new SetCardInfo("Standstill", 7, Rarity.RARE, mage.cards.s.Standstill.class));
|
||||||
|
cards.add(new SetCardInfo("Treasure Hunt", 1, Rarity.RARE, mage.cards.t.TreasureHunt.class));
|
||||||
|
cards.add(new SetCardInfo("Turnabout", 9, Rarity.RARE, mage.cards.t.Turnabout.class));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue