mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Add the Release Events (PREL) promotional set.
This commit is contained in:
parent
ba0d66c18b
commit
f374d74dc2
3 changed files with 41 additions and 0 deletions
|
@ -1580,6 +1580,7 @@ public class DragCardGrid extends JPanel implements DragCardSource, DragCardTarg
|
||||||
pimpedSets.put("P11", 1);
|
pimpedSets.put("P11", 1);
|
||||||
|
|
||||||
pimpedSets.put("OVNT", 1); // Vintage Championship
|
pimpedSets.put("OVNT", 1); // Vintage Championship
|
||||||
|
pimpedSets.put("PREL", 1); // Release Events
|
||||||
pimpedSets.put("MGDC", 1);
|
pimpedSets.put("MGDC", 1);
|
||||||
pimpedSets.put("EXP", 1);
|
pimpedSets.put("EXP", 1);
|
||||||
pimpedSets.put("GPX", 1);
|
pimpedSets.put("GPX", 1);
|
||||||
|
|
|
@ -103,6 +103,7 @@ public class ScryfallImageSupportCards {
|
||||||
add("PHPR");
|
add("PHPR");
|
||||||
add("PLGM");
|
add("PLGM");
|
||||||
add("OVNT"); // Vintage Championship
|
add("OVNT"); // Vintage Championship
|
||||||
|
add("PREL"); // Release Events
|
||||||
|
|
||||||
add("MGB");
|
add("MGB");
|
||||||
add("ULG");
|
add("ULG");
|
||||||
|
|
39
Mage.Sets/src/mage/sets/ReleaseEvents.java
Normal file
39
Mage.Sets/src/mage/sets/ReleaseEvents.java
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
package mage.sets;
|
||||||
|
|
||||||
|
import mage.cards.ExpansionSet;
|
||||||
|
import mage.constants.Rarity;
|
||||||
|
import mage.constants.SetType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* https://scryfall.com/sets/prel
|
||||||
|
*/
|
||||||
|
public class ReleaseEvents extends ExpansionSet {
|
||||||
|
|
||||||
|
private static final ReleaseEvents instance = new ReleaseEvents();
|
||||||
|
|
||||||
|
public static ReleaseEvents getInstance() {
|
||||||
|
return instance;
|
||||||
|
}
|
||||||
|
|
||||||
|
private ReleaseEvents() {
|
||||||
|
super("Release Events", "PREL", ExpansionSet.buildDate(2007, 10, 12), SetType.PROMOTIONAL);
|
||||||
|
this.hasBoosters = false;
|
||||||
|
this.hasBasicLands = false;
|
||||||
|
|
||||||
|
// Silver-bordered card not implemented
|
||||||
|
// cards.add(new SetCardInfo("Ass Whuppin'", 2, Rarity.RARE, mage.cards.a.AssWhuppin.class));
|
||||||
|
cards.add(new SetCardInfo("Azorius Guildmage", 9, Rarity.RARE, mage.cards.a.AzoriusGuildmage.class));
|
||||||
|
cards.add(new SetCardInfo("Budoka Pupil", "3a", Rarity.UNCOMMON, mage.cards.b.BudokaPupil.class));
|
||||||
|
cards.add(new SetCardInfo("Dimir Guildmage", 7, Rarity.RARE, mage.cards.d.DimirGuildmage.class));
|
||||||
|
cards.add(new SetCardInfo("Force of Nature", 5, Rarity.RARE, mage.cards.f.ForceOfNature.class));
|
||||||
|
cards.add(new SetCardInfo("Ghost-Lit Raider", 4, Rarity.RARE, mage.cards.g.GhostLitRaider.class));
|
||||||
|
cards.add(new SetCardInfo("Gruul Guildmage", 8, Rarity.RARE, mage.cards.g.GruulGuildmage.class));
|
||||||
|
cards.add(new SetCardInfo("Hedge Troll", 11, Rarity.RARE, mage.cards.h.HedgeTroll.class));
|
||||||
|
cards.add(new SetCardInfo("Rukh Egg", 1, Rarity.RARE, mage.cards.r.RukhEgg.class));
|
||||||
|
// Russian-only printing
|
||||||
|
//cards.add(new SetCardInfo("Shivan Dragon", 6, Rarity.RARE, mage.cards.s.ShivanDragon.class));
|
||||||
|
cards.add(new SetCardInfo("Shriekmaw", 13, Rarity.RARE, mage.cards.s.Shriekmaw.class));
|
||||||
|
cards.add(new SetCardInfo("Storm Entity", 12, Rarity.RARE, mage.cards.s.StormEntity.class));
|
||||||
|
cards.add(new SetCardInfo("Sudden Shock", 10, Rarity.RARE, mage.cards.s.SuddenShock.class));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue