From 27f2dd6725c2e3f287edaee343b7f912abc77724 Mon Sep 17 00:00:00 2001 From: Thomas Hess Date: Sun, 15 Mar 2020 18:01:40 +0100 Subject: [PATCH] Added the Legacy Championship (OLGC) set. --- .../src/mage/sets/LegacyChampionship.java | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/LegacyChampionship.java diff --git a/Mage.Sets/src/mage/sets/LegacyChampionship.java b/Mage.Sets/src/mage/sets/LegacyChampionship.java new file mode 100644 index 0000000000..0cbd5bb6ba --- /dev/null +++ b/Mage.Sets/src/mage/sets/LegacyChampionship.java @@ -0,0 +1,38 @@ +package mage.sets; + +import mage.cards.ExpansionSet; +import mage.constants.Rarity; +import mage.constants.SetType; + +/** + * https://scryfall.com/sets/olgc + */ +public class LegacyChampionship extends ExpansionSet { + + private static final LegacyChampionship instance = new LegacyChampionship(); + + public static LegacyChampionship getInstance() { + return instance; + } + + private LegacyChampionship() { + super("Legacy Championship", "OLGC", ExpansionSet.buildDate(2019, 11, 3), SetType.PROMOTIONAL); + this.hasBoosters = false; + this.hasBasicLands = false; + + cards.add(new SetCardInfo("Badlands", "2016NA", Rarity.MYTHIC, mage.cards.b.Badlands.class)); + cards.add(new SetCardInfo("Bayou", "2019A", Rarity.MYTHIC, mage.cards.b.Bayou.class)); + cards.add(new SetCardInfo("Brainstorm", 2012, Rarity.RARE, mage.cards.b.Brainstorm.class)); + cards.add(new SetCardInfo("City of Traitors", "2019NA", Rarity.MYTHIC, mage.cards.c.CityOfTraitors.class)); + cards.add(new SetCardInfo("Force of Will", 2011, Rarity.RARE, mage.cards.f.ForceOfWill.class)); + cards.add(new SetCardInfo("Gaea's Cradle", 2014, Rarity.MYTHIC, mage.cards.g.GaeasCradle.class)); + cards.add(new SetCardInfo("Plateau", "2018A", Rarity.MYTHIC, mage.cards.p.Plateau.class)); + cards.add(new SetCardInfo("Savannah", "2017NA", Rarity.MYTHIC, mage.cards.s.Savannah.class)); + cards.add(new SetCardInfo("Scrubland", 2018, Rarity.MYTHIC, mage.cards.s.Scrubland.class)); + cards.add(new SetCardInfo("Taiga", "2017EU", Rarity.MYTHIC, mage.cards.t.Taiga.class)); + cards.add(new SetCardInfo("Tundra", 2015, Rarity.MYTHIC, mage.cards.t.Tundra.class)); + cards.add(new SetCardInfo("Underground Sea", "2016EU", Rarity.MYTHIC, mage.cards.u.UndergroundSea.class)); + cards.add(new SetCardInfo("Volcanic Island", "2018NA", Rarity.MYTHIC, mage.cards.v.VolcanicIsland.class)); + cards.add(new SetCardInfo("Wasteland", 2013, Rarity.UNCOMMON, mage.cards.w.Wasteland.class)); + } +}