Renamed HeroesOfTheRealm 2016 set, added missing cards as comments.

This commit is contained in:
Thomas Hess 2020-03-16 14:26:33 +01:00
parent 29afa40484
commit 53309191f9
No known key found for this signature in database
GPG key ID: 98602F47D161B13C
2 changed files with 28 additions and 24 deletions

View file

@ -1,24 +0,0 @@
package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
/**
* @author TheElk801
*/
public final class HeroesOfTheRealm extends ExpansionSet {
private static final HeroesOfTheRealm instance = new HeroesOfTheRealm();
public static HeroesOfTheRealm getInstance() {
return instance;
}
private HeroesOfTheRealm() {
super("Heroes of the Realm", "HTR", ExpansionSet.buildDate(2017, 9, 20), SetType.JOKESET);
this.hasBasicLands = false;
cards.add(new SetCardInfo("Chandra, Gremlin Wrangler", 1, Rarity.MYTHIC, mage.cards.c.ChandraGremlinWrangler.class));
}
}

View file

@ -0,0 +1,28 @@
package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
/**
* https://scryfall.com/sets/htr
* @author TheElk801
*/
public final class HeroesOfTheRealm2016 extends ExpansionSet {
private static final HeroesOfTheRealm2016 instance = new HeroesOfTheRealm2016();
public static HeroesOfTheRealm2016 getInstance() {
return instance;
}
private HeroesOfTheRealm2016() {
super("Heroes of the Realm 2016", "HTR", ExpansionSet.buildDate(2017, 9, 20), SetType.JOKESET);
this.hasBasicLands = false;
cards.add(new SetCardInfo("Chandra, Gremlin Wrangler", 1, Rarity.MYTHIC, mage.cards.c.ChandraGremlinWrangler.class));
// Cards not implemented
//cards.add(new SetCardInfo("Dungeon Master", 2, Rarity.MYTHIC, mage.cards.d.DungeonMaster.class));
//cards.add(new SetCardInfo("Nira, Hellkite Duelist", 3, Rarity.MYTHIC, mage.cards.n.NiraHellkiteDuelist.class));
}
}