mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
This is an extensive renaming of sets to their correct names. "Duel Decks" and "Not Standard Legal" have been merged into a "Supplemental" set type. MTGO-only sets have been put into their own set type, just like magiccards.info. Supplemental sets now have a "block" which is the block that they have under magiccards.info, for easier organization. The deck builder on the client now relies on an autogenerated list instead of a hardcoded one.
30 lines
No EOL
847 B
Java
30 lines
No EOL
847 B
Java
/*
|
|
* To change this license header, choose License Headers in Project Properties.
|
|
* To change this template file, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
package mage.sets;
|
|
|
|
import java.util.GregorianCalendar;
|
|
import mage.cards.ExpansionSet;
|
|
import mage.constants.SetType;
|
|
|
|
/**
|
|
*
|
|
* @author LevelX2
|
|
*/
|
|
|
|
public class GarrukVsLiliana extends ExpansionSet {
|
|
private static final GarrukVsLiliana fINSTANCE = new GarrukVsLiliana();
|
|
|
|
public static GarrukVsLiliana getInstance() {
|
|
return fINSTANCE;
|
|
}
|
|
|
|
private GarrukVsLiliana() {
|
|
super("Duel Decks: Garruk vs. Liliana", "DDD", "mage.sets.garrukvsliliana", new GregorianCalendar(2009, 10, 30).getTime(), SetType.SUPPLEMENTAL);
|
|
this.blockName = "Duel Decks";
|
|
this.hasBasicLands = false;
|
|
}
|
|
} |