/* * 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 fireshoes */ public class OathOfTheGatewatch extends ExpansionSet { private static final OathOfTheGatewatch fINSTANCE = new OathOfTheGatewatch(); public static OathOfTheGatewatch getInstance() { return fINSTANCE; } private OathOfTheGatewatch() { super("Oath of the Gatewatch", "OGW", "mage.sets.oathofthegatewatch", new GregorianCalendar(2016, 1, 22).getTime(), SetType.EXPANSION); this.blockName = "Battle for Zendikar"; this.hasBoosters = true; this.hasBasicLands = false; this.numBoosterLands = 1; this.numBoosterCommon = 10; this.numBoosterUncommon = 3; this.numBoosterRare = 1; this.ratioBoosterMythic = 8; } }