mirror of
https://github.com/correl/mage.git
synced 2025-01-06 03:00:13 +00:00
Renamed HeroesOfTheRealm 2016 set, added missing cards as comments.
This commit is contained in:
parent
29afa40484
commit
53309191f9
2 changed files with 28 additions and 24 deletions
|
@ -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));
|
||||
}
|
||||
}
|
28
Mage.Sets/src/mage/sets/HeroesOfTheRealm2016.java
Normal file
28
Mage.Sets/src/mage/sets/HeroesOfTheRealm2016.java
Normal 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));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue