foul-magics/Mage.Sets/src/mage/sets/HeroesOfTheRealm2017.java
xenohedron 9566e23d0b
Rework Mystery Booster and adjust some set classifications (#12138)
Mystery Booster rework:
* added images download support from scryfall (closes #11806);
* added virtual sets support (remix);
* fixed Commander set name (closes #12110);
2024-04-23 09:28:40 +04:00

26 lines
762 B
Java

package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
/**
* https://scryfall.com/sets/ph17
* @author PurpleCrowbar
*/
public class HeroesOfTheRealm2017 extends ExpansionSet {
private static final HeroesOfTheRealm2017 instance = new HeroesOfTheRealm2017();
public static HeroesOfTheRealm2017 getInstance() {
return instance;
}
private HeroesOfTheRealm2017() {
super("Heroes of the Realm 2017", "PH17", ExpansionSet.buildDate(2018, 8, 1), SetType.JOKE_SET);
this.hasBoosters = false;
this.hasBasicLands = false;
cards.add(new SetCardInfo("Inzerva, Master of Insights", 2, Rarity.MYTHIC, mage.cards.i.InzervaMasterOfInsights.class));
}
}