diff --git a/Mage.Sets/src/mage/sets/HeroesOfTheRealm.java b/Mage.Sets/src/mage/sets/HeroesOfTheRealm.java deleted file mode 100644 index 4ccfd7f447..0000000000 --- a/Mage.Sets/src/mage/sets/HeroesOfTheRealm.java +++ /dev/null @@ -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)); - } -} diff --git a/Mage.Sets/src/mage/sets/HeroesOfTheRealm2016.java b/Mage.Sets/src/mage/sets/HeroesOfTheRealm2016.java new file mode 100644 index 0000000000..2b2355a5d9 --- /dev/null +++ b/Mage.Sets/src/mage/sets/HeroesOfTheRealm2016.java @@ -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)); + } +}