mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
Add the Worlds (PWOR) set.
This commit is contained in:
parent
2458c6479a
commit
ed53f2f8ed
2 changed files with 26 additions and 1 deletions
|
@ -73,7 +73,7 @@ public class ScryfallImageSupportCards {
|
|||
add("PDRC");
|
||||
add("PHPR");
|
||||
add("PLGM");
|
||||
|
||||
|
||||
add("MGB");
|
||||
add("ULG");
|
||||
add("6ED");
|
||||
|
|
25
Mage.Sets/src/mage/sets/Worlds.java
Normal file
25
Mage.Sets/src/mage/sets/Worlds.java
Normal file
|
@ -0,0 +1,25 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* https://scryfall.com/sets/pwor
|
||||
*/
|
||||
public class Worlds extends ExpansionSet {
|
||||
|
||||
private static final Worlds instance = new Worlds();
|
||||
|
||||
public static Worlds getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private Worlds() {
|
||||
super("Worlds", "PWOR", ExpansionSet.buildDate(1999, 8, 4), SetType.PROMOTIONAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = false;
|
||||
|
||||
cards.add(new SetCardInfo("Balduvian Horde", 1, Rarity.RARE, mage.cards.b.BalduvianHorde.class));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue