mirror of
https://github.com/correl/mage.git
synced 2024-11-16 03:00:12 +00:00
22 lines
489 B
Java
22 lines
489 B
Java
package mage.sets;
|
|
|
|
import mage.cards.ExpansionSet;
|
|
import mage.constants.SetType;
|
|
|
|
import java.util.GregorianCalendar;
|
|
|
|
/**
|
|
*
|
|
* @author magenoxx
|
|
*/
|
|
public class Unhinged extends ExpansionSet {
|
|
private static final Unhinged fINSTANCE = new Unhinged();
|
|
|
|
public static Unhinged getInstance() {
|
|
return fINSTANCE;
|
|
}
|
|
|
|
private Unhinged() {
|
|
super("Unhinged", "UNH", "mage.sets.unhinged", new GregorianCalendar(2004, 11, 20).getTime(), SetType.JOKESET);
|
|
}
|
|
}
|