From 1fc78bdc95333442e578c8e347062bc381f8f4f4 Mon Sep 17 00:00:00 2001 From: Michael Simons Date: Tue, 28 Aug 2018 22:05:54 -0400 Subject: [PATCH] Starting expansion Guilds of Ravnica https://scryfall.com/sets/grn --- Mage.Sets/src/mage/sets/GuildsOfRavnica.java | 26 ++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/GuildsOfRavnica.java diff --git a/Mage.Sets/src/mage/sets/GuildsOfRavnica.java b/Mage.Sets/src/mage/sets/GuildsOfRavnica.java new file mode 100644 index 00000000000..a543d0a207f --- /dev/null +++ b/Mage.Sets/src/mage/sets/GuildsOfRavnica.java @@ -0,0 +1,26 @@ +package mage.sets; + +import mage.cards.ExpansionSet; +import mage.constants.Rarity; +import mage.constants.SetType; + +public final class GuildsOfRavnica extends ExpansionSet { + + private static final GuildsOfRavnica instance = new GuildsOfRavnica(); + + public static GuildsOfRavnica getInstance() { + return instance; + } + + private GuildsOfRavnica() { + super("Guilds of Ravnica", "GRN", ExpansionSet.buildDate(2018, 10, 5), SetType.EXPANSION); + this.blockName = "Guilds of Ravnica"; + this.hasBoosters = true; + //this.numBoosterLands = 1; + //this.numBoosterCommon = 10; + //this.numBoosterUncommon = 3; + //this.numBoosterRare = 1; + //this.ratioBoosterMythic = 8; + cards.add(new SetCardInfo("Impervious Greatwurm", 273, Rarity.MYTHIC, mage.cards.i.ImperviousGreatwurm.class)); + } +}