mirror of
https://github.com/correl/mage.git
synced 2025-01-07 11:08:44 +00:00
Added the Return to Ravnica Promos (PRTR) set.
This commit is contained in:
parent
167da649df
commit
38fa36ea1b
1 changed files with 34 additions and 0 deletions
34
Mage.Sets/src/mage/sets/ReturnToRavnicaPromos.java
Normal file
34
Mage.Sets/src/mage/sets/ReturnToRavnicaPromos.java
Normal file
|
@ -0,0 +1,34 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* https://scryfall.com/sets/prtr
|
||||
*/
|
||||
public class ReturnToRavnicaPromos extends ExpansionSet {
|
||||
|
||||
private static final ReturnToRavnicaPromos instance = new ReturnToRavnicaPromos();
|
||||
|
||||
public static ReturnToRavnicaPromos getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private ReturnToRavnicaPromos() {
|
||||
super("Return to Ravnica Promos", "PRTR", ExpansionSet.buildDate(2012, 10, 5), SetType.PROMOTIONAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = false;
|
||||
|
||||
cards.add(new SetCardInfo("Archon of the Triumvirate", 142, Rarity.RARE, mage.cards.a.ArchonOfTheTriumvirate.class));
|
||||
cards.add(new SetCardInfo("Carnival Hellsteed", 147, Rarity.RARE, mage.cards.c.CarnivalHellsteed.class));
|
||||
cards.add(new SetCardInfo("Corpsejack Menace", 152, Rarity.RARE, mage.cards.c.CorpsejackMenace.class));
|
||||
cards.add(new SetCardInfo("Cryptborn Horror", 212, Rarity.RARE, mage.cards.c.CryptbornHorror.class));
|
||||
cards.add(new SetCardInfo("Deadbridge Goliath", 120, Rarity.RARE, mage.cards.d.DeadbridgeGoliath.class));
|
||||
cards.add(new SetCardInfo("Dreg Mangler", 158, Rarity.UNCOMMON, mage.cards.d.DregMangler.class));
|
||||
cards.add(new SetCardInfo("Dryad Militant", 214, Rarity.UNCOMMON, mage.cards.d.DryadMilitant.class));
|
||||
cards.add(new SetCardInfo("Grove of the Guardian", 240, Rarity.RARE, mage.cards.g.GroveOfTheGuardian.class));
|
||||
cards.add(new SetCardInfo("Hypersonic Dragon", 170, Rarity.RARE, mage.cards.h.HypersonicDragon.class));
|
||||
cards.add(new SetCardInfo("Supreme Verdict", "*201", Rarity.RARE, mage.cards.s.SupremeVerdict.class));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue